You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@metamodel.apache.org by ka...@apache.org on 2019/03/25 02:29:54 UTC

[metamodel] branch master updated (ccafcf2 -> 8997ba5)

This is an automated email from the ASF dual-hosted git repository.

kaspersor pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/metamodel.git.


    from ccafcf2  METAMODEL-1172: Updated CHANGES.md
     new 5a36eba  METAMODEL-1210: Initial structure for ARFF module
     new 9cdccc8  METAMODEL-1210: Implemented ARFF data reading.
     new fa98e29  METAMODEL-1210: Added support for applying date format.
     new 8c3007d  Fixed license headers and improved class-level javadocs.
     new 80fc6a3  Fixed failing unit test due to invalid charset name
     new baedecd  Empty commit to trigger rebuild
     new f2eee0e  Empty commit to trigger rebuild
     new e674bcb  Merge branch 'master' into METAMODEL-1210-arff
     new 8997ba5  Updated CHANGES.md

The 9 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CHANGES.md                                         |    1 +
 {core => arff}/pom.xml                             |   23 +-
 .../org/apache/metamodel/arff/ArffDataContext.java |  221 +
 .../org/apache/metamodel/arff/ArffDataSet.java     |  130 +
 .../apache/metamodel/arff/ArffDataContextTest.java |  134 +
 .../test/resources/weka-data/ReutersCorn-test.arff |  611 +++
 .../resources/weka-data/ReutersCorn-train.arff     | 1561 +++++++
 .../resources/weka-data/ReutersGrain-test.arff     |  611 +++
 .../resources/weka-data/ReutersGrain-train.arff    | 1561 +++++++
 arff/src/test/resources/weka-data/airline.arff     |  152 +
 .../test/resources/weka-data/breast-cancer.arff    |  394 ++
 .../test/resources/weka-data/contact-lenses.arff   |   85 +
 arff/src/test/resources/weka-data/cpu.arff         |  226 +
 .../test/resources/weka-data/cpu.with.vendor.arff  |  225 +
 arff/src/test/resources/weka-data/credit-g.arff    | 1301 ++++++
 arff/src/test/resources/weka-data/diabetes.arff    |  863 ++++
 arff/src/test/resources/weka-data/glass.arff       |  332 ++
 arff/src/test/resources/weka-data/hypothyroid.arff | 3887 ++++++++++++++++
 arff/src/test/resources/weka-data/ionosphere.arff  |  458 ++
 arff/src/test/resources/weka-data/iris.2D.arff     |  157 +
 arff/src/test/resources/weka-data/iris.arff        |  225 +
 arff/src/test/resources/weka-data/labor.arff       |  164 +
 .../resources/weka-data/segment-challenge.arff     | 1607 +++++++
 .../src/test/resources/weka-data/segment-test.arff |  916 ++++
 arff/src/test/resources/weka-data/soybean.arff     |  818 ++++
 arff/src/test/resources/weka-data/supermarket.arff | 4846 ++++++++++++++++++++
 arff/src/test/resources/weka-data/unbalanced.arff  |  893 ++++
 arff/src/test/resources/weka-data/vote.arff        |  651 +++
 .../test/resources/weka-data/weather.nominal.arff  |   23 +
 .../test/resources/weka-data/weather.numeric.arff  |   23 +
 .../java/org/apache/metamodel/schema/Column.java   |    5 +-
 .../java/org/apache/metamodel/util/FileHelper.java |  165 +-
 .../org/apache/metamodel/util/UnicodeWriter.java   |  131 +-
 .../org/apache/metamodel/util/FileHelperTest.java  |    2 +-
 csv/pom.xml                                        |    1 -
 kafka/pom.xml                                      |   28 +-
 pom.xml                                            |    5 +
 37 files changed, 23309 insertions(+), 127 deletions(-)
 copy {core => arff}/pom.xml (71%)
 create mode 100644 arff/src/main/java/org/apache/metamodel/arff/ArffDataContext.java
 create mode 100644 arff/src/main/java/org/apache/metamodel/arff/ArffDataSet.java
 create mode 100644 arff/src/test/java/org/apache/metamodel/arff/ArffDataContextTest.java
 create mode 100644 arff/src/test/resources/weka-data/ReutersCorn-test.arff
 create mode 100644 arff/src/test/resources/weka-data/ReutersCorn-train.arff
 create mode 100644 arff/src/test/resources/weka-data/ReutersGrain-test.arff
 create mode 100644 arff/src/test/resources/weka-data/ReutersGrain-train.arff
 create mode 100644 arff/src/test/resources/weka-data/airline.arff
 create mode 100644 arff/src/test/resources/weka-data/breast-cancer.arff
 create mode 100644 arff/src/test/resources/weka-data/contact-lenses.arff
 create mode 100644 arff/src/test/resources/weka-data/cpu.arff
 create mode 100644 arff/src/test/resources/weka-data/cpu.with.vendor.arff
 create mode 100644 arff/src/test/resources/weka-data/credit-g.arff
 create mode 100644 arff/src/test/resources/weka-data/diabetes.arff
 create mode 100644 arff/src/test/resources/weka-data/glass.arff
 create mode 100644 arff/src/test/resources/weka-data/hypothyroid.arff
 create mode 100644 arff/src/test/resources/weka-data/ionosphere.arff
 create mode 100644 arff/src/test/resources/weka-data/iris.2D.arff
 create mode 100644 arff/src/test/resources/weka-data/iris.arff
 create mode 100644 arff/src/test/resources/weka-data/labor.arff
 create mode 100644 arff/src/test/resources/weka-data/segment-challenge.arff
 create mode 100644 arff/src/test/resources/weka-data/segment-test.arff
 create mode 100644 arff/src/test/resources/weka-data/soybean.arff
 create mode 100644 arff/src/test/resources/weka-data/supermarket.arff
 create mode 100644 arff/src/test/resources/weka-data/unbalanced.arff
 create mode 100644 arff/src/test/resources/weka-data/vote.arff
 create mode 100644 arff/src/test/resources/weka-data/weather.nominal.arff
 create mode 100644 arff/src/test/resources/weka-data/weather.numeric.arff


[metamodel] 09/09: Updated CHANGES.md

Posted by ka...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

kaspersor pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/metamodel.git

commit 8997ba53d1fed9c851409cec80fbd63d851c6899
Author: Kasper Sørensen <i....@gmail.com>
AuthorDate: Sun Mar 24 19:29:29 2019 -0700

    Updated CHANGES.md
---
 CHANGES.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/CHANGES.md b/CHANGES.md
index a7b8779..e9102a1 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1,5 +1,6 @@
 ### Apache MetaModel [WIP]
 
+ * [METAMODEL-1210] - Added a new connector for .arff files.
  * [METAMODEL-1207] - Fix JDBC Database version parser edge cases.
  * [METAMODEL-1172] - Made MAP_VALUE function capable of also navigating lists using square bracket notations.
 


[metamodel] 03/09: METAMODEL-1210: Added support for applying date format.

Posted by ka...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

kaspersor pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/metamodel.git

commit fa98e2958709a85b53280e5cb592c820d0a779e8
Author: Kasper Sørensen <i....@gmail.com>
AuthorDate: Wed Mar 13 03:10:55 2019 -0700

    METAMODEL-1210: Added support for applying date format.
---
 .../org/apache/metamodel/arff/ArffDataContext.java |  6 +-
 .../org/apache/metamodel/arff/ArffDataSet.java     | 72 +++++++++++++---------
 2 files changed, 46 insertions(+), 32 deletions(-)

diff --git a/arff/src/main/java/org/apache/metamodel/arff/ArffDataContext.java b/arff/src/main/java/org/apache/metamodel/arff/ArffDataContext.java
index 6d4f5ed..0b4ca5d 100644
--- a/arff/src/main/java/org/apache/metamodel/arff/ArffDataContext.java
+++ b/arff/src/main/java/org/apache/metamodel/arff/ArffDataContext.java
@@ -55,7 +55,7 @@ public class ArffDataContext extends QueryPostprocessDataContext {
     private static final String SECTION_ANNOTATION_DATA = "@data";
     private static final Charset CHARSET = FileHelper.UTF_8_CHARSET;
     private static final Pattern ATTRIBUTE_DEF_W_DATATYPE_PARAM =
-            Pattern.compile("\\'?(.+)\\'?\\s+([a-zA-Z]+)\\s+\\'?(.+)\\'?");
+            Pattern.compile("\\'?(.+)\\'?\\s+([a-zA-Z]+)\\s+\\'(.+)\\'");
 
     private final Splitter whitespaceSplitter = Splitter.on(CharMatcher.whitespace()).trimResults().omitEmptyStrings();
 
@@ -188,7 +188,7 @@ public class ArffDataContext extends QueryPostprocessDataContext {
                 if (isIgnoreLine(line)) {
                     continue;
                 }
-                if (line.equals(SECTION_ANNOTATION_DATA)) {
+                if (line.toLowerCase().equals(SECTION_ANNOTATION_DATA)) {
                     // start of the data
                     break;
                 }
@@ -196,7 +196,7 @@ public class ArffDataContext extends QueryPostprocessDataContext {
         } catch (IOException e) {
             throw new UncheckedIOException(e);
         }
-        final ArffDataSet dataSet = new ArffDataSet(columns, reader);
+        final ArffDataSet dataSet = new ArffDataSet(resource, columns, reader);
         if (maxRows > -1) {
             return new MaxRowsDataSet(dataSet, maxRows);
         } else {
diff --git a/arff/src/main/java/org/apache/metamodel/arff/ArffDataSet.java b/arff/src/main/java/org/apache/metamodel/arff/ArffDataSet.java
index abf1e5d..2d1df07 100644
--- a/arff/src/main/java/org/apache/metamodel/arff/ArffDataSet.java
+++ b/arff/src/main/java/org/apache/metamodel/arff/ArffDataSet.java
@@ -15,6 +15,7 @@ import org.apache.metamodel.query.SelectItem;
 import org.apache.metamodel.schema.Column;
 import org.apache.metamodel.schema.ColumnType;
 import org.apache.metamodel.util.NumberComparator;
+import org.apache.metamodel.util.Resource;
 
 import com.opencsv.CSVParser;
 import com.opencsv.ICSVParser;
@@ -22,16 +23,16 @@ import com.opencsv.ICSVParser;
 public class ArffDataSet extends AbstractDataSet {
 
     private final ICSVParser csvParser = new CSVParser(',', '\'');
+    private final Resource resource;
     private final BufferedReader reader;
-    private final int[] valueIndices;
-    private final ColumnType[] valueTypes;
+    private final List<Column> columns;
 
     private String line;
 
-    public ArffDataSet(List<Column> columns, BufferedReader reader) {
+    public ArffDataSet(Resource resource, List<Column> columns, BufferedReader reader) {
         super(columns.stream().map(c -> new SelectItem(c)).collect(Collectors.toList()));
-        this.valueIndices = columns.stream().mapToInt(Column::getColumnNumber).toArray();
-        this.valueTypes = columns.stream().map(Column::getType).toArray(ColumnType[]::new);
+        this.resource = resource;
+        this.columns = columns;
         this.reader = reader;
     }
 
@@ -57,38 +58,51 @@ public class ArffDataSet extends AbstractDataSet {
         try {
             stringValues = csvParser.parseLine(line);
         } catch (IOException e) {
-            throw new UncheckedIOException(e);
+            throw new UncheckedIOException(resource.getName() + ": Failed to CSV-parse data line: " + line, e);
         }
 
-        final Object[] values = new Object[valueIndices.length];
-        for (int i = 0; i < valueIndices.length; i++) {
-            final int index = valueIndices[i];
+        final Object[] values = new Object[columns.size()];
+        for (int i = 0; i < values.length; i++) {
+            final Column column = columns.get(i);
+            final int index = column.getColumnNumber();
             final String stringValue = stringValues[index];
-            final ColumnType type = valueTypes[i];
-            if (type.isNumber()) {
-                if (stringValue.isEmpty() || "?".equals(stringValue)) {
-                    values[i] = null;
+            values[i] = convertValue(stringValue, column);
+        }
+        return new DefaultRow(getHeader(), values);
+    }
+
+    private Object convertValue(String stringValue, Column column) {
+        final ColumnType type = column.getType();
+        if (type.isNumber()) {
+            if (stringValue.isEmpty() || "?".equals(stringValue)) {
+                return null;
+            } else {
+                final Number n = NumberComparator.toNumber(stringValue);
+                if (type == ColumnType.INTEGER) {
+                    return n.intValue();
                 } else {
-                    final Number n = NumberComparator.toNumber(stringValue);
-                    if (type == ColumnType.INTEGER) {
-                        values[i] = n.intValue();
-                    } else {
-                        values[i] = n;
-                    }
-                }
-            } else if (type.isTimeBased()) {
-                // TODO: extract format from column remarks
-                try {
-                    values[i] = new SimpleDateFormat("yyyy-MM-dd").parse(stringValue);
-                } catch (ParseException e) {
-                    throw new IllegalStateException(e);
+                    return n;
                 }
+            }
+        } else if (type.isTimeBased()) {
+            final String columnRemarks = column.getRemarks();
+            final SimpleDateFormat dateFormat;
+            if (columnRemarks.toLowerCase().startsWith("date ")) {
+                // date format follows "date "
+                dateFormat = new SimpleDateFormat(columnRemarks.substring(5));
             } else {
-                values[i] = stringValue;
+                // assume standard date format
+                dateFormat = new SimpleDateFormat("yyyy-MM-dd");
+            }
+            try {
+                return dateFormat.parse(stringValue);
+            } catch (ParseException e) {
+                throw new IllegalStateException(resource.getName() + ": Failed to parse '" + stringValue
+                        + "' using format '" + dateFormat.toPattern() + "'", e);
             }
+        } else {
+            return stringValue;
         }
-
-        return new DefaultRow(getHeader(), values);
     }
 
     @Override


[metamodel] 02/09: METAMODEL-1210: Implemented ARFF data reading.

Posted by ka...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

kaspersor pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/metamodel.git

commit 9cdccc82b9e544c04b4cee796dd59a23d0282b89
Author: Kasper Sørensen <i....@gmail.com>
AuthorDate: Tue Mar 12 23:57:54 2019 -0700

    METAMODEL-1210: Implemented ARFF data reading.
---
 arff/pom.xml                                       |  4 +
 .../org/apache/metamodel/arff/ArffDataContext.java | 67 +++++++++++----
 .../org/apache/metamodel/arff/ArffDataSet.java     | 98 ++++++++++++++++++++++
 .../apache/metamodel/arff/ArffDataContextTest.java | 40 ++++++++-
 .../java/org/apache/metamodel/schema/Column.java   |  5 +-
 csv/pom.xml                                        |  1 -
 pom.xml                                            |  5 ++
 7 files changed, 201 insertions(+), 19 deletions(-)

diff --git a/arff/pom.xml b/arff/pom.xml
index 19f3f5f..102d8ef 100644
--- a/arff/pom.xml
+++ b/arff/pom.xml
@@ -39,6 +39,10 @@ under the License.
 			<groupId>com.google.guava</groupId>
 			<artifactId>guava</artifactId>
 		</dependency>
+		<dependency>
+			<groupId>com.opencsv</groupId>
+			<artifactId>opencsv</artifactId>
+		</dependency>
 
 		<!-- Test dependencies -->
 		<dependency>
diff --git a/arff/src/main/java/org/apache/metamodel/arff/ArffDataContext.java b/arff/src/main/java/org/apache/metamodel/arff/ArffDataContext.java
index 5926f36..6d4f5ed 100644
--- a/arff/src/main/java/org/apache/metamodel/arff/ArffDataContext.java
+++ b/arff/src/main/java/org/apache/metamodel/arff/ArffDataContext.java
@@ -29,6 +29,7 @@ import java.util.regex.Pattern;
 import org.apache.metamodel.MetaModelException;
 import org.apache.metamodel.QueryPostprocessDataContext;
 import org.apache.metamodel.data.DataSet;
+import org.apache.metamodel.data.MaxRowsDataSet;
 import org.apache.metamodel.schema.Column;
 import org.apache.metamodel.schema.ColumnType;
 import org.apache.metamodel.schema.MutableColumn;
@@ -49,9 +50,12 @@ public class ArffDataContext extends QueryPostprocessDataContext {
 
     private static final Logger logger = LoggerFactory.getLogger(ArffDataContext.class);
 
+    private static final String SECTION_ANNOTATION_RELATION = "@relation";
+    private static final String SECTION_ANNOTATION_ATTRIBUTE = "@attribute";
+    private static final String SECTION_ANNOTATION_DATA = "@data";
     private static final Charset CHARSET = FileHelper.UTF_8_CHARSET;
     private static final Pattern ATTRIBUTE_DEF_W_DATATYPE_PARAM =
-            Pattern.compile("\\'?(.+)\\'? ([a-zA-Z]+) \\'?(.+)\\'?");
+            Pattern.compile("\\'?(.+)\\'?\\s+([a-zA-Z]+)\\s+\\'?(.+)\\'?");
 
     private final Splitter whitespaceSplitter = Splitter.on(CharMatcher.whitespace()).trimResults().omitEmptyStrings();
 
@@ -70,36 +74,36 @@ public class ArffDataContext extends QueryPostprocessDataContext {
         try (BufferedReader reader = createReader()) {
             boolean inHeader = true;
             for (String line = reader.readLine(); inHeader && line != null; line = reader.readLine()) {
-                if (line.startsWith("%")) {
-                    continue; // comment
+                if (isIgnoreLine(line)) {
+                    continue;
                 }
                 final List<String> split = whitespaceSplitter.limit(2).splitToList(line);
-                if (split.isEmpty()) {
-                    continue; // empty line
-                }
                 switch (split.get(0).toLowerCase()) {
-                case "@relation":
+                case SECTION_ANNOTATION_RELATION:
                     // table name
                     final String tableName = trimString(split.get(1));
                     table.setName(tableName);
                     break;
-                case "@attribute":
+                case SECTION_ANNOTATION_ATTRIBUTE:
                     // column(s)
                     final String attributeDef = split.get(1).trim();
 
                     final String attributeName;
                     final String attributeType;
+                    final String attributeParam;
                     final ColumnType columnType;
 
                     final int indexOfCurly = attributeDef.indexOf('{');
                     if (indexOfCurly != -1) {
-                        attributeName = trimString(attributeDef.substring(0, indexOfCurly));
+                        attributeName = trimString(attributeDef.substring(0, indexOfCurly).trim());
                         attributeType = attributeDef.substring(indexOfCurly);
+                        attributeParam = null;
                     } else {
                         final Matcher matcher = ATTRIBUTE_DEF_W_DATATYPE_PARAM.matcher(attributeDef);
                         if (matcher.find()) {
                             attributeName = matcher.group(1);
-                            attributeType = matcher.group(2) + ' ' + matcher.group(3);
+                            attributeType = matcher.group(2);
+                            attributeParam = matcher.group(3);
                         } else {
                             // simple attribute definition "[name] [type]"
                             final List<String> attributeDefSplit = whitespaceSplitter.splitToList(attributeDef);
@@ -109,6 +113,7 @@ public class ArffDataContext extends QueryPostprocessDataContext {
                             }
                             attributeName = trimString(attributeDefSplit.get(0));
                             attributeType = attributeDefSplit.get(1);
+                            attributeParam = null;
                         }
                     }
                     switch (attributeType.toLowerCase()) {
@@ -128,6 +133,9 @@ public class ArffDataContext extends QueryPostprocessDataContext {
                     case "string":
                         columnType = ColumnType.STRING;
                         break;
+                    case "date":
+                        columnType = ColumnType.DATE;
+                        break;
                     default:
                         if (indexOfCurly == -1) {
                             logger.info(
@@ -139,10 +147,11 @@ public class ArffDataContext extends QueryPostprocessDataContext {
                     }
 
                     final MutableColumn column = new MutableColumn(attributeName, columnType, table);
-                    column.setRemarks(attributeType);
+                    column.setRemarks(attributeParam == null ? attributeType : attributeType + " " + attributeParam);
+                    column.setColumnNumber(table.getColumnCount());
                     table.addColumn(column);
                     break;
-                case "@data":
+                case SECTION_ANNOTATION_DATA:
                     // the header part of the file is done, no more schema to build up
                     inHeader = false;
                     break;
@@ -155,7 +164,6 @@ public class ArffDataContext extends QueryPostprocessDataContext {
     }
 
     private String trimString(String string) {
-        string = string.trim();
         if (string.startsWith("'") && string.endsWith("'")) {
             string = string.substring(1, string.length() - 1);
         }
@@ -173,8 +181,37 @@ public class ArffDataContext extends QueryPostprocessDataContext {
 
     @Override
     protected DataSet materializeMainSchemaTable(Table table, List<Column> columns, int maxRows) {
-        // TODO Auto-generated method stub
-        return null;
+        BufferedReader reader = createReader();
+        try {
+            for (String line = reader.readLine(); line != null; line = reader.readLine()) {
+                line = line.trim();
+                if (isIgnoreLine(line)) {
+                    continue;
+                }
+                if (line.equals(SECTION_ANNOTATION_DATA)) {
+                    // start of the data
+                    break;
+                }
+            }
+        } catch (IOException e) {
+            throw new UncheckedIOException(e);
+        }
+        final ArffDataSet dataSet = new ArffDataSet(columns, reader);
+        if (maxRows > -1) {
+            return new MaxRowsDataSet(dataSet, maxRows);
+        } else {
+            return dataSet;
+        }
+    }
+
+    protected static boolean isIgnoreLine(String line) {
+        if (line.trim().isEmpty()) {
+            return true;
+        }
+        if (line.startsWith("%")) {
+            return true; // comment
+        }
+        return false;
     }
 
 }
diff --git a/arff/src/main/java/org/apache/metamodel/arff/ArffDataSet.java b/arff/src/main/java/org/apache/metamodel/arff/ArffDataSet.java
new file mode 100644
index 0000000..abf1e5d
--- /dev/null
+++ b/arff/src/main/java/org/apache/metamodel/arff/ArffDataSet.java
@@ -0,0 +1,98 @@
+package org.apache.metamodel.arff;
+
+import java.io.BufferedReader;
+import java.io.IOException;
+import java.io.UncheckedIOException;
+import java.text.ParseException;
+import java.text.SimpleDateFormat;
+import java.util.List;
+import java.util.stream.Collectors;
+
+import org.apache.metamodel.data.AbstractDataSet;
+import org.apache.metamodel.data.DefaultRow;
+import org.apache.metamodel.data.Row;
+import org.apache.metamodel.query.SelectItem;
+import org.apache.metamodel.schema.Column;
+import org.apache.metamodel.schema.ColumnType;
+import org.apache.metamodel.util.NumberComparator;
+
+import com.opencsv.CSVParser;
+import com.opencsv.ICSVParser;
+
+public class ArffDataSet extends AbstractDataSet {
+
+    private final ICSVParser csvParser = new CSVParser(',', '\'');
+    private final BufferedReader reader;
+    private final int[] valueIndices;
+    private final ColumnType[] valueTypes;
+
+    private String line;
+
+    public ArffDataSet(List<Column> columns, BufferedReader reader) {
+        super(columns.stream().map(c -> new SelectItem(c)).collect(Collectors.toList()));
+        this.valueIndices = columns.stream().mapToInt(Column::getColumnNumber).toArray();
+        this.valueTypes = columns.stream().map(Column::getType).toArray(ColumnType[]::new);
+        this.reader = reader;
+    }
+
+    @Override
+    public boolean next() {
+        try {
+            line = reader.readLine();
+            while (line != null && ArffDataContext.isIgnoreLine(line)) {
+                line = reader.readLine();
+            }
+        } catch (IOException e) {
+            throw new UncheckedIOException(e);
+        }
+        return line != null;
+    }
+
+    @Override
+    public Row getRow() {
+        if (line == null) {
+            return null;
+        }
+        final String[] stringValues;
+        try {
+            stringValues = csvParser.parseLine(line);
+        } catch (IOException e) {
+            throw new UncheckedIOException(e);
+        }
+
+        final Object[] values = new Object[valueIndices.length];
+        for (int i = 0; i < valueIndices.length; i++) {
+            final int index = valueIndices[i];
+            final String stringValue = stringValues[index];
+            final ColumnType type = valueTypes[i];
+            if (type.isNumber()) {
+                if (stringValue.isEmpty() || "?".equals(stringValue)) {
+                    values[i] = null;
+                } else {
+                    final Number n = NumberComparator.toNumber(stringValue);
+                    if (type == ColumnType.INTEGER) {
+                        values[i] = n.intValue();
+                    } else {
+                        values[i] = n;
+                    }
+                }
+            } else if (type.isTimeBased()) {
+                // TODO: extract format from column remarks
+                try {
+                    values[i] = new SimpleDateFormat("yyyy-MM-dd").parse(stringValue);
+                } catch (ParseException e) {
+                    throw new IllegalStateException(e);
+                }
+            } else {
+                values[i] = stringValue;
+            }
+        }
+
+        return new DefaultRow(getHeader(), values);
+    }
+
+    @Override
+    public void close() {
+        super.close();
+    }
+}
diff --git a/arff/src/test/java/org/apache/metamodel/arff/ArffDataContextTest.java b/arff/src/test/java/org/apache/metamodel/arff/ArffDataContextTest.java
index d874526..5cd8b92 100644
--- a/arff/src/test/java/org/apache/metamodel/arff/ArffDataContextTest.java
+++ b/arff/src/test/java/org/apache/metamodel/arff/ArffDataContextTest.java
@@ -28,7 +28,9 @@ import java.io.FilenameFilter;
 import java.util.HashSet;
 import java.util.List;
 import java.util.Set;
+import java.util.concurrent.atomic.AtomicInteger;
 
+import org.apache.metamodel.data.DataSet;
 import org.apache.metamodel.schema.Column;
 import org.apache.metamodel.schema.ColumnType;
 import org.apache.metamodel.schema.ColumnTypeImpl;
@@ -54,6 +56,7 @@ public class ArffDataContextTest {
 
         assertTrue(files.length > 1);
 
+        final AtomicInteger rowCounter = new AtomicInteger();
         final Set<ColumnType> observedColumnTypes = new HashSet<>();
 
         for (File file : files) {
@@ -67,16 +70,24 @@ public class ArffDataContextTest {
             for (Column column : columns) {
                 observedColumnTypes.add(column.getType());
             }
+
+            try (DataSet dataSet = dc.query().from(tables.get(0)).selectAll().execute()) {
+                while (dataSet.next()) {
+                    assertNotNull(dataSet.getRow());
+                    rowCounter.incrementAndGet();
+                }
+            }
         }
 
         assertTrue(observedColumnTypes.size() > 1);
         assertTrue(observedColumnTypes.contains(ColumnTypeImpl.STRING));
         assertTrue(observedColumnTypes.contains(ColumnTypeImpl.NUMBER));
+        assertTrue(rowCounter.get() > 10_000);
     }
 
     // test case that checks our ability to parse column types and names from a specific file.
     @Test
-    public void testReadTableOfHypothyroid() {
+    public void testReadStructureOfHypothyroid() {
         final File file = new File(wekaDataDir, "hypothyroid.arff");
         final ArffDataContext dc = new ArffDataContext(new FileResource(file));
         final Schema schema = dc.getDefaultSchema();
@@ -92,5 +103,32 @@ public class ArffDataContextTest {
         assertNotNull(sexColumn);
         assertEquals(ColumnType.STRING, sexColumn.getType());
         assertEquals("{ F, M}", sexColumn.getRemarks());
+
+        final Column tshColumn = table.getColumnByName("TSH measured");
+        assertNotNull(tshColumn);
+        assertEquals(ColumnType.STRING, tshColumn.getType());
+        assertEquals("{ t, f}", tshColumn.getRemarks());
+    }
+
+    @Test
+    public void testReadDataOfHypothyroid() {
+        final File file = new File(wekaDataDir, "hypothyroid.arff");
+        final ArffDataContext dc = new ArffDataContext(new FileResource(file));
+
+        final DataSet dataSet =
+                dc.query().from("hypothyroid").select("Class", "age", "sex", "TSH measured").limit(3).execute();
+        try {
+            assertTrue(dataSet.next());
+            assertEquals("Row[values=[negative, 41, F, t]]", dataSet.getRow().toString());
+            assertTrue(dataSet.next());
+            assertEquals("Row[values=[negative, 23, F, t]]", dataSet.getRow().toString());
+            assertTrue(dataSet.next());
+            assertEquals("Row[values=[negative, 46, M, t]]", dataSet.getRow().toString());
+            final Object ageValue = dataSet.getRow().getValue(1);
+            assertEquals(Integer.class, ageValue.getClass());
+            assertFalse(dataSet.next());
+        } finally {
+            dataSet.close();
+        }
     }
 }
diff --git a/core/src/main/java/org/apache/metamodel/schema/Column.java b/core/src/main/java/org/apache/metamodel/schema/Column.java
index 6874990..d27e791 100644
--- a/core/src/main/java/org/apache/metamodel/schema/Column.java
+++ b/core/src/main/java/org/apache/metamodel/schema/Column.java
@@ -40,8 +40,9 @@ public interface Column extends Comparable<Column>, Serializable, NamedStructure
     public String getName();
 
     /**
-     * Returns the column number or index. Note: This column number is 0-based
-     * whereas the JDBC is 1-based.
+     * Returns the column number or index.
+     * 
+     * Note: This column number is 0-based whereas JDBC's column numbers are 1-based.
      * 
      * @return the number of this column.
      */
diff --git a/csv/pom.xml b/csv/pom.xml
index 543c655..09c494a 100644
--- a/csv/pom.xml
+++ b/csv/pom.xml
@@ -40,7 +40,6 @@ under the License.
 		<dependency>
 			<groupId>com.opencsv</groupId>
 			<artifactId>opencsv</artifactId>
-			<version>3.9</version>
 		</dependency>
 		<dependency>
 			<groupId>junit</groupId>
diff --git a/pom.xml b/pom.xml
index 4215be1..6c810a6 100644
--- a/pom.xml
+++ b/pom.xml
@@ -480,6 +480,11 @@ under the License.
 				<version>${guava.version}</version>
 			</dependency>
 			<dependency>
+				<groupId>com.opencsv</groupId>
+				<artifactId>opencsv</artifactId>
+				<version>3.9</version>
+			</dependency>
+			<dependency>
 				<groupId>org.apache.httpcomponents</groupId>
 				<artifactId>httpclient</artifactId>
 				<version>${httpcomponents.version}</version>


[metamodel] 08/09: Merge branch 'master' into METAMODEL-1210-arff

Posted by ka...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

kaspersor pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/metamodel.git

commit e674bcb42e8917d498b53de72244b13cfa69c709
Merge: f2eee0e ccafcf2
Author: Kasper Sørensen <i....@gmail.com>
AuthorDate: Sun Mar 24 19:28:16 2019 -0700

    Merge branch 'master' into METAMODEL-1210-arff

 CHANGES.md                                         |  1 +
 .../apache/metamodel/query/MapValueFunction.java   |  8 +--
 .../org/apache/metamodel/util/CollectionUtils.java | 81 ++++++++++++++--------
 .../metamodel/query/MapValueFunctionTest.java      | 28 ++++++++
 .../apache/metamodel/util/CollectionUtilsTest.java | 80 +++++++++++++++++++++
 5 files changed, 163 insertions(+), 35 deletions(-)


[metamodel] 06/09: Empty commit to trigger rebuild

Posted by ka...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

kaspersor pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/metamodel.git

commit baedecd176511c8408cdc28cb2efc3c9fbff7a1a
Author: Kasper Sørensen <i....@gmail.com>
AuthorDate: Thu Mar 14 05:31:32 2019 +0100

    Empty commit to trigger rebuild


[metamodel] 07/09: Empty commit to trigger rebuild

Posted by ka...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

kaspersor pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/metamodel.git

commit f2eee0ed822e362a98bdaf5d82b222bed2dd84a6
Author: Kasper Sørensen <i....@gmail.com>
AuthorDate: Thu Mar 14 06:04:27 2019 +0100

    Empty commit to trigger rebuild


[metamodel] 04/09: Fixed license headers and improved class-level javadocs.

Posted by ka...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

kaspersor pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/metamodel.git

commit 8c3007d658a0043873076ced268acd319f84efb2
Author: Kasper Sørensen <i....@gmail.com>
AuthorDate: Wed Mar 13 12:18:38 2019 -0700

    Fixed license headers and improved class-level javadocs.
---
 .../org/apache/metamodel/arff/ArffDataContext.java   |  4 ++++
 .../java/org/apache/metamodel/arff/ArffDataSet.java  | 20 +++++++++++++++++++-
 2 files changed, 23 insertions(+), 1 deletion(-)

diff --git a/arff/src/main/java/org/apache/metamodel/arff/ArffDataContext.java b/arff/src/main/java/org/apache/metamodel/arff/ArffDataContext.java
index 0b4ca5d..2b35abb 100644
--- a/arff/src/main/java/org/apache/metamodel/arff/ArffDataContext.java
+++ b/arff/src/main/java/org/apache/metamodel/arff/ArffDataContext.java
@@ -46,6 +46,10 @@ import org.slf4j.LoggerFactory;
 import com.google.common.base.CharMatcher;
 import com.google.common.base.Splitter;
 
+/**
+ * DataContext implementation for ARFF (.arff) files, which can be loosely described a specialized type of CSV files
+ * with schema information, comments and data types in the header section of the file.
+ */
 public class ArffDataContext extends QueryPostprocessDataContext {
 
     private static final Logger logger = LoggerFactory.getLogger(ArffDataContext.class);
diff --git a/arff/src/main/java/org/apache/metamodel/arff/ArffDataSet.java b/arff/src/main/java/org/apache/metamodel/arff/ArffDataSet.java
index 2d1df07..902e52c 100644
--- a/arff/src/main/java/org/apache/metamodel/arff/ArffDataSet.java
+++ b/arff/src/main/java/org/apache/metamodel/arff/ArffDataSet.java
@@ -1,3 +1,21 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you 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
+ *
+ *   http://www.apache.org/licenses/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.apache.metamodel.arff;
 
 import java.io.BufferedReader;
@@ -20,7 +38,7 @@ import org.apache.metamodel.util.Resource;
 import com.opencsv.CSVParser;
 import com.opencsv.ICSVParser;
 
-public class ArffDataSet extends AbstractDataSet {
+final class ArffDataSet extends AbstractDataSet {
 
     private final ICSVParser csvParser = new CSVParser(',', '\'');
     private final Resource resource;


[metamodel] 05/09: Fixed failing unit test due to invalid charset name

Posted by ka...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

kaspersor pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/metamodel.git

commit 80fc6a31fd4a50d7308ea02a600cc278b5c06b49
Author: Kasper Sørensen <i....@gmail.com>
AuthorDate: Thu Mar 14 04:49:07 2019 +0100

    Fixed failing unit test due to invalid charset name
---
 core/src/test/java/org/apache/metamodel/util/FileHelperTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/core/src/test/java/org/apache/metamodel/util/FileHelperTest.java b/core/src/test/java/org/apache/metamodel/util/FileHelperTest.java
index 30f2e60..82c6200 100644
--- a/core/src/test/java/org/apache/metamodel/util/FileHelperTest.java
+++ b/core/src/test/java/org/apache/metamodel/util/FileHelperTest.java
@@ -69,7 +69,7 @@ public class FileHelperTest extends TestCase {
 
     public void testCannotAppendAndInsertBom() throws Exception {
         try {
-            FileHelper.getWriter(new File("foo"), "foo", true, true);
+            FileHelper.getWriter(new File("foo"), "UTF-8", true, true);
             fail("Exception expected");
         } catch (IllegalArgumentException e) {
             assertEquals("Can not insert BOM into appending writer", e.getMessage());


[metamodel] 01/09: METAMODEL-1210: Initial structure for ARFF module

Posted by ka...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

kaspersor pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/metamodel.git

commit 5a36ebaba65752bdede1a0121904f06de48e2fa1
Author: Kasper Sørensen <i....@gmail.com>
AuthorDate: Tue Mar 12 13:48:10 2019 -0700

    METAMODEL-1210: Initial structure for ARFF module
    
    Parsing ARFF schema, but not yet the data.
---
 arff/pom.xml                                       |   60 +
 .../org/apache/metamodel/arff/ArffDataContext.java |  180 +
 .../apache/metamodel/arff/ArffDataContextTest.java |   96 +
 .../test/resources/weka-data/ReutersCorn-test.arff |  611 +++
 .../resources/weka-data/ReutersCorn-train.arff     | 1561 +++++++
 .../resources/weka-data/ReutersGrain-test.arff     |  611 +++
 .../resources/weka-data/ReutersGrain-train.arff    | 1561 +++++++
 arff/src/test/resources/weka-data/airline.arff     |  152 +
 .../test/resources/weka-data/breast-cancer.arff    |  394 ++
 .../test/resources/weka-data/contact-lenses.arff   |   85 +
 arff/src/test/resources/weka-data/cpu.arff         |  226 +
 .../test/resources/weka-data/cpu.with.vendor.arff  |  225 +
 arff/src/test/resources/weka-data/credit-g.arff    | 1301 ++++++
 arff/src/test/resources/weka-data/diabetes.arff    |  863 ++++
 arff/src/test/resources/weka-data/glass.arff       |  332 ++
 arff/src/test/resources/weka-data/hypothyroid.arff | 3887 ++++++++++++++++
 arff/src/test/resources/weka-data/ionosphere.arff  |  458 ++
 arff/src/test/resources/weka-data/iris.2D.arff     |  157 +
 arff/src/test/resources/weka-data/iris.arff        |  225 +
 arff/src/test/resources/weka-data/labor.arff       |  164 +
 .../resources/weka-data/segment-challenge.arff     | 1607 +++++++
 .../src/test/resources/weka-data/segment-test.arff |  916 ++++
 arff/src/test/resources/weka-data/soybean.arff     |  818 ++++
 arff/src/test/resources/weka-data/supermarket.arff | 4846 ++++++++++++++++++++
 arff/src/test/resources/weka-data/unbalanced.arff  |  893 ++++
 arff/src/test/resources/weka-data/vote.arff        |  651 +++
 .../test/resources/weka-data/weather.nominal.arff  |   23 +
 .../test/resources/weka-data/weather.numeric.arff  |   23 +
 .../java/org/apache/metamodel/util/FileHelper.java |  165 +-
 .../org/apache/metamodel/util/UnicodeWriter.java   |  131 +-
 kafka/pom.xml                                      |   28 +-
 31 files changed, 23134 insertions(+), 116 deletions(-)

diff --git a/arff/pom.xml b/arff/pom.xml
new file mode 100644
index 0000000..19f3f5f
--- /dev/null
+++ b/arff/pom.xml
@@ -0,0 +1,60 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you 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
+
+  http://www.apache.org/licenses/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.
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+	<parent>
+		<artifactId>MetaModel</artifactId>
+		<groupId>org.apache.metamodel</groupId>
+		<version>5.2.2-SNAPSHOT</version>
+	</parent>
+	<modelVersion>4.0.0</modelVersion>
+	<artifactId>MetaModel-arff</artifactId>
+	<name>MetaModel module for ARFF files</name>
+
+	<dependencies>
+		<dependency>
+			<groupId>org.apache.metamodel</groupId>
+			<artifactId>MetaModel-core</artifactId>
+			<version>${project.version}</version>
+		</dependency>
+		<dependency>
+			<groupId>com.google.guava</groupId>
+			<artifactId>guava</artifactId>
+		</dependency>
+
+		<!-- Test dependencies -->
+		<dependency>
+			<groupId>org.slf4j</groupId>
+			<artifactId>slf4j-simple</artifactId>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.easymock</groupId>
+			<artifactId>easymock</artifactId>
+			<scope>test</scope>
+		</dependency>
+	</dependencies>
+</project>
diff --git a/arff/src/main/java/org/apache/metamodel/arff/ArffDataContext.java b/arff/src/main/java/org/apache/metamodel/arff/ArffDataContext.java
new file mode 100644
index 0000000..5926f36
--- /dev/null
+++ b/arff/src/main/java/org/apache/metamodel/arff/ArffDataContext.java
@@ -0,0 +1,180 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you 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
+ *
+ *   http://www.apache.org/licenses/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.apache.metamodel.arff;
+
+import java.io.BufferedReader;
+import java.io.IOException;
+import java.io.UncheckedIOException;
+import java.nio.charset.Charset;
+import java.util.List;
+import java.util.regex.Matcher;
+import java.util.regex.Pattern;
+
+import org.apache.metamodel.MetaModelException;
+import org.apache.metamodel.QueryPostprocessDataContext;
+import org.apache.metamodel.data.DataSet;
+import org.apache.metamodel.schema.Column;
+import org.apache.metamodel.schema.ColumnType;
+import org.apache.metamodel.schema.MutableColumn;
+import org.apache.metamodel.schema.MutableSchema;
+import org.apache.metamodel.schema.MutableTable;
+import org.apache.metamodel.schema.Schema;
+import org.apache.metamodel.schema.Table;
+import org.apache.metamodel.schema.TableType;
+import org.apache.metamodel.util.FileHelper;
+import org.apache.metamodel.util.Resource;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import com.google.common.base.CharMatcher;
+import com.google.common.base.Splitter;
+
+public class ArffDataContext extends QueryPostprocessDataContext {
+
+    private static final Logger logger = LoggerFactory.getLogger(ArffDataContext.class);
+
+    private static final Charset CHARSET = FileHelper.UTF_8_CHARSET;
+    private static final Pattern ATTRIBUTE_DEF_W_DATATYPE_PARAM =
+            Pattern.compile("\\'?(.+)\\'? ([a-zA-Z]+) \\'?(.+)\\'?");
+
+    private final Splitter whitespaceSplitter = Splitter.on(CharMatcher.whitespace()).trimResults().omitEmptyStrings();
+
+    private final Resource resource;
+
+    public ArffDataContext(Resource resource) {
+        this.resource = resource;
+    }
+
+    @Override
+    protected Schema getMainSchema() throws MetaModelException {
+        final MutableSchema schema = new MutableSchema(getMainSchemaName());
+        final MutableTable table = new MutableTable(getMainSchemaName(), TableType.TABLE, schema);
+        schema.addTable(table);
+
+        try (BufferedReader reader = createReader()) {
+            boolean inHeader = true;
+            for (String line = reader.readLine(); inHeader && line != null; line = reader.readLine()) {
+                if (line.startsWith("%")) {
+                    continue; // comment
+                }
+                final List<String> split = whitespaceSplitter.limit(2).splitToList(line);
+                if (split.isEmpty()) {
+                    continue; // empty line
+                }
+                switch (split.get(0).toLowerCase()) {
+                case "@relation":
+                    // table name
+                    final String tableName = trimString(split.get(1));
+                    table.setName(tableName);
+                    break;
+                case "@attribute":
+                    // column(s)
+                    final String attributeDef = split.get(1).trim();
+
+                    final String attributeName;
+                    final String attributeType;
+                    final ColumnType columnType;
+
+                    final int indexOfCurly = attributeDef.indexOf('{');
+                    if (indexOfCurly != -1) {
+                        attributeName = trimString(attributeDef.substring(0, indexOfCurly));
+                        attributeType = attributeDef.substring(indexOfCurly);
+                    } else {
+                        final Matcher matcher = ATTRIBUTE_DEF_W_DATATYPE_PARAM.matcher(attributeDef);
+                        if (matcher.find()) {
+                            attributeName = matcher.group(1);
+                            attributeType = matcher.group(2) + ' ' + matcher.group(3);
+                        } else {
+                            // simple attribute definition "[name] [type]"
+                            final List<String> attributeDefSplit = whitespaceSplitter.splitToList(attributeDef);
+                            if (attributeDefSplit.size() != 2) {
+                                throw new IllegalStateException(
+                                        resource.getName() + ": Unable to parse attribute line: " + line);
+                            }
+                            attributeName = trimString(attributeDefSplit.get(0));
+                            attributeType = attributeDefSplit.get(1);
+                        }
+                    }
+                    switch (attributeType.toLowerCase()) {
+                    case "numeric":
+                        columnType = ColumnType.NUMBER;
+                        break;
+                    case "int":
+                    case "integer":
+                    case "short":
+                        columnType = ColumnType.INTEGER;
+                        break;
+                    case "real":
+                    case "double":
+                    case "float":
+                        columnType = ColumnType.DOUBLE;
+                        break;
+                    case "string":
+                        columnType = ColumnType.STRING;
+                        break;
+                    default:
+                        if (indexOfCurly == -1) {
+                            logger.info(
+                                    "{}: Unrecognized data-type for attribute '{}': {}. Mapping to STRING column type.",
+                                    resource.getName(), attributeName, attributeType);
+                        }
+                        columnType = ColumnType.STRING;
+                        break;
+                    }
+
+                    final MutableColumn column = new MutableColumn(attributeName, columnType, table);
+                    column.setRemarks(attributeType);
+                    table.addColumn(column);
+                    break;
+                case "@data":
+                    // the header part of the file is done, no more schema to build up
+                    inHeader = false;
+                    break;
+                }
+            }
+        } catch (IOException e) {
+            throw new UncheckedIOException(e);
+        }
+        return schema;
+    }
+
+    private String trimString(String string) {
+        string = string.trim();
+        if (string.startsWith("'") && string.endsWith("'")) {
+            string = string.substring(1, string.length() - 1);
+        }
+        return string;
+    }
+
+    private BufferedReader createReader() {
+        return FileHelper.getBufferedReader(resource.read(), CHARSET);
+    }
+
+    @Override
+    protected String getMainSchemaName() throws MetaModelException {
+        return resource.getName();
+    }
+
+    @Override
+    protected DataSet materializeMainSchemaTable(Table table, List<Column> columns, int maxRows) {
+        // TODO Auto-generated method stub
+        return null;
+    }
+
+}
diff --git a/arff/src/test/java/org/apache/metamodel/arff/ArffDataContextTest.java b/arff/src/test/java/org/apache/metamodel/arff/ArffDataContextTest.java
new file mode 100644
index 0000000..d874526
--- /dev/null
+++ b/arff/src/test/java/org/apache/metamodel/arff/ArffDataContextTest.java
@@ -0,0 +1,96 @@
+/**
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you 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
+ *
+ *   http://www.apache.org/licenses/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.apache.metamodel.arff;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertTrue;
+
+import java.io.File;
+import java.io.FilenameFilter;
+import java.util.HashSet;
+import java.util.List;
+import java.util.Set;
+
+import org.apache.metamodel.schema.Column;
+import org.apache.metamodel.schema.ColumnType;
+import org.apache.metamodel.schema.ColumnTypeImpl;
+import org.apache.metamodel.schema.Schema;
+import org.apache.metamodel.schema.Table;
+import org.apache.metamodel.schema.TableType;
+import org.apache.metamodel.util.FileResource;
+import org.junit.Test;
+
+public class ArffDataContextTest {
+
+    private final File wekaDataDir = new File("src/test/resources/weka-data");
+
+    // generic test case that ensures we're able to load all the WEKA example files
+    @Test
+    public void testReadAllWekaArffExamples() {
+        final File[] files = wekaDataDir.listFiles(new FilenameFilter() {
+            @Override
+            public boolean accept(File dir, String name) {
+                return name.endsWith(".arff");
+            }
+        });
+
+        assertTrue(files.length > 1);
+
+        final Set<ColumnType> observedColumnTypes = new HashSet<>();
+
+        for (File file : files) {
+            final ArffDataContext dc = new ArffDataContext(new FileResource(file));
+            final Schema schema = dc.getDefaultSchema();
+            assertNotNull(schema.getName());
+            final List<Table> tables = schema.getTables(TableType.TABLE);
+            assertEquals(1, tables.size());
+            final List<Column> columns = tables.get(0).getColumns();
+            assertFalse("No columns defined in file: " + file, columns.isEmpty());
+            for (Column column : columns) {
+                observedColumnTypes.add(column.getType());
+            }
+        }
+
+        assertTrue(observedColumnTypes.size() > 1);
+        assertTrue(observedColumnTypes.contains(ColumnTypeImpl.STRING));
+        assertTrue(observedColumnTypes.contains(ColumnTypeImpl.NUMBER));
+    }
+
+    // test case that checks our ability to parse column types and names from a specific file.
+    @Test
+    public void testReadTableOfHypothyroid() {
+        final File file = new File(wekaDataDir, "hypothyroid.arff");
+        final ArffDataContext dc = new ArffDataContext(new FileResource(file));
+        final Schema schema = dc.getDefaultSchema();
+        final Table table = schema.getTable(0);
+        assertEquals("hypothyroid", table.getName());
+
+        final Column ageColumn = table.getColumnByName("age");
+        assertNotNull(ageColumn);
+        assertEquals(ColumnType.INTEGER, ageColumn.getType());
+        assertEquals("integer", ageColumn.getRemarks());
+
+        final Column sexColumn = table.getColumnByName("sex");
+        assertNotNull(sexColumn);
+        assertEquals(ColumnType.STRING, sexColumn.getType());
+        assertEquals("{ F, M}", sexColumn.getRemarks());
+    }
+}
diff --git a/arff/src/test/resources/weka-data/ReutersCorn-test.arff b/arff/src/test/resources/weka-data/ReutersCorn-test.arff
new file mode 100644
index 0000000..c5b47cd
--- /dev/null
+++ b/arff/src/test/resources/weka-data/ReutersCorn-test.arff
@@ -0,0 +1,611 @@
+@relation 'Reuters-21578 Corn ModApte Test-weka.filters.unsupervised.attribute.NumericToBinary-weka.filters.unsupervised.instance.RemoveFolds-S0-N5-F1'
+
+@attribute Text string
+@attribute class-att {0,1}
+
+@data
+
+'ASIAN EXPORTERS FEAR DAMAGE FROM U.S.-JAPAN RIFT Mounting trade friction between the\nU.S. And Japan has raised fears among many of Asia\'s exporting\nnations that the row could inflict far-reaching economic\ndamage, businessmen and officials said.\n    They told Reuter correspondents in Asian capitals a U.S.\nMove against Japan might boost protectionist sentiment in the\nU.S. And lead to curbs on American imports of their products.\n    But some exporters said that while the conflict w [...]
+'CHINA DAILY SAYS VERMIN EAT 7-12 PCT GRAIN STOCKS A survey of 19 provinces and seven cities\nshowed vermin consume between seven and 12 pct of China\'s grain\nstocks, the China Daily said.\n    It also said that each year 1.575 mln tonnes, or 25 pct, of\nChina\'s fruit output are left to rot, and 2.1 mln tonnes, or up\nto 30 pct, of its vegetables. The paper blamed the waste on\ninadequate storage and bad preservation methods.\n    It said the government had launched a national programm [...]
+'JAPAN TO REVISE LONG-TERM ENERGY DEMAND DOWNWARDS The Ministry of International Trade and\nIndustry (MITI) will revise its long-term energy supply/demand\noutlook by August to meet a forecast downtrend in Japanese\nenergy demand, ministry officials said.\n    MITI is expected to lower the projection for primary energy\nsupplies in the year 2000 to 550 mln kilolitres (kl) from 600\nmln, they said.\n    The decision follows the emergence of structural changes in\nJapanese industry followi [...]
+'THAI TRADE DEFICIT WIDENS IN FIRST QUARTER Thailand\'s trade deficit widened to 4.5\nbillion baht in the first quarter of 1987 from 2.1 billion a\nyear ago, the Business Economics Department said.\n    It said Janunary/March imports rose to 65.1 billion baht\nfrom 58.7 billion. Thailand\'s improved business climate this\nyear resulted in a 27 pct increase in imports of raw materials\nand semi-finished products.\n    The country\'s oil import bill, however, fell 23 pct in the\nfirst quar [...]
+'INDONESIA SEES CPO PRICE RISING SHARPLY Indonesia expects crude palm oil (CPO)\nprices to rise sharply to between 450 and 550 dlrs a tonne FOB\nsometime this year because of better European demand and a fall\nin Malaysian output, Hasrul Harahap, junior minister for tree\ncrops, told Indonesian reporters.\n    Prices of Malaysian and Sumatran CPO are now around 332\ndlrs a tonne CIF for delivery in Rotterdam, traders said.\n    Harahap said Indonesia would maintain its exports, despite\n [...]
+'AUSTRALIAN FOREIGN SHIP BAN ENDS BUT NSW PORTS HIT Tug crews in New South Wales (NSW),\nVictoria and Western Australia yesterday lifted their ban on\nforeign-flag ships carrying containers but NSW ports are still\nbeing disrupted by a separate dispute, shipping sources said.\n    The ban, imposed a week ago over a pay claim, had prevented\nthe movement in or out of port of nearly 20 vessels, they said.\n    The pay dispute went before a hearing of the Arbitration\nCommission today.\n    [...]
+'INDONESIAN COMMODITY EXCHANGE MAY EXPAND The Indonesian Commodity Exchange is\nlikely to start trading in at least one new commodity, and\npossibly two, during calendar 1987, exchange chairman Paian\nNainggolan said.\n    He told Reuters in a telephone interview that trading in\npalm oil, sawn timber, pepper or tobacco was being considered.\n    Trading in either crude palm oil (CPO) or refined palm oil\nmay also be introduced. But he said the question was still\nbeing considered by Tra [...]
+'SRI LANKA GETS USDA APPROVAL FOR WHEAT PRICE Food Department officials said the U.S.\nDepartment of Agriculture approved the Continental Grain Co\nsale of 52,500 tonnes of soft wheat at 89 U.S. Dlrs a tonne C\nand F from Pacific Northwest to Colombo.\n    They said the shipment was for April 8 to 20 delivery.\n REUTER\n&#3;',0
+'WESTERN MINING TO OPEN NEW GOLD MINE IN AUSTRALIA Western Mining Corp Holdings Ltd\n&lt;WMNG.S> (WMC) said it will establish a new joint venture gold\nmine in the Northern Territory at a cost of about 21 mln dlrs.\n    The mine, to be known as the Goodall project, will be owned\n60 pct by WMC and 40 pct by a local W.R. Grace and Co &lt;GRA>\nunit. It is located 30 kms east of the Adelaide River at Mt.\nBundey, WMC said in a statement\n    It said the open-pit mine, with a conventional l [...]
+'SUMITOMO BANK AIMS AT QUICK RECOVERY FROM MERGER Sumitomo Bank Ltd &lt;SUMI.T> is certain to\nlose its status as Japan\'s most profitable bank as a result of\nits merger with the Heiwa Sogo Bank, financial analysts said.\n    Osaka-based Sumitomo, with desposits of around 23.9\ntrillion yen, merged with Heiwa Sogo, a small, struggling bank\nwith an estimated 1.29 billion dlrs in unrecoverable loans, in\nOctober.\n    But despite the link-up, Sumitomo President Koh Komatsu\ntold Reuters  [...]
+'SUBROTO SAYS INDONESIA SUPPORTS TIN PACT EXTENSION Mines and Energy Minister Subroto\nconfirmed Indonesian support for an extension of the sixth\nInternational Tin Agreement (ITA), but said a new pact was not\nnecessary.\n    Asked by Reuters to clarify his statement on Monday in\nwhich he said the pact should be allowed to lapse, Subroto said\nIndonesia was ready to back extension of the ITA.\n    \"We can support extension of the sixth agreement,\" he said.\n\"But a seventh accord we  [...]
+'BUNDESBANK ALLOCATES 6.1 BILLION MARKS IN TENDER The Bundesbank accepted bids for 6.1\nbillion marks at today\'s tender for a 28-day securities\nrepurchase pact at a fixed rate of 3.80 pct, a central bank\nspokesman said.\n    Banks, which bid for a total 12.2 billion marks liquidity,\nwill be credited with the funds allocated today and must buy\nback securities pledged on May 6.\n    Some 14.9 billion marks will drain from the market today as\nan earlier pact expires, so the Bundesbank [...]
+'BOND CORP STILL CONSIDERING ATLAS MINING BAIL-OUT Bond Corp Holdings Ltd &lt;BONA.S> and Atlas\nConsolidated Mining and Development Corp &lt;ATLC.MN> are still\nholding talks on a bail-out package for the troubled mining\nfirm, an Atlas statement said.\n    Atlas, the Philippines\' biggest copper producer, said it\nhad been hit by depressed world copper prices. It reported a\nnet loss of 976.38 mln pesos in the year ending December 1986,\ncompared with a net loss of 1.53 billion in 1985 [...]
+'CHINA INDUSTRIAL OUTPUT RISES IN FIRST QUARTER China\'s industrial output rose 14.1 pct\nin the first quarter of 1987 against the same 1986 period, the\nPeople\'s Daily said.\n    Its overseas edition said the growth rate, which compares\nwith a target of seven pct for the whole of 1987, was \"rather\nhigh\" but the base in the first quarter of 1986 was on the low\nside. Industrial output grew 4.4 pct in the first quarter of\n1986.\n    It said China\'s industrial production this year h [...]
+'JAPAN MINISTRY SAYS OPEN FARM TRADE WOULD HIT U.S. Japan\'s Agriculture Ministry, angered by\nU.S. Demands that Japan open its farm products market, will\ntell U.S. Officials at talks later this month that\nliberalisation would harm existing U.S. Farm exports to Japan,\na senior ministry official said.\n    \"Imports from the U.S. Would drop due to active sales drives\nby other suppliers,\" the official, who declined to be named,\nsaid. \"Japan is the largest customer for U.S. Farm prod [...]
+'AMATIL PROPOSES TWO-FOR-FIVE BONUS SHARE ISSUE Amatil Ltd &lt;AMAA.S> said it proposes to\nmake a two-for-five bonus issue out of its revaluation reserve\nto shareholders registered May 26.\n    Shareholders will be asked to approve the issue and an\nincrease in authorised capital to 175 mln shares from 125 mln\nat a general meeting on May 1, it said in a statement.\n    The new shares will rank for dividends declared after\nOctober 31. Amatil, in which B.A.T. Industries Plc &lt;BTI.L>\ [...]
+'BOWATER 1986 PRETAX PROFITS RISE 15.6 MLN STG Shr 27.7p vs 20.7p\n    Div 6.0p vs 5.5p making 10.0p vs 9.25p\n    Turnover 1.34 billion stg vs 1.29 billion\n    Pretax profit 48.0 mln vs 32.4 mln\n    Tax 14.4 mln vs 6.9 mln\n    Company name is Bowater Industries Plc &lt;BWTR.L>\n    Trading profit 63.4 mln vs 45.1 mln\n    Trading profit includes -\n    Packaging and associated products 23.2 mln vs 14.2 mln\n    Merchanting and services 18.4 mln vs 9.6 mln\n    Tissue and timber produ [...]
+'U.K. MONEY MARKET DEFICIT FORECAST AT 250 MLN STG The Bank of England said it forecast a\nshortage of around 250 mln stg in the money market today.\n    Among the main factors affecting liquidity, bills maturing\nin official hands and the take-up of treasury bills will drain\nsome 505 mln stg, while bills for repurchase by the market will\nremove around 194 mln. In addition, a rise in note circulation\nand bankers\' balances below target will each drain around 110\nmln stg.\n    Partly  [...]
+'SOUTH KOREA MOVES TO SLOW GROWTH OF TRADE SURPLUS South Korea\'s trade surplus is growing too\nfast and the government has started taking steps to slow it\ndown, Deputy Prime Minister Kim Mahn-je said.\n    He told a press conference the government planned to\nincrease investment, speed up the opening of the local market\nto foreign imports and gradually adjust its currency to hold\nthe surplus \"at a proper level.\"\n    But he said the government would not allow the won to\nappreciate [...]
+'FINNS AND CANADIANS TO STUDY MTBE PRODUCTION PLANT Finland\'s national oil company Neste Oy\n&lt;NEOY.HE> said in a statement it had agreed with Canadian firms\nto study the feasibility of building a plant in Edmonton,\nCanada, to produce a replacement for lead in petrol.\n    The prospective plant would cost an estimated 270 mln\nCanadian dlrs and would produce methyl tertiary butyl ether\n(MTBE) from raw materials available locally, it said.\n    The partners in the study are Neste Oy [...]
+'CRA SOLD FORREST GOLD FOR 76 MLN DLRS - WHIM CREEK &lt;Whim Creek Consolidated NL> said the\nconsortium it is leading will pay 76.55 mln dlrs for the\nacquisition of CRA Ltd\'s &lt;CRAA.S> &lt;Forrest Gold Pty Ltd> unit,\nreported yesterday.\n    CRA and Whim Creek did not disclose the price yesterday.\n    Whim Creek will hold 44 pct of the consortium, while\n&lt;Austwhim Resources NL> will hold 27 pct and &lt;Croesus Mining\nNL> 29 pct, it said in a statement.\n    As reported, Forres [...]
+'GERMAN INDUSTRIAL EMPLOYMENT SEEN STAGNATING The number of workers employed in\nthe West German industrial sector stagnated in the last quarter\nof 1986 as a 50,000 increase in overall employment benefited\nonly the services branch, the DIW economic institute said.\n    A DIW report added the general downturn in the economy\nsince last Autumn had had a negative effect on the willingness\nof firms to take on workers. It referred to a marked downturn\nin the number of workers taken on in  [...]
+'BOWATER INDUSTRIES PROFIT EXCEED EXPECTATIONS Bowater Industries Plc &lt;BWTR.L> 1986\npretax profits of 48.0 mln stg exceeded market expectations of\naround 40 mln and pushed the company\'s shares up sharply to a\nhigh of 491p from 468p last night, dealers said.\n    The shares later eased back to 481p. Bowater reported a\n32.4 mln stg profit in 1985.\n    The company said in a statement accompanying the results\nthat the underlying trend showed improvement and it intended to\nexpand f [...]
+'CITIBANK NORWAY UNIT LOSES SIX MLN CROWNS IN 1986 Citibank A/S &lt;CCI.N>, the Norwegian\nsubsidiary of the U.S.-based bank, said it made a net loss of\njust over six mln crowns in 1986 -- although foreign bankers\nsaid they expect it to show 1987 profits after two lean years.\n    Citibank\'s Oslo treasury head Bjoern Sejerstad told\nReuters, Citibank, one of seven foreign bank subsidiaries\noperating in Norway, lost money because of restructuring for\ninvestment banking away from comm [...]
+'VIEILLE MONTAGNE SAYS 1986 CONDITIONS UNFAVOURABLE A sharp fall in the dollar price of\nzinc and the depreciation of the U.S. Currency created\nunfavourable economic conditions for Vieille Montagne SA\n&lt;VMNB.BR> in 1986.\n    It said in a statement that the two factors led to a\nsqueeze on refining margins and an 18.24 pct fall in sales and\nservices income despite an unchanged level of activity.\n    Vieille Montagne, which is actively pursuing a\nrestructuring program, reported a 1 [...]
+'VIEILLE MONTAGNE REPORTS LOSS, DIVIDEND NIL 1986 Year\n    Net loss after exceptional charges 198 mln francs vs profit\n    250 mln\n    Exceptional provisions for closure of Viviez electrolysis\n    Plant 187 mln francs vs exceptional gain 22 mln\n    Sales and services 16.51 billion francs vs 20.20 billion\n    Proposed net dividend on ordinary shares nil vs 110 francs\n    Company\'s full name is Vieille Montagne SA &lt;VMNB.BR>.\n REUTER\n&#3;',0
+'EC MAINLY FOR TIN EXTENSION, NO U.K. STAND TAKEN European Community (EC) members of the\nInternational Tin Council, except Britain, have said they are\nprepared to back an extension of the International Tin\nAgreement, an EC spokesman said.\n    He said at a meeting of EC states\' representatives here\nyesterday, Britain undertook to communicate its own decision to\nits partners today. It said it was not ready yesterday to take\na stand but did not say why.\n    He added nine other EC s [...]
+'JAPAN GIVEN LITTLE HOPE OF AVOIDING U.S. SANCTIONS A top U.S. Official said Japan has little\nchance of convincing the U.S. To drop threatened trade\nsanctions, despite the efforts of a Japanese team that left for\nWashington today.\n    Michael Armacost, Under Secretary of State for Political\nAffairs, was asked at a press conference whether Japan\'s moves\nto boost its domestic economy and open its markets could\npersuade the U.S. Not to impose tariffs on Japanese imports\nsaid, and r [...]
+'THAI ZINC EXPORTS FALL IN MARCH Thai zinc ingot exports fell to 882\ntonnes in March from 1,764 in February and 3,008 in March 1986,\nthe Mineral Resources Department said.\n    A spokesman for Padaeng Industry Co Ltd, the country\'s sole\nexporter, attributed the decline to the company\'s lower stocks,\nwhich averaged 5,000 tonnes in the first quarter against 16,000\ntonnes in late 1985 when it began exporting.\n    The department said major buyers included China, Japan, the\nPhilippin [...]
+'EC SUGAR TENDER HARD TO PREDICT - LONDON TRADE The outcome of today\'s European Community\n(EC) white sugar tender is extremely difficult to predict after\nlast week\'s substantial award of 102,350 tonnes at the highest\never rebate of 46.864 European currency units (Ecus) per 100\nkilos, traders said.\n    Some said they believed the tonnage would probably be\nsmaller, at around 60,000 tonnes, but declined to give a view\non the likely restitution. Last week, the European Commission\na [...]
+'NORTH YEMEN CALLS SUGAR BUYING TENDER - TRADE North Yemen has called a buying tender\nfor Saturday for the purchase of 30,000 tonnes of white sugar\nfor arrival in June, traders said.\n REUTER\n&#3;',0
+'ANHEUSER-BUSCH JOINS BID FOR SAN MIGUEL Anheuser-Busch Companies Inc &lt;BUD.N> has\njoined several other foreign bidders for sequestered shares of\nthe Philippines\' largest food and beverage maker San Miguel\nCorp &lt;SANM.MN>, the head of a government panel which controls\nthe shares told Reuters.\n    Ramon Diaz, Secretary of the Presidential Commission on\nGood Government (PCGG), said Anheuser-Busch had told the\ngovernment it was interested in buying 14 mln \"B\" shares of San\nMi [...]
+'ECONOMIC SPOTLIGHT - AUSTRALIAN MARKETS BOOMING Australian markets are booming as foreign\nfund managers redirect capital away from the United States and\nother traditional markets, analysts said.\n    High short-term interest rates, a bullish stock market and\nan increasingly stable currency reflect a massive inflow of\nfresh funds in the last two months, largely from Japanese and\nU.S. Investors, analysts polled by Reuters said.\n    Fund managers want quality markets to park their ca [...]
+'ECONOMIC SPOTLIGHT - KUWAITI ECONOMY Kuwait\'s oil-reliant and debt-ridden\neconomy has started to pull out of a nosedive but oil prices\nwill determine the pace of recovery, bankers and economists\nsay.\n    Crucial will be the ability of the 13-member OPEC to hold\noil prices around a new benchmark of 18 dlrs a barrel in the\nnorthern hemisphere summer when demand usually slackens.\n    Bankers estimate the economy, measured in terms of gross\ndomestic product (gdp), shrank 19 pct in  [...]
+'MALAYSIA MAY NOT MEET 1987 OIL PALM TARGET Malaysia is unlikely to meet its\ntargeted output of five mln tonnes of oil palm in calendar\n1987, oil palm growers told Reuters.\n    Output in 1987 is expected to reach around 4.5 mln tonnes,\nunchanged from 1986, because of drought, low use of fertiliser\nand overstressed palms, they said.\n    The growers were asked for their reaction to an Oil World\nnewsletter report that Malaysia\'s oil palm output is likely to\ndrop sharply this year.\ [...]
+'JARDINE MATHESON SAID IT SETS TWO-FOR-FIVE BONUS ISSUE REPLACING \"B\" SHARES\n ',0
+'MONIER SAYS BRITAIN\'S REDLAND MAY BID FOR IT Diversified building materials group\nMonier Ltd &lt;MNRA.S> said talks are taking place which may lead\nto Britain\'s Redland Plc &lt;RDLD.L> making an offer for the\nMonier shares it does not already hold, chairman Bill Locke\nsaid.\n    Redland already holds about 49 pct of Monier\'s 156.28 mln\nissued shares, he said in a brief notice to the Australian\nStock Exchange.\n    Locke said shareholders would be advised as soon as the\ndiscuss [...]
+'ISUZU PLANS NO INTERIM DIVIDEND Isuzu Motor Ltd &lt;ISUM.T> will pay no\ndividend for the first half year ending April 30, 1987, as the\ncompany is expected to mark a 12 billion yen parent company\ncurrent loss in the first half due to slow exports caused by\nthe yen\'s appreciation, a company spokesman said.\n    The company has paid no dividend since the year ended\nOctober 31, 1983, when it paid five yen.\n    It had a 4.44 billion yen current profit in the first half\nof 1985/86.\n  [...]
+'JAPANESE OFFICIAL TAKES DATA TO MICROCHIP TALKS Ministry of International Trade and\nIndustry (MITI) Vice Minister Makoto Kuroda leaves for\nWashington today with data he hopes will refute U.S. Charges\nJapan has violated a pact on microchip trade.\n    A three-man Japanese trade team is already in Washington\nlaying the groundwork for talks between Kuroda and Deputy U.S.\nTrade Representative Michael Smith aimed at persuading the U.S.\nNot to impose tariffs on certain Japanese products [...]
+'BELL GROUP CONFIRMS STANDARD CHARTERED STAKE The Bell Group Ltd &lt;BLLA.S> said it now\nholds 14.9 pct of the issued capital of Standard Chartered Plc\n&lt;STCH.L> after acquiring further shares.\n    The one-sentence statement from Bell\'s headquarters\nconfirmed what its brokers Warburg Securities told Reuters in\nLondon yesterday.\n    Bell previously held 10 pct of Standard.\n    Bell chairman Robert Holmes a Court, who is also a director\nof Standard, was not available for comment [...]
+'NIPPON STEEL DENIES CHINA SEEKING JAPANESE PLANTS Nippon Steel Corp &lt;NSTC.T> denied local\nnewspaper reports that China has been seeking to buy steel\nplants from Japanese firms which plan to suspend output under\nthe recently announced rationalisation program.\n    The Mainichi Shimbun quoted Nippon Steel as saying that\nChina\'s State Planning Commission and some Chinese firms have\nasked Japanese makers to sell them steel works and rolling\nmills to expand steelmaking cheaply. It  [...]
+'JARDINE MATHESON REPLACES \"B\" SHARE BY BONUS ISSUE Jardine Matheson Holdings Ltd\n&lt;JARD.HK> said it will withdraw the previously announced\nfour-for-one bonus issue of \"B\" shares and replace it by a\ntwo-for-five bonus issue of ordinary shares.\n    A statement said the firm expects to pay total dividends\nfor 1987 of not less than 40 cents a share on the expanded\ncapital.\n    Jardine Matheson decided to withdraw its issue because of a\njoint announcement earlier today by Ronal [...]
+'JAPAN GIVEN LITTLE HOPE OF AVOIDING U.S. SANCTIONS A top U.S. Official said Japan has little\nchance of persuading the U.S. to drop threatened trade\nsanctions, despite the efforts of a Japanese team that left for\nWashington today.\n    Michael Armacost, Under Secretary of State for Political\nAffairs, was asked at a press conference whether Japan\'s moves\nto boost its domestic economy and open its markets could\npersuade the U.S. Not to impose tariffs on Japanese imports\nsaid, and r [...]
+'BANK OF JAPAN INTERVENES SOON AFTER TOKYO OPENING The Bank of Japan bought a small amount of\ndollars shortly after the opening at around 145.30 yen, dealers\nsaid.\n    The central bank intervened as a medium-sized trading house\nsold dollars, putting pressure on the U.S. Currency, they said.\n    The dollar was also supported by a major electrical\nconsumer goods company, which was a speculative dollar buyer at\naround 145.25 yen, they added.\n    The dollar opened at 145.33 yen again [...]
+'INDONESIAN INFLATION RATE 8.8 PCT IN 1986/87 Inflation was by 8.8 pct in Indonesia\nduring fiscal 1986/87 to March 31, compared to 5.66 pct the\nprevious year, Information Minister Harmoko said after a\ncabinet session to discuss the economic situation.\n REUTER\n&#3;',0
+'U.K. MONEY MARKET GIVEN 53 MLN STG ASSISTANCE The Bank of England said it provided the\nmoney market with 53 mln stg assistance in the morning session.\n    This compares with the bank\'s estimate of a shortage in the\nsystem of around 300 mln stg which it earlier revised up from\n250 mln.\n    The central bank made outright purchases of bank bills\ncomprising 46 mln stg in band three at 9-3/4 pct and seven mln\nstg in band four at 9-11/16 pct.\n REUTER\n&#3;',0
+'SAN MIGUEL DEAL HIT BY MORE LAWSUITS A bid by San Miguel Corp (SMC) &lt;SANM.MN>\nto buy back 38.1 mln sequestered shares from United Coconut\nPlanters Bank (UCPB) has been hit by two new lawsuits, sources\nin the Philippine food and brewery company said.\n    A Manila court yesterday issued an injunction barring UCPB\nfrom selling the shares, which represent 31 pct of SMC\'s\noutstanding capital stock of 121 mln shares, until hearings on\nApril 21 on a petition filed by Eduardo Cojuang [...]
+'RAIN BOOSTS CENTRAL QUEENSLAND SUGAR CANE CROP Good rains of one to four inches in the\npast 10 days have boosted moisture-stressed sugar cane crops in\nthe Mackay-Burdekin region of Queensland\'s central coast, an\nAustralian Sugar Producers\' Association spokesman said.\n    As previously reported, the region has been undergoing a\nsevere dry spell, partly relieved by scattered rainfall, since\nDecember, following the virtual failure of the summer wet\nseason.\n    Mills in the area h [...]
+'FRENCH TRADERS FORECAST EC SUGAR TENDER The European Community (EC) is expected to\naward export licences at today\'s weekly tender for above 60,000\nand possibly up to 100,000 tonnes of white sugar after last\nweek\'s award for 102,350 tonnes, traders here said.\n    They expected a maximum rebate of between 46.40 and 46.50\nEcus per 100 kilos, compared to last week\'s 46.864.\n    Earlier, traders in London said the outcome of the tender\nwas very hard to predict after last week\'s su [...]
+'ITALY\'S LA FONDIARIA TO REPORT HIGHER 1986 PROFITS Italian insurer La Fondiaria Spa &lt;LFDI.MI>\nsaid it expects to report consolidated group profit in 1986\nsignificantly higher than the 60 billion lire reported in 1985.\n    The company said in a statement that parent company net\nprofit last year will rise from the 72 billion lire reported in\n1985. Consolidated group premiums totaled 1,700 billion lire in\n1986 compared with 1,490 billion the previous year.\n    Iniziativa Meta &l [...]
+'NICKEL PRICES UNLIKELY TO RISE MUCH - SHEARSON Nickel prices are unlikely to rise\nsignificantly from current levels unless further steps are\ntaken to reduce production, Shearson Lehman Brothers said in\nits quarterly nickel market report.\n    The market had recovered slightly to around 1.72 dlrs a lb\nyesterday from its four year low of 1.55 dlrs in early January,\ndue to the absence of Soviet nickel cathode deliveries, but\nShearson sees Soviet shipments soon returning to last year\ [...]
+'HIGHER 1986 PROFIT FOR DUTCH CHEMICAL FIRM DSM The fully state-owned Dutch\nchemical firm NV DSM &lt;DSMN.AS> said its 1986 net profit rose to\n412 mln guilders from 402 mln in 1985, while turnover fell to\n17.7 billion guilders in 1986 from 24.1 billion in 1985.\n    The company said 1986 dividend, which will be paid to the\nDutch state in its capacity of the firm\'s sole shareholder,\nwould be raised to 98 mln guilders from 70 mln guilders in\n1985.\n    In an initial comment on its 1 [...]
+'POEHL WARNS AGAINST FURTHER DOLLAR FALL Bundesbank President Karl Otto Poehl\nsaid a weaker dollar would be risky and a further appreciation\nof the mark would damage prospects for sustained West German\neconomic growth.\n    In a speech to the Institute of Contempory German Affairs\nhere, Poehl said \"It would be an extremely risky policy to aim\nfor a further substantial decline in the value of the dollar to\ncorrect the trade deficit.\"\n    He said the United States could face a vic [...]
+'CINCINNATI BELL &lt;CSN> STARTS AUXTON &lt;AUXT> BID Cincinnati Bell Inc said it has started\nits previously-announced 15.75 dlr per share tender offer for\nall shares of Auxton Computer Enterprises Inc.\n    In a newspaper advertisement, the company said the tender\nand withdrawal rights will expire May Five unless extended. The\noffer, which has been approved by the Auxton board and is to be\nfollowed by a merger at the same price, is conditioned on\nreceipt of a majority of Auxton\'s [...]
+'CALIFORNIA BIOTECH &lt;CBIO> SEES 1ST QTR LOSS California Biotechnology\nInc said it expects to report a loss of 1,300,000 dlrs to\n1,600,000 dlrs for the first quarter due to increased\ninvestment in research and manufacturing and a scaleup of\nproduction.\n    The company said research spending is running 50 to 60 pct\nabove a year ago as it tries to commercialize its products as\nquickly as possible, and increased expenditures are expected to\ncontinue for several more quarters.  It  [...]
+'PALL CORP &lt;PLL> SETS QUARTERLY DIVIDEND Qtly div 8-1/2 cts vs 8-1/2 cts prior\n    Pay May One\n    Record April 20\n Reuter\n&#3;',0
+'UNILEVER SEEKS BUYER FOR STAUFFER CHEMICAL Unilever Plc and NV &lt;UN.AS> has issued a\nprospectus through investment bankers Goldman Sachs and Co\nseeking a buyer for &lt;Stauffer Chemical Co> of the U.S., Which\nit acquired with the recent takeover of &lt;Chesebrough-Pond\'s\nInc>, a Unilever spokesman said.\n    He noted Unilever has been indicating plans to dispose of\nStauffer, plus some smaller assets of Chesebrough, since the\nbid was made in December.\n    The Stauffer sale pros [...]
+'CONRAC CORP SAID IT HAS ENTERED TALKS ON ITS ACQUISITION WITH SEVERAL PARTIES\n ',0
+'CONRAC &lt;CAX> IN MERGER TALKS WITH SEVERAL Conrac Corp sait has started\nnegotiations with several interested parties on its possible\nacquisition.\n    It said there can be no assurance that any transaction will\nresult from the talks.  It gave no further details.\n    Mark IV Industries Inc &lt;IV> started tendering for all\nConrac shares at 25 dlrs each on March 24 and owned 9.9 pct of\nConrac before starting the bid.\n    Conrac is a producer and marketer of computer-related\ninfo [...]
+'JAPAN\'S LDP URGES MORE IMPORTS OF 12 FARM ITEMS The ruling Liberal Democratic Party (LDP)\nhas proposed expanding imports of 12 farm products named in a\nU.S. Complaint against Japan to the General Agreement on\nTariffs and Trade last year, an LDP official said.\n    The products include fruit juices, purees and pulp, some\ntomato products, peanuts, prepared beef products and beans.\n    The proposal will be used as the basis for a more detailed\nLDP economic package to cut the trade s [...]
+'COMPUTER RESEARCH INC &lt;CORE> 2ND QTR FEB 28 NET Shr 14 cts vs nine cts\n    Net 217,572 vs 153,454\n    Revs 2,530,273 vs 2,558,924\n    1st half\n    Shr 19 cts vs 11 cts\n    Net 299,838 vs 174,739\n    Revs 4,865,249 vs 4,495,021\n Reuter\n&#3;',0
+'AUSTRALIAN FOREIGN SHIP BAN ENDS Tug crews in New South Wales (NSW),\nVictoria and Western Australia yesterday lifted their ban on\nforeign-flag ships carrying containers but NSW ports are still\nbeing disrupted by a separate dispute, shipping sources said.\n    The ban, imposed a week ago over a pay claim, had prevented\nthe movement in or out of port of nearly 20 vessels, they said.\nThe pay dispute went before a hearing of the Arbitration\nCommission today.\n    Meanwhile, disruption [...]
+'RUBBERMAID INC 1ST QTR SHR 28 CTS VS 22 CTS\n ',0
+'INDEPENDENT CHAIRMAN FOR DUTCH CARGO DISPUTE The two sides in the Rotterdam port\ngeneral cargo dispute have agreed to appoint an independent\nchairman, Han Lammers, to preside over future meetings,\nemployers\' spokesman Gerard Zeebregts said.\n    Lammers, Queen\'s Commissioner for the province of\nFlevoland, will not act as a mediator but will draw up an\nagenda and procedures for meetings between the employers and\nunions on a work-practice agreement and proposed redundancies.\n     [...]
+'ELECTRO RENT CORP &lt;ELRC> 3RD QTR FEB 28 NET Shr 20 cts vs 32 cts\n    Net 1,358,000 vs 2,476,000\n    Revs 27.1 mln vs 26.2 mln\n    Avg shrs 6,852,000 vs 7,764,000\n    Nine mths\n    Shr 68 cts vs 1.05 dlrs\n    Net 4,957,000 vs 8,129,000\n    Revs 82.6 mln vs 78.8 mln\n    Avg shrs 7,316,000 vs 7,754,000\n Reuter\n&#3;',0
+'RUBBERMAID INC &lt;RBD> 1ST QTR NET Shr 28 cts vs 22 cts\n    Net 20.6 mln vs 16.1 mln\n    Sales 238.0 mln vs 188.8 mln\n Reuter\n&#3;',0
+'WTC INTERNATIONAL INC &lt;WAF> 4TH QTR FEB 28 NET Shr profit 13 cts vs loss 33 cts\n    Net profit 1,149,000 vs loss 2,833,000\n    Rev 51.8 mln vs 47.8 mln\n    Year\n    Shr profit 24 cts vs loss 18 cts\n    Net profit 2,050,000 vs loss 1,551,000\n    Rev 200.6 mln vs 180.1 mln\n Reuter\n&#3;',0
+'U.K. MONEY MARKET GIVEN FURTHER 166 MLN STG HELP The Bank of England said it provided the\nmarket with further help totalling 166 mln stg during the\nafternoon.\n    In band one, it bought 31 mln stg of treasury bills and\nthree mln stg of bank bills at 9-7/8 pct, while in band two it\nbought 69 mln stg of bank bills at 9-13/16 pct. In addition, it\nbought 63 mln stg of band three bank bills at 9-3/4 pct.\n    This brings the total assistance by the Bank so far today\nto 219 mln stg aga [...]
+'MEAD CORP 1ST QTR OPER SHR 1.09 DLRS VS 67 CTS\n ',0
+'RUBBERMAID &lt;RBD> SEES CONTINUED IMPROVEMENT Rubbermaid Inc said its incoming\norder rates continue strong and it expects to continue\nrecording favorable year to year comparisons in each remaining\nquarter of 1987.\n    Today the company reported first quarter earnings of 20.6\nmln dlrs on sales of 238.0 mln dlrs, up from earnings of 16.1\nmln dlrs on sales of 188.8 mln dlrs.\n Reuter\n&#3;',0
+'CAYUGA SAVINGS BANK &lt;CAYB> 1ST QTR NET Shr 55 cts vs 41 cts\n    Net 494,000 vs 204,000\n    Avg shrs 896,655 vs 494,155\n Reuter\n&#3;',0
+'JOHNSTOWN SAVINGS BANK FSB &lt;JSBK> 1ST QTR NET Shr 33 cts vs not given\n    Net 642,484 vs 362,883\n    NOTE: Company went public in October 1986.\n    Net includes pretax loan loss provisions of 90,000 dlrs vs\n56,250 dlrs and gain on sale of securities of 113,432 dlrs vs\n88,946 dlrs.\n Reuter\n&#3;',0
+'HOME SAVINGS AND LOAN ASSOCIATION INC &lt;HSLD> 2nd qtr March 31\n    Shr 57 cts vs not given\n    Net 790,874 vs 628,020\n    1st half\n    Shr 1.15 dlrs vs not given\n    Net 1,588,985 vs 1,073,163\n    NOTE: Company recently went public.\n Reuter\n&#3;',0
+'GEODYNAMICS CORP &lt;GDYN> 3RD QTR FEB 27 NET Shr 21 cts vs 20 cts\n    Net 596,000 vs 594,000\n    Revs 8,693,000 vs 8,164,000\n    Nine mths\n    Shr 61 cts vs 58 cts\n    Net 1,784,000 vs 1,653,000\n    Revs 26.3 mln vs 23.0 mln\n Reuter\n&#3;',0
+'SWEDISH UNEMPLOYMENT STEADY IN MARCH Swedish unemployment was steady at 2.2\npct of the workforce in March compared with the previous month,\nthe Central Bureau of Statistics said.\n    In March 1986, the figure stood at 2.4 pct.\n REUTER\n&#3;',0
+'COMPAQ &lt;CPQ> EXPECTS HIGHER FIRST QUARTER NET Compaq Computer Corp said it expects\nsales and earnings for the first quarter of 1987 to be higher\nthan analysts expectations due to strong demand for its\nproducts.\n    Rod Canion, president and chief executive officer of\nCompaq, said he expects sales of over 200 mln dlrs for the\nperiod ending March 31, above analysts\' estimates of 165-185\nmln dlrs. He added that earnings per share would exceed\nanalysts estimates of as high as 42 [...]
+'I.U. INTERNATIONAL &lt;IU> TO SELL INSURANCE UNITS I.U. International Co said it\nreached a preliminary agreement to sell the Hawaiian Insurance\nCos to Hawaiian Electric Industries Inc. &lt;HE>.\n    Terms of the transaction were not disclosed, the company\nsaid.\n    The transaction is subject to the execution of definitive\nagreements, certain governmental approvals and approvals by the\nboards of directors involved, I.U. International said.\n    Hawaiian Electric said the planned pu [...]
+'CXR TELCOM CORP &lt;CXRL> 3RD QTR MARCH 31 NET Shr nil vs nil\n    Net 215,000 vs 16,000\n    Revs 2,800,000 vs 1,100,000\n    Nine mths\n    Shr one ct vs nil\n    Net 620,000 vs 231,000\n    Revs 8,100,000 vs 2,100,000\n Reuter\n&#3;',0
+'PROXMIRE OUTLINES INSIDER TRADING LEGISLATION Senate Banking Committee Chairman\nWilliam Proxmire (D-Wis) said he planned to introduce\nlegislation shortly to require greater public disclosure of\ncorporate takeovers and fairer treatment for all shareholders.\n    Speaking to the National Association of Manufacturers,\nProxmire said recent insider trading stock scandals increased\nthe chance that Congress will act to curb abuses.\n    \"We are proposing legislation that would provide fo [...]
+'HELEN OF TROY CORP &lt;HELE> 4TH QTR FEB 28 NET Shr 17 cts vs 13 cts\n    Net 598,000 vs 392,000\n    Sales 10.2 mln vs 7,474,000\n    Avg shrs 3,432,000 vs 3,045,000\n    Year\n    Oper shr profit 1.05 dlrs vs loss 47 cts\n    Oper net profit 3,498,000 vs loss 1,427,000\n    Sales 52.2 mln vs 40.8 mln\n    Avg shrs 3,320,000 vs 3,060,000\n    NOTE: Latest year net excludes 782,000 dlr tax credit.\n Reuter\n&#3;',0
+'BANKERS TRUST &lt;BT> PUTS BRAZIL ON NON-ACCRUAL Bankers Trust New York Corp said it has\nplaced its approximately 540 mln dlrs of medium- and long-term\nloans to Brazil on non-accrual status and that first-quarter\nnet income will be reduced by about seven mln dlrs as a result.\n    Brazil suspended interest payments on its 68 billion dlrs\nof medium- and long-term debt on February 22.\n    U.S. banking regulations do not require banks to stop\naccruing interest on loans until payments [...]
+'&lt;FIRST MERCANTILE CURRENCY FUND INC> 1ST QTR NET Shr profit 63 cts vs 22 cts\n    Net 775,868 vs 276,446\n    Revs 2,255,742 vs 706,130\n Reuter\n&#3;',0
+' UK INTERVENTION BD SAYS EC SOLD 118,350 TONNES WHITE SUGAR AT REBATE 46.496 ECUS.\n ',0
+'STOLTENBERG SEES MOVES TO STRENGTHEN PARIS ACCORD West German Finance Minister Gerhard\nStoltenberg said today\'s meetings of major industrial countries\nwould look at ways of strengthening the Paris accord on\nstabilizing foreign exchange rates.\n    Stoltenberg told journalists he saw no fundamental weakness\nof the February 22 agreement of the Group of Five countries and\nCanada to keep exchange rates near the then-current levels.\n    But he declined to say what measures would be di [...]
+'U.K. INTERVENTION BOARD DETAILS EC SUGAR SALES A total 118,350 tonnes of current series\nwhite sugar received export rebates of a maximum 46.496\nEuropean Currency Units (Ecus) per 100 kilos at today\'s\nEuropean Community (EC) tender, the U.K. Intervention Board\nsaid.\n    Out of this, traders in the U.K. Received 37,800 tonnes, in\nFrance 34,500, in West Germany 20,000, in Belgium 18,500, in\nSpain 5,800 and in Denmark 1,750 tonnes, it added.\n    Earlier today, London traders had de [...]
+'MEAD &lt;MEA> EXPECTS IMPROVED EARNINGS THIS YEAR Mead Corp said the outlook for its\nmajor paper markets looks strong for the second quarter and\naugurs well for its earnings in 1987.\n    \"The generally strong outlook bodes well for significantly\nimproved earnings this year,\" Burnell Roberts, chairman and\nchief executive officer said.\n    Earlier, the company reported first quarter earnings of\n34.2 mln dlrs, or 1.09 dlrs a share, versus 20.3 mln dlrs, or\n65 cts a share, in last [...]
+'AMERTEK INC &lt;ATEKF> 1ST QTR NET Shr profit 20 cts vs loss three cts\n    Net profit 849,299 vs loss 82,512\n    Revs 7,929,138 vs 3,849,224\n Reuter\n&#3;',0
+'ALEX BROWN INC &lt;ABSB> 1ST QTR MARCH 27 NET Shr primary 78 cts vs 68 cts\n    Shr diluted 75 cts vs 68 cts\n    Qtrly div six cts vs five cts\n    Net 7,929,000 vs 6,569,000\n    Revs 78.7 mln vs 61.9 mln\n    NOTE: Pay date for the qtrly div is April 28 for\nshareholders of record April 20.\n Reuter\n&#3;',0
+'TOWN AND COUNTRY JEWELRY MANUFACTURING &lt;TCJC> 4thh qtr Feb 28\n    Shr 46 cts vs 22 cts\n    Net 2,139,034 vs 854,182\n    Sales 30.8 mln vs 20.6 mln\n    Avg shrs 5,280,854 vs 4,559,646\n    Year\n    Shr 1.34 dlrs vs 1.15 dlrs\n    Net 5,935,117 vs 4,156,171\n    Sales 107.2 mln vs 71.6 mln\n    Avg shrs 5,281,387 vs 3,616,183\n    NOTE: Town and Country Jewelry Manufacturing Corp.\n Reuter\n&#3;',0
+'PAXAR CORP &lt;PAKS> MAKES ACQUISITION Paxar Corp said it has\nacquired Thermo-Print GmbH of Lohn, West Germany, a distributor\nof Paxar products, for undisclosed terms.\n Reuter\n&#3;',0
+'&lt;MARK\'S WORK WEARHOUSE LTD> YEAR JAN 31 NET Shr 10 cts vs 32 cts\n    Net 975,000 vs 3,145,000\n    Sales 159.1 mln vs 147.3 mln\n Reuter\n&#3;',0
+'CANADIAN BASHAW, ERSKINE RESOURCES TO MERGE Canadian Bashaw Leduc Oil and\nGas Ltd said it agreed to merge with Erskine Resources Ltd.\nTerms were not disclosed.\n    Ownership of the combined company with 18.8 pct for the\ncurrent shareholders of Canadian Bashaw and 81.2 pct to the\ncurrent shareholders of Erskine, the companies said.\n Reuter\n&#3;',0
+'ENTOURAGE &lt;ENTG> HAS FIRST QUARTER LOSS Entourage International Inc said it had\na first quarter loss of 104,357 dlrs, after incurring 70,000\ndlrs in costs for an internal audit, a report for shareholders\nand proxy soliciation and 24,000 dlrs in startup expenses for\nopening London offices.\n    The company went public during 1986.\n    Entourage also said it has started marketing a solid\nperfume packaged in a lipstick tube called \"Amadeus,\" retailing\nat 15 dlrs.\n    The compa [...]
+'&lt;MR. JAX FASHIONS INC> YEAR FEB 28 NET Shr 58 cts vs 29 cts\n    Net 3,141,000 vs 1,440,000\n    Sales 24.7 mln vs 13.0 mln\n Reuter\n&#3;',0
+'F.W. WOOLWORTH CO SAYS IT HIKES DIVIDEND TO 33 CTS A SHARE FROM 28 CTS\n ',0
+'F.W. WOOLWORTH CO &lt;Z> HIKES DIVIDEND Qtly div 33 cts vs 28 cts prior\n    Pay June 1\n    Record May 1\n Reuter\n&#3;',0
+'DUTCH SUGAR BEET PLANTING HALF FINISHED Roughly half of this year\'s expected\n130,000 hectare Dutch sugar beet crop is already in the ground,\na spokesman for Suiker Unie, the largest sugar processor in the\nNetherlands, told Reuters.\n    Conditions are generally good and the average sowing date\nfor the crop is expected to be around April 11, against April\n23 last year, and a 10-year average of April 14, the spokesman\nadded.\n    \"It is far too early yet to say what kind of output [...]
+'J.P. MORGAN AND CO INC 1ST QTR SHR 1.22 DLRS VS 1.28 DLRS\n ',0
+'EC COMMISSION DETAILS SUGAR TENDER The EC Commission confirmed it granted\nexport licences for 118,350 tonnes of current series white\nsugar at a maximum export rebate of 46.496 European Currency\nUnits (ECUs) per 100 kilos.\n    Out of this, traders in France received 34,500 tonnes, in\nthe U.K. 37,800, in West-Germany 20,000, in Belgium 18,500, in\nSpain 5,800 and in Denmark 1,750 tonnes.\n REUTER\n&#3;',0
+'VOLKSWAGEN DIVIDEND DECISION DUE TOMORROW Volkswagen AG &lt;VOWG.F>,\nVW, is due to make a formal announcement about its 1986\ndividend tomorrow after saying the 1985 level of 10 marks per\nordinary share would be held, despite massive losses because of\na suspected foreign currency fraud.\n    A spokesman said VW\'s supervisory board will meet tomorrow\nto discuss the payout.  A statement will be made afterwards.\n    VW has also said disclosed profits for 1986 will reach\ntheir 1985 l [...]
+'CITYTRUST BANCORP INC &lt;CITR> 1ST QTR NET Shr 1.40 dlrs vs 1.16 dlrs\n    Net 5,776,000 vs 4,429,000\n    Avg shrs 4,132,828 vs 3,834,117\n Reuter\n&#3;',0
+'SOUTHMARK &lt;SM> ACQUIRES 28 NURSING HOMES Southmark Corp said it acquired 28\nlong-term care facilities containing for approximately 70 mln\ndlrs in cash.\n    It said the facilities, which contain approximately 2,500\nbeds in seven western states, were bought from Don Bybee and\nAssociates, of Salem,Ore.\n    The acquistion brings to 57 health care facilities acquired\nin the last three months, the company said.\n Reuter\n&#3;',0
+'J.P. MORGAN AND CO INC &lt;JPM> 1ST QTR NET shr 1.22 dlrs vs 1.28 dlrs\n    net 226.4 mln vs 233.9 mln\n    assets 80.45 billion vs 70.23 billion\n    loans 35.16 billion vs 35.99 billion\n    deposits 45.22 billion vs 39.68 billion\n    return on assets 1.14 pct vs 1.35 pct\n    return on common equity 18.20 pct vs 22.08 pct\n    NOTE: 1987 qtr net was reduced by 20 mln dlrs because 1.3\nbillion dlrs of loans to Brazil were placed on non-accrual.\n    loan loss provision 35 mln dlrs vs [...]
+'FIRSTBANC CORP OF OHIO &lt;FBOH> 1ST QTR NET Shr 74 cts vs 67 cts\n    Net 8,067,000 vs 7,317,000\n   \n Reuter\n&#3;',0
+'MAYFAIR SUPER MARKETS INC &lt;MYFRA> 2ND QTR NET Qtr ends Feb 28\n    Shr Class A 61 cts vs 48 cts\n    Shr Class B 59 cts vs 46 cts\n    Net 2,358,000 vs 1,876,000\n    Revs 122,508,000 vs 105,871,000\n    Six mths\n    Shr Class A 1.15 dlrs vs 86 cts\n    Shr Class B 1.13 dlrs vs 84 cts\n    Net 4,485,000 vs 3,378,000\n    Revs 242,453,000 vs 210,117,000\n    NOTE: qtr and six mths prior figures reflect two-for-one\nstock split in August 1986.\n Reuter\n&#3;',0
+'HANOVER INSURANCE &lt;HINS> GET SPLIT APPROVAL Hanover Insurance Co said its\nstockholders approved a two-for-one stock split.\n    As a result of the split, Hanover said it increases the\nnumber of authorized shares of capital stock from 10.4 mln,\nhaving a par value of one dlr, to 20.9 mln, also having a par\nvalue of one dlr.\n    The stock split is payable April 30 to stockholders of\nrecord April 10, Hanover said.\n Reuter\n&#3;',0
+'NATIONAL GUARDIAN &lt;NATG> MAKES ACQUISITIONS National Guardian Corp said it\nhas acquired a number of security services companies recently,\nwith aggregate revenues of about 3,500,000 dlrs, for an\naggregate cost of about 2,700,000 dlrs.\n    It said it acquired guard service companies C.S.C. Security\nGaurd Service of Paramus, N.J., from Cartel Security\nConsultants Inc, the Guard Services Division of Security\nServices of America of Wayne, N.J., Capital Investigations and\nProtectiv [...]
+'UNIVERSAL MEDICAL &lt;UMBIZ> DISTRIBUTION SET Qtly distribution 7-1/2 cts vs 7-1/2 cts prior (excluding\n2-1/2 cts special)\n    Pay April 30\n    Record April 22\n    NOTE: Full name is Universal Medical Buildings L.P.\n Reuter\n&#3;',0
+'ZAMBIA DOES NOT PLAN RETAIL MAIZE PRICE HIKE The Zambian government has no immediate\nplans to follow last week\'s increase in the producer price of\nmaize with a hike in the retail price of maize meal, an\nofficial of the ruling party said.\n    Last December, a 120 pct increase in the consumer price for\nrefined maize meal, a Zambian staple, led to food riots in\nwhich at least 15 people died.\n    That price increase, which President Kenneth Kaunda later\nrevoked, followed pressure b [...]
+'WEDGESTONE REALTY &lt;WDG> ACQUISITION APPROVED Wedgestone Realty Investors Trust\nsaid shareholkders have approved the acquisition of its\nadvisor, Wedgestone Advisory Corp, for 600,000 shares.\n    It said completion is expected to take place April 10.\n Reuter\n&#3;',0
+'SUN &lt;SUN> CUTS HEATING OIL BARGE PRICE Sun Co\'s Sun Refining and Marketing Co\nsubsidiary said it is decreasing the price it charges contract\nbarge customers for heating oil in ny harbor by 0.50 cent a\ngallon, effective today.\n    The 0.50 cent a gallon price reduction brings Sun\'s heating\noil contract barge price to 50 cts a gallon, the company said.\n Reuter\n&#3;',0
+'FURTHER ARGENTINE COARSE GRAIN LOSSES FEARED Argentine grain producers adjusted\ntheir yield estimates for the 1986/87 coarse grain crop\ndownward in the week to yesterday after the heavy rains at the\nend of March and beginning of April, trade sources said.\n    They said sunflower, maize and sorghum production estimates\nhad been reduced despite some later warm, dry weather, which\nhas allowed a return to harvesting in some areas.\n    However, as showers fell intermittently after las [...]
+'DUTCH ADJUSTED UNEMPLOYMENT RISES IN MARCH Dutch seasonally adjusted unemployment\nrose in the month to end-March to a total 693,000 from 690,600\nat end-February, but was well down from 730,100 at end-March\n1986, Social Affairs Ministry figures show.\n    The figure for male jobless rose by 2,000 in the month to\n436,500 compared with 470,700 a year earlier. The figure for\nwomen was 256,500 at end-March against 256,100 a month earlier\nand 259,400 at end-March 1986.\n    On an unadju [...]
+' &#2;\nHARTMARX CORP &lt;HMX> BOOSTS DIVIDEND\n    CHICAGO, April 8 \n    Qtly div 25 cts vs 23 cts prior qtr\n    Pay 15 May\n    Record 1 May\n&#3;\n\n',0
+'TOP OFFICIALS ARRIVE AT TREASURY FOR G-5 TALKS Top officials of leading industrial\nnations arrived at the U.S. Treasury main building to begin a\nmeeting of the Group of Five.\n    Officials seen arriving by Reuter correspondents included\nWest German Finance Minister Gerhard Stoltenberg and Bundesbank\nPresident Karl Otto Poehl, French Finance Minister Edouard\nBalladur and his central banker Jacques de Larosiere.\n    Also seen arriving were Japanese Finance Minister Kiichi\nMiyazawa [...]
+'FED EXPECTED TO SET CUSTOMER REPURCHASES The Federal Reserve is expected to\nintervene in the government securities market to supply\ntemporary reserves indirectly via customer repurchase\nagreements, economists said.\n    Economists expect the Fed to execute 2.0-2.5 billion dlrs\nof customer repos to offset pressures from the end of the\ntwo-week bank reserve maintenance period today. Some also look\nfor a permanent reserve injection to offset seasonal pressures\nvia an outright purcha [...]
+'READER\'S DIGEST ASSOCIATION SELLS UNIT &lt;The Reader\'s Digest\nAssociation Inc> said it sold its subsidiary, Source\nTelecomputing Corp, to the venture capital firm of &lt;Welsh,\nCarson, Anderson and Stowe>.\n    The purchase price was not disclosed, Reader\'s Digest said.\n    It said it purchased an 80 pct stake in Source in 1980 and\nearned an unspecified profit on 14 mln dlrs in revenues in\n1986.\n Reuter\n&#3;',0
+'WEIS MARKETS INC &lt;WMK> 1ST QTR MARCH 28 NET Shr 59 cts vs 51 cts\n    Net 18.0 mln vs 15.6 mln\n    Revs 278.6 mln vs 272.2 mln\n Reuter\n&#3;',0
+'CONTINENTAL BANK INITIAL DISTRIBUTION APPROVED Continental Bank of Canada said\nshareholders approved a capital reorganization to allow an\ninitial payout by the end of May to common shareholders from\nlast year\'s 200 mln Canadian dlr sale of most Continental\nassets to &lt;Lloyds Bank PLC>\'s Lloyds Bank Canada.\n    The bank said the initial distribution would take the form\nof a stock dividend of cumulative redeemable retractable class\nA series two preferred shares entitling holder [...]
+'ATLAS CONSOLIDATED MINING AND DEVELOPMENT &lt;ACMB> 4th qtr\n    Shr loss 17 cts vs loss 22 cts\n    Net loss 14.5 mln vs loss 18.0 mln\n    Revs 27.3 mln vs 23.7 mln\n    Year\n    Shr 58 cts vs 1.01 dlrs\n    Net loss 48.3 mln vs loss 84.2 mln\n    Revs 111.7 mln vs 141.9 mln\n    NOTE: Atlas Consolidated Mining and Development Corp of\nManila.\n    Translated from Philippine pesos at 20.3489 pesos to dollar\nvs 18.5571 in quarter and 20.2315 vs 18.2743 in year.\n Reuter\n&#3;',0
+'SCI-MED &lt;SMLS> BOARD AGREES TO BRISTOL&lt;BMY>DEAL Sci-Med Life Systems Inc said\nits directors approved a previously proposed agreement of\nmerger with Bristol-Myers Co.\n    The proposed transaction is subject to completion of a due\ndiligence investigation, including a review by Bristol-Myers of\na patent infringement suit served on Sci-Med by Advanced\nCardiovascular Systems Inc on March 31, 1987.\n    Bristol-Myers has the right to call off the agreement under\ncertain circumsta [...]
+'FIDELCOR &lt;FICR> COMPLETES SALE OF UNIT Fidelcor Inc said it has completed\nthe sale of its Industrial Valley Title Insurance Co subsidiary\nto a group of investors including the unit\'s management for\nundisclosed terms.\n    Industrial Valley has assets of about 37.6 mln dlrs and was\nacquired last year along with IVB Financial Corp.\n Reuter\n&#3;',0
+'DATA TRANSLATION INC &lt;DATX> 1ST QTR FEB 28 NET Shr 18 cts vs 13 cts\n    Net 575,000 vs 379,000\n    Sales 6,625,000 vs 4,537,000\n    Avg shrs 3,173,000 vs 2,977,000\n Reuter\n&#3;',0
+'ENERGY/U.S. PETROCHEMICAL INDUSTRY Cheap oil feedstocks, the weakened U.S.\ndollar and a plant utilization rate approaching 90 pct will\npropel the streamlined U.S. petrochemical industry to record\nprofits this year, with growth expected through at least 1990,\nmajor company executives predicted.\n    This bullish outlook for chemical manufacturing and an\nindustrywide move to shed unrelated businesses has prompted GAF\nCorp &lt;GAF>, privately-held Cain Chemical Inc, and other firms\n [...]
+'FIDATA CORP &lt;FID> 4TH QTR LOSS Shr loss two cts vs profit 38 cts\n    Net loss 90,000 vs profit 1,685,000\n    Revs 1,826,000 vs 29.3 mln\n    Year\n    Shr profit 3.37 dlrs vs profit 46 cts\n    Net profit 15.0 mln vs profit 2,047,000\n    Revs 26.2 mln vs 123.6 mln\n    NOTE: Net includes pretax securities sale gain 10,000 dlrs\nvs loss 1,000 dlrs in quarter and gain 486,000 dlrs vs loss\n112,000 dlrs in year.\n    Net includes pretax gains on sale of businesses of nil vs\n4,656,00 [...]
+'MARBLE FINANCIAL CORP &lt;MRBL> 1ST QTR NET Oper shr 26 cts vs not given\n    Oper net 866,000 vs 480,000\n    NOTE: 1987 net excludes 157,000 dlr gain from termination\nof pension plan.\n    Company went public in August 1986.\n Reuter\n&#3;',0
+'DOMINION TEXTILE CALLS REPORT OF BID FOR BURLINGTON RUMOR\n ',0
+'RAYTHEON CO 1ST QTR SHR 1.37 DLRS VS 1.19 DLRS\n ',0
+'FLEET FINANCIAL GROUP 1ST QTR SHR 73 CTS VS 60 CTS \n ',0
+'DIEBOLD INC &lt;DBD> DECLARES DIVIDEND Qtly div 30 cts vs 30 cts prior\n    Pay June 8\n    Record May 18\n Reuter\n&#3;',0
+'INDEPENDENT BANK CORP &lt;IBCP> REGULAR DIVIDEND Qtly div 10 cts vs 10 cts previously\n    Pay April 20\n    Record April 10\n Reuter\n&#3;',0
+'RAYTHEON CO &lt;RTN> 1ST QTR NET Shr 1.37 dlrs vs 1.19 dlrs\n    Net 101.8 mln vs 92.3 mln\n    Revs 1.750 billion vs 1.725 billion\n    Avg shrs 74.2 mln vs 77.8 mln\n Reuter\n&#3;',0
+'WALTHAM SAVINGS BANK &lt;WLBK> INITIAL DIVIDEND Qtly div eight cts vs N.A.\n    Payable May 11\n    Record April 24\n Reuter\n&#3;',0
+'FLEET FINANCIAL GROUP &lt;FLT> 1ST QTR NET Shr primary 73 cts vs 60 cts\n    Shr diluted 70 cts vs 58 cts\n    Net 38,528,000 vs 31,680,000\n    Avg shares 52,087,634 vs 51,294,652\n    NOTE: Qtr net interest income is 130.7 mln dlrs vs 114.8\nmln dlrs. Earnings per share reflects two-for-one common stock\nsplit on March 15.\n Reuter\n&#3;',0
+'DOMINION CALLS BURLINGTON &lt;BUR> REPORT RUMOR &lt;Dominion Textile Inc> considers a\npublished report that it has bought a stake in Burlington\nIndustries Inc and is considering making a joint bid for the\ncompany to be a rumor, a company spokesman said.\n    \"As far as I am concerned and the company is concerned, they\nare rumors and we\'re not commenting on rumors,\" spokesman Michel\nDufour told Reuters in response to a query.\n    \"All the information that has been given out pub [...]
+'FED SETS OVERNIGHT SYSTEM REPURCHASES, FED SAYS\n ',0
+'RAYTHEON &lt;RTN> NET RISES ON OPERATIONS Raytheon said a 10 pct rise in\nits first quarter net to 101.8 mln dlrs reflected improved\noperations and a lower effective tax rate.\n    The company said revenue gains in electronics, major\nappliances and other lines were offset by decreases in energy\nservices and aircraft products. Revenues in the quarter rose\n1.4 pct to 1.75 billion dlrs, it said.\n    The company said backlog stood at 7.520 billion dlrs, down\nfrom 7.912 billion dlrs a  [...]
+'GENERAL INSTRUMENT CORP &lt;GRL> 4TH QTR LOSS Ended Feb 28\n    Shr loss 2.80 dlrs vs profit 17 cts\n    Net loss 90.5 mln vs profit 5,271,000\n    Revs 240.9 mln vs 159.4 mln\n    Year\n    Shr loss 2.49 dlrs vs loss 2.07 dlrs\n    Net loss 80.4 mln vs loss 66.5 mln\n    Revs 787.9 mln vs 612.4 mln\n    NOTE: Includes loss of 89.6 mln dlrs vs loss 14.5 mln dlrs\nin year and loss of 91.6 mln dlrs in current qtr from\ndiscontinued operations.\n    1986 qtr includes pretax gain of five ml [...]
+'COCOA EXPORTERS EXPECTED TO LIMIT SALES Major cocoa exporters are likely to\nlimit sales in the weeks ahead in an effort to boost world\nprices, sources close to a meeting of the Cocoa Producers\nAlliance (CPA) said.\n    The sources said the depressed world market had been one of\nthe main topics discussed in a closed door meeting of the\n11-member CPA which began on Monday.\n    They said producers agreed that cutting sales would aid the\nbuffer stock manager of a new international co [...]
+'FED ADDS RESERVES VIA OVERNIGHT REPURCHASES The Federal Reserve entered the U.S.\nGovernment securities market to arrange overnight System\nrepurchase agreements, a Fed spokesman said.\n    Dealers said that Federal funds were trading at 6-3/8 pct\nwhen the Fed began its temporary and direct supply of reserves\nto the banking system.\n Reuter\n&#3;',0
+'HONDURAS SEEKING PL-480 BULK WHEAT APRIL 13 Honduras will tender April 13 under\nPublic Law 480 for approximately 52,500 tonnes of various\nwheats in bulk, an agent for the country said.\n    The agent said Honduras is seeking U.S. no. 2 or better\nnorthern spring/DNS, with 14 pct protein minimum and 13 pct\nmoisture maximum, and U.S. no. 2 or better hard red winter,\nwith 12 pct protein minimum and 13 pct moisture maximum.\n    The agent said NS/DNS laydays include July 1-10 for\n7,500 [...]
+'J.P. MORGAN &lt;JPM> NET HURT BY BRAZIL, TRADING J.P. Morgan and Co Inc said its\nfirst-quarter earnings fell by 3.2 pct, largely reflecting its\npreviously announced decision to place on non-accrual status\nits 1.3 billion dlrs of medium- and long-term loans to Brazil.\n    That decision, spurred by Brazil\'s suspension of interest\npayments on February 20, reduced the quarter\'s net income by 20\nmln dlrs to 226.4 mln dlrs, compared with 233.9 mln in the\nfirst three months of 1986.\n [...]
+'ATLAS CONSOLIDATED MINING &lt;ACMB> 4TH QTR Shr loss 17.3 cts vs 21.5 cts\n    Net loss 14.5 mln vs loss 18.0 mln\n    Revs 27.3 mln vs 23.7 mln\n    Year\n    Shr loss 58 cts vs loss 1.01 dlrs\n    Net loss 48.3 mln vs loss 84.2 mln\n    Revs 111.7 mln vs 141.9 mln\n Reuter\n&#3;',0
+'BRAZIL GRAIN HARVEST FACES STORAGE PROBLEMS Storage problems with Brazil\'s record\ngrain crop are likely to result in losses of about five mln\ntonnes, an Agriculture Ministry spokesman said.\n    Ministry spokesman Leonardo Brito, speaking from Brasilia,\ntold Reuters he believed that about five mln tonnes of this\nyear\'s estimated crop of 65 mln tonnes would be lost.\n    He said part of this would be the normal loss inevitable in\nharvesting, but that most of it would stem from sto [...]
+'FLEET &lt;FLT> SHAREHOLDERS APPROVE SHARE INCREASE Fleet Financial Group said its\nshareholders approved an increase in shares of the company\'s\nauthorized common stock to 100,000,000 shares from 75,000,000\nshares currently.\n    The company said shareholders approved the move at the\nannual meeting in Providence today when the company reported\nthat its first quarter earnings rose to 38.5 mln dlrs, or 73\ncts a share, from 31.7 mln dlrs, or 60 cts a share, in the\nfirst quarter 1986. [...]
+'ROWE FURNITURE CORP &lt;ROWE> 1ST QTR FEB 28 Shr 42 cts vs 35 cts\n    Net 854,000 vs 839,000\n    Revs 23.2 mln vs 21.9 mln\n Reuter\n&#3;',0
+'REUTERS CHAIRMAN URGES FREER INFORMATION FLOWS Exchanges and telecommunications\nauthorities should abolish their restrictions on full and free\ndissemination of information to the investment and banking\ncommunities, Reuters Holdings Plc &lt;RTRS.L> chairman Sir\nChristopher Hogg said.\n    In the 1986 annual repoprt, he said lengthy negotiations\nhad brought agreement with the Tokyo and London Stock Exchanges\nfor fuller, but still not complete, access to market data\nthrough Reuter s [...]
+'CCL INDUSTRIES PURCHASES STAKE IN MONOBLOC &lt;CCL Industries Inc> said it purchased a\nmajority interest in Monobloc U.S.A. from Envases Metalurgicos\nde Alava of Spain.\n    Terms were not disclosed.\n    CCL also said it agreed to exchange present and future\ntechnology with Envases.\n Reuter\n&#3;',0
+'PARIS GROUP PUBLISHING DAILY FRANC TIN PRICE The Association of White Metals has\ndecided to publish a daily tin price here in French francs per\n100 kilos, the French Federation of Non-Ferrous Metals said.\n    The price, quoted for the first time yesterday, was\nintroduced as the lack of tin quotes was causing problems for\nsome French companies, a spokesman for the non-ferrous metals\nassociation said.\n    Today\'s price was set at 4,776 francs per 100 kilos and\nTuesday\'s at 4,790 [...]
+'RHODES INC &lt;RHD> DECLARES DIVIDEND Qtly div nine cts vs nine cts prior\n    Pay July 15\n    Record June 15\n Reuter\n&#3;',0
+'MADEIRA IN LETTER OF INTENT TO BE ACQUIRED &lt;Madeira Inc> said it\nsigned a letter of intent to be acquired by Tradevest Inc\nthrough a stock-for-stock exchange.\n    After completion of the transaction, Tradevest would own 90\npct of the issued outstanding stock of Madeira.\n Reuter\n&#3;',0
+'CELLTRONICS &lt;CELT> DECLARES ONE-FOR-10 SPLIT Celltronics Inc said its directors\ndeclared a one-for-10 reverse stock split of its common stock.\n    It said the split will be payable April 17 to shareholders\nof record April 16.\n Reuter\n&#3;',0
+'MONTEDISON\'S AGRIMONT UNIT 1986 EARNINGS &lt;Montedison SPA> of Italy said net\nconsolidated profit for its Agrimont Group, formed in June\n1986, totalled 1.5 billion lire in 1986.\n    Agrimont SPA, the holding company for Montedison\'s\nAgro-Industrial businesses, had sales of 810 billion lire and a\nnet profit of about 1.1 billion lire, after amortization costs\nof 35 billion lire and a 13 billion lire reduction in the value\nof inventory due to falling market prices, Montedison sai [...]
+'DATRON &lt;DATR> AGREES TO BUYOUT BY OFFICERS Datron Corp said it agreed to\nmerge with GGFH Inc, a Florida-based company formed by the four\ntop officers of the company.\n    According to terms of the proposed transaction, each share\nof Datron common stock, excluding those shares owned by the\nfour officers, will be bought for six dlrs a share, it said.\n    Datron\'s officers hold about 73 pct of the total 896,000\nDatron common shares outstanding.\n    Upon completion of the propose [...]
+'TRUMP AND INTERSTATE PROPERTIES IN TALKS TO ACQUIRE ALEXANDERS\n ',0
+'SOUND WAREHOUSE INC &lt;SWHI> 3RD QTR FEB 28 NET Shr 26 cts vs 52 cts\n    Net 1,386,000 vs 2,773,000\n    Revs 47.7 mln vs 38.5 mln\n    Nine mths\n    Shr 52 cts vs 97 cts\n    Net 2,765,000 vs 5,419,000\n    Revs 116.9 mln vs 97 mln\n Reuter\n&#3;',0
+'TRUMP AND INTERSTATE IN TALKS FOR ALEXANDERS Donald Trump and Interstate Properties\nsaid they were holding preliminary discussions regarding a\npossible joint acquisition of Alexanders Inc at 47 dlrs per\nshare.    \n    The possible acquisition is subject to any applicable real\nestate gains and transfer taxes, the joint statement said.\n    Trump and Interstate, which presently own about 40 pct of\nAlexander\'s common stock, said they intend to keep the company\nas a retailer if they [...]
+'JAPAN BUYS 4,000 TONNES CANADIAN RAPESEED Japan bought 4,000 tonnes of Canadian\nrapeseed overnight at an undisclosed price for last half\nMay/first half June shipment, trade sources said.\n Reuter\n&#3;',0
+'TELECRAFTER CORP &lt;SWHI> 2ND QTR FEB 28 NET Shr profit 12 cts vs loss 14 cts\n    Net profit 183,000 vs loss 234,000\n    Revs 2.4 mln vs 1.5 mln\n    Six months\n    Shr profit 22 cts vs loss 22 cts\n    Net profit 345,000 vs loss 358,000\n    Revs 5.2 mln vs 2.9 mln\n    NOTE:1987 2nd qtr and six months include gains of 78,000\ndlrs and 154,000 dlrs for tax loss carryforward.\n Reuter\n&#3;',0
+'TUNISIA EXPECTED TO TENDER FOR FRENCH WHEAT Tunisia is expected to tender April 14 for\n100,000 tonnes of French soft wheat for delivery between May\nand August and which would be covered by the French export\ncredit agency, COFACE, export credits, traders said here.\n    No official tender has been announced yet by Tunisia, they\nsaid.\n    France has sold a total of 200,000 tonnes of soft wheat to\nTunisia since the begining of the current campaign which was\ncovered by COFACE export  [...]
+'COLT INDUSTRIES INC &lt;COT> 1ST QTR NET Shr 28 cts vs 16 cts\n    Net 9,387,000 vs 25,617,000\n    Revs 410.1 mln vs 393.5 mln\n    Avg shrs 35.4 mln vs 164.7 mln\n    NOTE: 1987 net reflects interest expense on debt incurred\nto finance recapitalization in Oct. 1986. Prior year earnings\nrestated to reflect recapitalization plan.\n Reuter\n&#3;',0
+'YANKEE &lt;YNK> UNIT NOT TO SELL SUBSIDIARY Yankee Cos Inc said its Eskey\nInc &lt;ESK> subsidiary has decided not to sell its Yale E. Key\nunit.\n    Further details were not disclosed.\n Reuter\n&#3;',0
+'MAYFAIR SUPER MARKETS INC &lt;MYFRA> 2ND QTR FEB 28 Shr 59 cts vs 46 cts\n    Net 2.4 mln vs 1.9 mln\n    Revs 122.5 mln vs 105.9 mln\n    Six months\n    Shr 1.13 dlrs vs 84 cts\n    Net 4.5 mln vs 3.4 mln\n    Revs 242.5 mln vs 210.1 mln\n    NOTE: 1986 share adjusted for 2-for-1 stock split.\n Reuter\n&#3;',0
+'&lt;BATON BROADCASTING INC> SIX MTHS FEB 28 NET Shr 33 cts vs 31 cts\n    Net 9,219,017 vs 8,515,539\n    Revs 112.0 mln vs 95.4 mln\n Reuter\n&#3;',0
+'UNITED CABLE TELEVISION CORP &lt;UCT> 3RD QTR NET Shr loss 24 cts vs profit seven cts\n    Net loss 5,952,000 vs profit 2,078,000\n    Revs 55.9 mln vs 50.6 mln\n    Avg shrs 25.2 mln vs 24.7 mln\n    Nine mths\n    Shr loss 11 cts vs profit 24 cts\n    Net loss 2,673,000 vs profit 6,800,000\n    Revs 162.6 mln vs 143.9 mln\n    Avg shrs 25.0 mln vs 24.4 mln\n    NOTE: Current year net both periods includes pretax charge\nseven mln dlrs from increase in reserve for investments in\nbroad [...]
+'CANADA ALLOWS PUBLISHING TAKEOVER BY HARCOURT Investment Canada said it has allowed the\nindirect takeover of Holt, Rinehart and Winston Canada Ltd.,\nW.B. Saunders Co of Canada Ltd and Les Editions HRW Ltd by\nHarcourt Brace Jovanovich Canada Inc.\n    The government agency said, however, Harcourt Canada has\nagreed to sell control of the firms to Canadian interests\nwithin two years.\n    Harcourt Canada\'s U.S. parent, Harcourt Brace Jovanovich\nInc &lt;HBJ>, indirectly acquired the  [...]
+'TALKING POINT/BURLINGTON INDUSTRIES &lt;BUR> The largest U.S. textile maker focused\non its own business as its competitors found merger partners,\nbut now Burlington Industries Inc may have restructured itself\ninto an attractive takeover candidate, analysts said.\n    The takeover spotlight fell today on Burlington, which rose\n4-7/8 to 52-7/8 on speculation that investor Asher Edelman and\nDominion Textiles Inc of Canada bought an almost five pct\nstake.\n    A published report said  [...]
+'STERIVET LABORATORIES LTD &lt;STVTF> 1ST QTR NET Shr profit 10 cts vs loss 17 cts\n    Net profit 206,000 vs loss 281,000\n    Revs 1,022,00 vs 344,000\n Reuter\n&#3;',0
+'STERIVET LABORATORIES LTD &lt;STVTF> YEAR LOSS Shr loss 48 cts vs loss 19 cts\n    Net loss 746,000 vs loss 342,000\n    Revs 3,213,000 vs 2,925,000\n Reuter\n&#3;',0
+'JAPAN IN LAST-DITCH EFFORT TO AVERT TARIFFS Senior Japanese officials tomorrow\nopen talks with American trade negotiators in a last-ditch\neffort to avert new high U.S. tariffs to be imposed on a wide\nvariety of Japanese electronic exports.\n    Makoto Kuroda, vice minister of Japan\'s Ministry of\nInternational Trade and Industry (MITI), is to hold two days of\nmeetings with the Deputy U.S. Trade Representative, Michael\nSmith, and the Under Secretary of Commerce, Bruce Smart.\n    T [...]
+'HOECHST CELANESE SENDS REPORT ON NEW FACILITIES &lt;Hoechst Celanese Corp> said it\nsent propsective customers a confidential report describing its\npolyester textile fiber facilities in North Carolina and South\nCarolina.\n    The company did not disclose any prices.\n    The report describes the facilities in Darlington County,\nS.C., and Fayetteville, N.C., the company said. The report also\ndecribes related manufacturing, marketing, administrative and\ntechnical resources that could [...]
+'MELLON PARTICIPATING MORTGAGE TRUST &lt;MPMTS> DIV Qtly div 25 cts vs 25 cts prior\n    Payable May 6\n    Record April 24\n Reuter\n&#3;',0
+'U.K. GEC DECLINES COMMENT ON U.S. PURCHASE RUMOUR General Electric Co Plc &lt;GECL.L> (GEC)\ndeclined comment on rumours on the London stock market that it\nis planning another purchase in the U.S. Medical equipment\nfield, in addition to its existing U.S. Subsidiary &lt;Picker\nInternational Inc>.\n    A GEC spokesman said that it is company policy not to\ncomment on acquisition rumours.\n    Stock Exchange traders said the rumour helped GEC\'s share\nprice to rise 5p, to a final 206p  [...]
+'PRESTON CORP &lt;PTRK> SEES FIRST QUARTER LOSS Preston corp said it expects to\nreport a loss of about 300,000 dlrs or five cts per share for\nthe first quarter, compared with a profit of 1,081,000 dlrs or\n19 cts per share a year before.          \n    The trucking company attributed the loss to the continued\nrate of discounted in its primary markets, flat revenues and\nincreased costs, including uninsured claims expense resulting\nfrom adverse weather conditions during the last three [...]
+'WHITE HOUSE STANDING FIRM ON JAPANESE SANCTIONS Presidential spokesman Marlin\nFitzwater said U.S. trade sanctions against Japan were likely\ntake effect on April 17 in spite of a \"full court press\" by\nJapanese officials to avoid them.\n    \"All indications are they will take effect,\" he said.\n    \"I would say Japan is applying the full court press ... They\ncertainly are putting both feet forward in terms of explaining\ntheir position,\" Fitzwater told reporters.\n    He noted h [...]
+'DOW JONES AND CO INC FIRST QUARTER SHR 69 CTS VS 64 CTS\n ',0
+'&lt;HAYES-DANA INC> 1ST QTR NET Shr 30 cts vs 28 cts\n    Net 5,000,000 vs 4,600,000\n    Revs 125.2 mln vs 123.9 mln\n    Note: 52 pct-owned by Dana Corp &lt;DCN>.\n Reuter\n&#3;',0
+'COCOA TERMINAL DEPOSITS TO BE CUT 25 PCT - ICCH The basic deposit on cocoa futures\ncontracts will be reduced by 25 pct as from Friday, April 10,\ntaking the required deposit for one 10 tonne lot to 300 stg\nfrom 400 previously, a spokesman for the International\nCommodity Clearing House (ICCH) said.\n    The deposit for spread contracts will be similarly cut, to\n150 stg for a one 10 tonne lot from 200 previously, he said.\n    The ICCH had been looking at cocoa market fluctuations ove [...]
+'ELECTRO RENT CORP &lt;ELRC> 3RD QTR FEB 28 NET Shr 20 cts vs 32 cts\n    Net 1,358,000 vs 2,476,000\n    Revs 27.1 mln vs 26.2 mln\n    Nine Mths\n    Shr 68 cts vs 1.05 dlrs\n    Net 4,957,000 vs 8,129,000\n    Revs 82.6 mln vs 78.8 mln\n Reuter\n&#3;',0
+'WALGREEN CO 2ND QTR SHR 62 CTS VS 58 CTS\n ',0
+'JUDY\'S INC &lt;JUDY> 4TH QTR JAN 31 LOSS Shr loss two cts vs profit nine cts\n    Net loss 74,000 vs profit 418,000\n    Sales 18.2 mln vs 17.5 mln\n    Year\n    Shr profit nine cts vs profit 26 cts\n    Net profit 426,000 vs profit 1,170,000\n    Sales 58.7 mln vs 56.7 mln\n Reuter\n&#3;',0
+'ORANGE-CO INC &lt;OJ> 2ND QTR FEB 28 NET Shr profit 2.26 dlrs vs loss 81 cts\n    Net profit 9,785,000 vs loss 3,422,000\n    Revs 26.0 mln vs 18.9 mln\n    Avg shrs 4,316,000 vs 4,207,000\n    1st half\n    Shr profit 2.75 dlrs vs loss 1.07 dlrs\n    Net profit 11.9 mln vs loss 4,486,000\n    Revs 39.0 mln vs 37.2 mln\n    Avg shrs 4,318,000 vs 4,181,000\n    NOTE: Current year net both periods includes gain 9,500,000\ndlrs from sale of Orange-Co of Florida subsidiary to American\nAgrn [...]
+'DOW JONES AND CO INC &lt;DJ> 1ST QTR NET Shr 69 cts vs 64 cts\n    Net 66,719,000 vs 61,773,000\n    Rev 285.6 mln vs 259.7 mln\n    NOTE: Earnings include after-tax gain of 29.4 mln dlrs, or\n30 cts a share, versus after-tax gain of 31.4 mln dlrs, or 32\ncts a share, for 1986 first quarter. Earnings per share\nreflects a 50 pct stock dividend in the form of a class B\ncommon stock distribution on June 30, 1986.\n   \n Reuter\n&#3;',0
+'LORD ABBETT AND CO MUTUAL FUND DIVIDENDS LORD ABBETT BOND DEBENTURE FUND\n    Qtly div 28 cts vs 29 cts prior\n    Pay May 5\n    Record April 9\n    ---\n    LORD ABBETT U.S. GOVERNMENT SECURITIES FUND\n    Daily div 2.9 cts vs 2.9 cts prior\n    Pay May 15\n    Record May 15\n    LORD ABBETT TAX FREE INCOME FUND NATIONAL SERIES\n    Daily div 6.7 cts vs 6.7 cts prior\n    Pay May 15\n    Record May 15\n    ---\n    LORD ABBETT TAX FREE INCOME NEW YORK SERIES\n    Daily div 6.7 cts vs  [...]
+'HEINEKEN SEES HIGHER PROFITS, WIDER PENETRATION Dutch brewer Heineken NV said it hoped\nto maintain for a number of years a similar earnings growth to\nthe 7.5 pct increase in net profit achieved in 1986, despite\ncontinuing investments in a reorganization program and efforts\nto extend world penetration.\n    Heineken last month reported a 1986 net profit of 285 mln\nguilders, after 265 mln in 1985.\n    Chairman Freddie Heineken said the company, Europe\'s\nleading beer producer with  [...]
+'WALGREEN CO &lt;WAG> VOTES QUARTERLY DIVIDEND Qtly div 13-1/2 cts vs 12-1/2 cts prior qtr\n    Pay 12 June\n    Record 21 May\n Reuter\n&#3;',0
+'COLOMBIA BUSINESS ASKED TO DIVERSIFY FROM COFFEE A Colombia government trade official has\nurged the business community to aggressively diversify its\nactivities and stop relying so heavily on coffee.\n    Samuel Alberto Yohai, director of the Foreign Trade\nInstitute, INCOMEX, said private businessmen should not become\nwhat he called \"mental hostages\" to coffee, traditionally\nColombia\'s major export.\n    The National Planning Department forecast that in 1987\ncoffee will account  [...]
+'TURKEY CALLS FOR DIALOGUE TO SOLVE DISPUTE Turkey said today its disputes with\nGreece, including rights on the continental shelf in the Aegean\nSea, should be solved through negotiations.\n    A Foreign Ministry statement said the latest crisis between\nthe two NATO members stemmed from the continental shelf dispute\nand an agreement on this issue would effect the security,\neconomy and other rights of both countries.\n    \"As the issue is basicly political, a solution can only be\nfo [...]
+'FRONTIER INSURANCE &lt;FRTR> IN ACQUISITION TALKS Frontier Insurance Group Inc\nsaid it is currently negotiating to acquire the business of\nMedical Quadrangle Inc, formerly its largest medical\nmalpractice insurance producer, and the business of its other\nmalpractice producer, Medical Professional Liability Agency\nInc.\n    It gave no details.\n Reuter\n&#3;',0
+'FRONTIER INSURANCE GROUP INC &lt;FRTR> 4TH QTR NET Oper shr 25 cts vs six cts\n    Oper net 840,000 vs 139,000\n    Revs 8,290,000 vs 4,743,000\n    Avg shrs 3,335,029 vs 2,400,000\n    Year\n    Oper shr 97 cts vs 53 cts\n    Oper net 2,546,000 vs 1,275,000\n    Revs 28.8 mln vs 18.5 mln\n    Avg shrs 2,635,665 vs 2,400,000\n    NOTE: Net excludes investment gain four cts shr vs loss six\ncts in quarter and gain five cts vs loss six cts in year.\n Reuter\n&#3;',0
+'GATT OFFICIAL MEETS WITH U.S. FARM LEADERS The official in charge of\nagricultural matters in the new round of global trade talks is\nin Washington today and tomorrow to meet with congressional and\nReagan administration officials.\n    Aart de Zeeuw, chairman of the General Agreement on Tariffs\nand Trade\'s negotiating group on agriculture, met this morning\nwith members of the House Agriculture Committee.\n    Committee sources said De Zeeuw expressed concern over\nprotectionism and  [...]
+'SOUTHINGTON SAVINGS BANK &lt;SSBB> 1ST QTR NET Shr 39 cts vs not given\n    Net 707,000 vs 505,000\n    NOTE: Company went public in July 1986.\n Reuter\n&#3;',0
+'CATERPILLAR INC &lt;CAT> VOTES QUARTERLY DIVIDEND Qtly div 12-1/2 cts vs 12-1/2 cts prior qtr\n    Pay 20 May\n    Record 20 April\n Reuter\n&#3;',0
+'CORRECTED - DATRON &lt;DATR> AGREES TO BUYOUT Datron Corp said it agreed to\nmerge with GGHF Inc, a Florida-based company formed by the four\ntop officers of the company.\n    According to terms of the proposed transaction, each share\nof Datron common stock, excluding those shares owned by the\nfour officers, will be converted into six dlrs a share, it\nsaid.\n    Datron\'s officers hold about 73 pct of the total 896,000\nDatron common shares outstanding, it said.\n(corrects company na [...]
+'WALGREEN CO &lt;WAG> 2ND QTR FEB 28 NET Shr 62 cts vs 58 cts\n    Qtly div 13-1/2 cts vs 13-1/2 cts prior\n    Net 38.8 mln vs 35.7 mln\n    Revs 1.18 billion vs one billion\n    Six mths\n    Shr 84 cts vs 86 cts\n    Net 52 mln vs 52.9 mln\n    Revs 2.14 billion vs 1.82 billion\n    NOTE: Results include charge of four cts shr for latest six\nmths vs credit of five cts shr for prior six mths from\ninvestment tax credit\n     Dividend payable June 12, record May 21\n Reuter\n&#3;',0
+'J.P. MORGAN&lt;JPM> SAYS DLR MAY PREVENT FED EASING The relatively high level of real U.S.\ninterest rates suggests that there is scope for further\ndeclines in money market rates, but the Federal Reserve is\nunlikely to promote such a drop as long as the dollar remains\nvolatile, said J.P. Morgan and Co Inc chairman Lewis Preston.\n    He said in response to a reporter\'s question after the\nbank\'s annual meeting that money market rates could decline\nfurther but, \"I don\'t think the [...]
+'MEDTRONIC &lt;MDT> SEES 15 PCT EARNINGS GROWTH Medtronic Inc said it sees 15 pct\ngrowth in sales and earnings for the year ending April 30,\n1988.\n    At an analysts meeting here the company said that for the\nyear ending April 30, 1987 it will earn about 73 mln dlrs, or\nabout 5.15-5.35 dlrs a share on sales of about 500 mln dlrs.\n    In the year ago period, the company earned 53.4 mln dlrs,\nor 3.65 dlrs a share, on sales of 402.8 mln dlrs.\n    Winston Wallin, Medtronic chairman,  [...]
+'SPIE BATIGNOLLES COULD INCREASE COMSTOCK HOLDING Construction group &lt;Spie Batignolles> is\nnegotiating to increase its holding in U.S. Engineering and\nelectrical installations firm &lt;Comstock>.\n    Spie Batignolles, a subsidiary of Schneider SA &lt;SCHN.PA>,\nsaid in a statement it was negotiating to invest 20 mln dlrs in\nComstock in the form of bonds convertible into shares.\n    Spie Batignolles has held a 20 pct stake in Comstock since\nFebruary 1986. A spokesman said if Spie [...]
+'TALKS CONTINUE ON TIN AGREEMENT EXTENSION Discussions on the possible extension of\nthe sixth International Tin Agreement (ITA) began at the\nquarterly session of the International Tin Council (ITC) but\nthe Council is still waiting for decisions from various member\nstates.\n    A number of producer governments in particular have not\ndecided their final position on whether the ITA should be\nextended for up to two years or wound down after it expires on\nJune 30, according to delegate [...]
+'PAKISTAN COTTON CROP SEEN RECORD 7.6 MLN BALES Pakistan is likely to produce a record\n7.6 mln bales (375 lbs each) of cotton from the current 1986/87\ncrop, exceeding a target of 7.2 mln bales, Food and Agriculture\nMinister Mohammad Ibrahim Baluch said.\n    He told a Pakistan Central Cotton Committee meeting here\nthe present was the third consecutive poroduction\nrecord-setting year and said the momentum would be accelerated\nin the future, the official APP news agency reported.\n   [...]
+'TRANZONIC COS &lt;TNZ> 4TH QTR FEB 28 NET Shr 54 cts vs 24 cts\n    Net 633,300 vs 300,859\n    Sales 15.2 mln vs 13.0 mln\n    Avg shrs 1,165,047 vs 1,224,982\n    Year\n    Shr two dlrs vs 1.64 dlrs\n    Net 2,379,400 vs 2,011,924\n    Sales 58.6 mln vs 54.0 mln\n    Avg shrs 1,187,828 vs 1,223,511\n Reuter\n&#3;',0
+'SECURITY PACIFIC EXPECTS BRAZIL LOAN ACTION TO CUT NET BY 7.2 MLN DLRS\n ',0
+'WHITE HOUSE SAYS JAPANESE TARRIFFS LIKELY The White House said high U.S.\nTariffs on Japanese electronic goods would likely be imposed as\nscheduled on April 17, despite an all-out effort by Japan to\navoid them.\n    Presidential spokesman Marlin Fitzwater made the remark one\nday before U.S. And Japanese officials are to meet under the\nemergency provisions of a July 1986 semiconductor pact to\ndiscuss trade and the punitive tariffs.\n    Fitzwater said: \"I would say Japan is applyin [...]
+'SHOWBOAT &lt;SBO> TO TAKE CHARGE, SEES 3RD QTR LOSS Showboat Inc will take a\ncharge of 19 to 20 mln dlrs pretax against results for the\nthird quarter ended March 31, director and assistant to the\npresident J. Kell Houssels III told Reuters.\n    He said the charge results from pre-operating expenses of\nits recently-opened Atlantic City, N.J., Showboat Hotel, Casino\nand Bowling Center and will cause a loss for the third quarter\nand probably for all of fiscal 1987 as well.\n    But  [...]
+'SECURITY PACIFIC &lt;SPC> LOANS PUT ON NON-ACCRUAL Security Pacific Corp said it is\nplacing medium and long-term loans to Brazil and Ecuador on a\nnon-accrual basis as of March 31, a move that will reduce first\nquarter earnings by 7.2 mln dlrs, or nine cts per share, after\ntaxes.\n    Despite the anticipated reduction to quarterly earnings,\nSecurity Pacific said it still expects to report first quarter\nearnings higher than the 88 mln dlrs, or 1.11 dlrs per share\nreported for the f [...]
+'IRAQI TROOPS REPORTED PUSHING BACK IRANIANS Iraq said today its troops were pushing\nIranian forces out of positions they had initially occupied\nwhen they launched a new offensive near the southern port of\nBasra early yesterday.\n    A High Command communique said Iraqi troops had won a\nsignificant victory and were continuing to advance.\n    Iraq said it had foiled a three-pronged thrust some 10 km\n(six miles) from Basra, but admitted the Iranians had occupied\nground held by the M [...]
+'GOLDEN ENTERPRISES INC &lt;GLDC> 3RD QTR FEB 28 NET Shr 15 cts vs nine cts\n    Qtly div six cts vs six cts in prior qtr\n    Net 2,002,261 vs 1,168,638\n    Revs 29.2 mln vs 29.3 mln\n    Avg shrs 13.1 mln vs 13.0 mln\n    Nine mths\n    Shr 49 cts vs 36 cts\n    Net 6,404,536 vs 4,623,295\n    Revs 92.2 mln vs 88.2 mln\n    Avg shrs 13.1 mln vs 13.0 mln\n    NOTE: Dividend is payable April 30 to holders of record\nApril 20\n Reuter\n&#3;',0
+'GROUP OF FIVE MEETING ENDS A meeting of finance ministers and\ncentral bankers of the Group of Five ended after nearly three\nand a half hours.\n    West German Finance Minister Gerhard Stoltenberg and\nBritish Chancellor of the Exchequer Nigel Lawson declined to\ncomment on the meeting as they emerged from the U.S. Treasury.\n    A European monetary official said the ministers of the\nGroup of Seven countries would gather at about three p.m. local\n(1900 GMT) at the Treasury.\n Reuter\ [...]
+'USDA TO PROPOSE FOREIGN MEAT INSPECTION RULE The U.S. Agriculture Department is\npreparing a proposal that would require all foreign meat\nproducts to be inspected at their point of arrival in the\nUnited States, a USDA official said.\n    Donald Houston, administrator of USDA\'s Food Safety and\nInspection Service, FSIS, told a House Agriculture subcommittee\nUSDA was developing a proposed change in regulations that would\nput an end to the current practice of permitting foreign meat\n [...]
+'UNION TEXAS OIL RESERVES DROPPED IN 1986 Union Texas Petroleum said its worldwide\nproved reserves fell to 511 mln barrels of oil equivalent at\nthe end of 1986 from 555 mln barrels reported in 1985.\n    In its newly released annual report, Union Texas said it\nreplaced about 71 pct of its production of 56 mln barrels of\noil equivalent last year after taking into account the sale of\n27 mln barrels of U.S. reserves.\n    Union Texas, the nation\'s largest independent oil and gas\nprod [...]
+'UAL &lt;UAL> MAY RESPOND TO PILOTS TODAY UAL Inc may have a response this\nafternoon to the pilots union proposal to buy its United\nAirlines unit, a UAL spokesman said.\n    \"Obviously, we have a lot of movement in our stock, and we\nneed to get a clarification out,\" the spokesman said, adding\nthat there was a \"50-50\" chance a statement would be released\ntoday.\n    The pilots earlier this week offered to buy the airline for\n2.3 billion dlrs, and assume 2.2 billion dlrs of exist [...]
+'HARTMARX &lt;HMX> TARGETS EARNINGS GROWTH Hartmarx Corp, following a year of\nrestructuring, continues to target record earnings for fiscal\n1987, Chairman John Meinert told the annual meeting.\n    Meinert reiterated an earlier comment that earnings for the\nremainder of the year must double the 1986 level to meet that\ngoal. In fiscal 1986, ended November 30, 1986, Hartmarx\nreported earnings of 24.8 mln dlrs, or 1.20 dlrs a share, down\nfrom the prior year\'s 42.7 mln dlrs, or 2.25 d [...]
+'FED\'S HELLER SEES RETURN TO SLOWER MONEY SUPPLY GROWTH\n ',0
+'GENERAL ELECTRIC CO 1ST QTR SHR 1.37 DLRS VS 1.18 DLRS\n ',0
+'GHANA TO BUY CRUDE OIL FROM IRAN Ghana will import 15,000 tonnes of crude\noil annually from Iran under an agreement reached in Tehran\ntoday, the Iranian news agency IRNA reported.\n    The agency, received in London, said the accord was reached\nbetween Iranian Oil Minister Gholamreza Aqazadeh and a visiting\nGhanaian delegation headed by Foreign Minister Obed Asamoah.\n    IRNA said that under the agreement, Iran will also provide\ntechnical and scientific assistance in manpower trai [...]
+'FED\'S HELLER SAYS MONETARY GROWTH TO BE SLOWER Robert Heller, a member of the\nFederal Reserve Board, said he expects \"more modest levels\" of\ngrowth in the money supply this year.\n    \"In my view, this would not only be a logical, but also a\nmost desireable development,\" he said in a speech prepared for\ndelivery to an economic forum at Chapman College in Orange,\nCalif.\n    A text was released in Washington.\n    He said the effect of lower inflation and financial\nderegulatio [...]
+'GENERAL ELECTRIC CO &lt;GE> 1ST QTR NET Shr 1.37 dlrs vs 1.18 dlrs\n    Net 624 mln vs 537 mln\n    Sales 8.32 billion vs 5.88 billion\n    NOTE: Prior year does not include results of RCA Corp.\n Reuter\n&#3;',0
+'ENERGY DEVELOPMENT &lt;EDP> HAD YEAR LOSS Energy Development Partners Ltd said\nit had an operating loss for the year ended December 31 of 2.4\nmln dlrs, or 40 cts per share.\n    But it said a 41.5 mln dlr non-cash writeoff of oil and gas\nproperties taken in the first quarter resulted in a net loss of\n43.9 mln dlrs, or 7.21 dlrs per share.\n    Energy Development Partners, is a limited partnership which\nbegan operating in September 1985.\n    Full year revenues totaled 23.7 mln dlrs [...]
+'INDUSTRIAL NATIONS RECONVENE FOR TALKS Financial ministers and central\nbankers of leading industrial nations reconvened here this\nafternoon.\n    Canadian Finance Minister Michael Wilson said on entering\nthe meeting the ministers would review the Paris agreement.\nAsked if he was satisfied with West German and Japanese\nstimulus, Wilson replied, \"They could do a little more.\"\n    French Finance Minister Edouard Balladur, meanwhile,\nconfirmed there would be a communique at the end [...]
+'U.S. MEAT, POULTRY INSPECTION CALLED FAULTY The U.S. meat and poultry inspection\nprograms are incapable of protecting consumers from\ncontaminated products, groups representing inspectors and\nconsumers charged.\n    \"The whole trend of inspection for the last 10 years has\nbeen to corrupt and to degrade the system where today the\npublic is at constant risk to contaminated and adulterated\nmeat,\" Kenneth Blaylock, president of the American Federation of\nGovernment Employees, told a [...]
+'CHRYSLER &lt;C> RENAULT DELAY AM MOTORS &lt;AMO> PACT Chrysler Corp and Regie Natiionale des\nUsines Renault said they agreed to extend by up to two weeks\nthe period for reaching definitive agreement on Chrysler\'s\nproposed 1.5 billion dlr takeover of American Motors Corp.\n    The letter of intent signed by Chrysler and Renault on\nMarch nine set April nine as the target date for completing\nnegotiations.\n    However, the letter also allowed room for an extension of\nthat date to Ap [...]
+'RITE AID CORP &lt;RAD> SETS DIVIDEND Qtly div 16-1/2 cts vs 16-1/2 cts\n    Pay April 27\n    Record April 20\n Reuter\n&#3;',0
+'AIRSENSORS INC &lt;ARSN> 3RD QTR JAN 31 LOSS Shr loss five cts vs loss six cts\n    Net loss 696,777 vs loss 598,095\n    Sales 472,812 vs 41,454\n    Nine mths\n    Shr loss 15 cts vs loss 17 cts\n    Net loss 2,194,482 vs loss 1,751,884\n    Sales 800,336 vs 151,884\n Reuter\n&#3;',0
+'CANADA PLANS TO MONITOR STEEL IMPORTS, EXPORTS, TRADE MINISTER SAYS\n ',0
+'GENERAL ELECTRIC &lt;GE> 1ST QTR HELPED BY RCA General Electric Corp said its\nfirst quarter results were significantly higher due to the\nstrong results of RCA, which was acquired last year.\n    General Electric also attibuted continued strong\nperformances in plastics, major appliances and the Employers\nReinsurance Corp for its strong quarter.\n    GE recorded net earnings for the first quarter 1987 of 624\nmln dlrs, or 1.37 dls per shr, up 16 pct from 537 mln dlrs, or\n1.18 dlrs pe [...]
+'TECK STILL IN TALKS ON B.C. COPPER VENTURE &lt;Teck Corp> said it\nwas continuing talks about joining a joint copper venture at\nHighland Valley, British Columbia, held by affiliates Cominco\nLtd &lt;CLT> and &lt;Lornex Mining Corp>, but did not know when\nnegotiations would be completed.\n    Teck vice-president of administration John Guminski said in\nreply to a query that the talks had been \"ongoing for a long\ntime.\" He declined to speculate on the outcome.\n    Cominco, 29.5 pct  [...]
+'BANPONCE CORP &lt;BDEP> 1ST QTR NET Shr 1.08 dlrs vs 1.00 dlr\n    Net 6,215,538 vs 5,757,013\n Reuter\n&#3;',0
+'XEBEC &lt;XEBC> TO REPORT 2ND QTR LOSS Xebec Corp said it expects to\nreport a loss for its second quarter ended April three, due\nprincipally to a decline in sales to International Business\nMachines Corp &lt;IBM>, the company\'s largest customer.\n    Xebec also said it expects revenues to total about 23 mln\ndlrs.\n    The company reported a second quarter loss last year of 1.9\nmln dlrs, or 14 cts per share, on 23.9 mln in revenues.\n    Xebec said IBM has historically accounted for [...]
+'CCC ACCEPTS EXPORT BID FOR WHEAT FLOUR TO IRAQ The Commodity Credit Corporation has\naccepted a bid for an export bonus to cover a sale of 12,500\ntonnes of wheat flour to Iraq, the U.S. AGriculture Department\nsaid.\n    The bonus awarded was 113.0 dlrs per tonne and will be paid\nto Peavey Company in the form of commodities from CCC stocks.\n    The wheat flour is for delivery May 15-June 15, 1987, the\ndepartment said.\n    An additional 162,500 tonnes of wheat flour are still\navail [...]
+'EGYPT AUTHORIZED TO BUY PL-480 WHEAT - USDA Egypt has been authorized to purchase\nabout 200,000 tonnes of U.S. wheat under an existing PL-480\nagreement, the U.S. Agriculture Department said.\n    It may buy the wheat, valued at 22.0 mln dlrs, between\nApril 15 and August 31, 1987, and ship it from U.S. ports by\nSeptember 30, the department said.\n Reuter\n&#3;',0
+'CATERPILLAR &lt;CAT> REAFFIRMS FIRST QUARTER OUTLOOK Caterpillar Inc, in remarks\ndelivered at its annual meeting in San Francisco, reiterated\nits expectation of a loss in the first quarter.\n    It said results would be hurt by a 25 mln dlr one-time\ncharge by Caterpillar Mitsubishi, a 50-pct owned affiliate. The\ncompany said it expected profit from operations for the full\nyear to improve over 1986.\n    In remarks prepared for delivery to shareholders, President\nPeter Donis said C [...]
+'BROKER BOOSTS ZONDERVAN &lt;ZOND> STAKE TO 7.1 PCT An investor group headed by\nMinneapolis, Minn., broker Jeffrey Wendel said it raised its\nstake in Zondervan Corp to 292,900 shares, or 7.1 pct of the\ntotal outstanding, from 238,900 shares, or 5.8 pct.\n    In a filing with the Securities and Exchange Commission,\nthe Wendel group said it bought 54,000 Zondervan common shares\nbetween March 24 and April 3 at prices ranging from 27.87 to\n29.96 dlrs a share.\n    The Wendel group has  [...]
+'KIENA TWO-FOR-ONE SHARE SPLIT APPROVED &lt;Kiena Gold Mines Ltd> said shareholders\napproved a previously reported proposed two-for-one common\nstock split.\n    Record date of the split will be April 21, Kiena said.\n Reuter\n&#3;',0
+'HANOVER INSURANCE &lt;HINS> RAISES DIVIDEND Hanover Insurance Co said its\nboard declared a quarterly dividend of nine cts per share\npayable May 15 to holders of record April 17.\n    The dividend comes after a two-for-one stock split,\neffective April 10, which was approved by shareholders today.\n    The company paid a dividend of 14 cts per share on a\npre-split basis.\n Reuter\n&#3;',0
+'DAY INT\'L &lt;DAY> TO SELL UNIT Day International Corp said it has\nentered into a letter of intent to sell its Allen Industries\nInc unit to a group including the unit\'s current management.\n    Day said the sale could enable Day to accelerate its\nearnings for its current fiscal year ending October 31, 1987.\n    \"Net earnings for the full year (ending October 31)\nshould be in the ball park of some analysts\' estimates of 16\nmln dlrs to 19 mln dlrs,\" Richard Jacob, Day chairman  [...]
+'RITE AID CORP &lt;RAD> SETS QUARTERLY DIVIDEND Qtly div 16.5 cts vs 16.5 cts\n    Pay April 27\n    Record April 20\n Reuter\n&#3;',0
+'SOUTH KOREA CORN IMPORTS MAY INCREASE - USDA South Korea\'s purchase of about 2.4\nmln tonnes of U.S. corn in the past six months -- close to\ndouble last year\'s total -- indicates that imports from the\nUnited States, as well as total imports are set for a dramatic\njump, the U.S. Agriculture Department said.\n    In its World Production and Trade Report, the department\nsaid total South Korea corn imports for the 1986/87 season\n(Oct-Sept) are estimated at 4.3 mln tonnes, with about  [...]
+'MEXICAN CATTLE IMPORTS TO BE BRANDED - USDA All steers imported into the United\nStates from Mexico must now be branded with the letter M on the\nright jaw, the U.S. Agriculture Department said.\n    In its World Production and Trade Report, the department\nsaid the branding is necessary to improve surveillance for\nbovine tuberculosis because it provides a permanent way to\nidentify Mexican steers.\n    The requirement is not expected to affect the number of\nMexican steers imported in [...]
+'VULCAN &lt;VUL> SEES FIRST QUARTER OPERATING LOSS Vulcan Corp\'s first quarter operating\nresults will show a loss, Chairman Lloyd I. Miller told told\nthe annual meeting.\n    The company reported a profit of 365,883 dlrs, 23 cts a\nshare, for the first quarter last year with one cent a share\ncoming from non-operating factors, a spokesman said.\n    Miller attributed the expected loss to completion of the\npurchase transfer and consolidation of operating assets of the\nO\'Sullivan Rub [...]
+'UAL &lt;UAL> HAS NO COMMENT ON STOCK RISE UAL Inc, citing company policy, told\nthe New York Stock Exchange it would not comment on the unusual\nrise in its stock.\n    UAL, parent of United Airlines, closed up 6-1/4 at 72 on\nvolume of 3.9 mln shares.\n    Wall Street traders said UAL\'s stock soared in response to\nthe the proposed 4.6 billion dlr buyout offer by United Air\'s\npilots union and on a general rise in air fares throughout the\nindustry.\n Reuter\n&#3;',0
+'STRATA CORP &lt;STATA> YEAR DEC 31 LOSS Shr loss 1.11 dlrs vs loss 1.53 dlrs\n    Net loss 7.1 mln vs loss 8.8 mln\n    Revs 3.1 mln vs eight mln\n Reuter\n&#3;',0
+'STRATA &lt;STATA> 1986 EARNINGS REPORT QUALIFIED Strata Corp said its 1986\nearnings report contained a qualified opinion from its\nindependent auditors.\n    Strata said it owed 1.4 mln dlrs in overdue interest to its\nlender at the end of 1986, and the entire 10.9 mln dlr\nprinciple has been classified as a liability.\n    The company, which has an agreement to merge with &lt;Lomak\nPetroleum Inc>, lost 7.1 mln dlrs in 1986 against a loss of 8.8\nmln dlrs a year earlier.\n Reuter\n&#3;',0
+'DAYTON HUDSON CORP &lt;DH> VOTES QUARTERLY PAYOUT Qtly div 23 cts vs 23 cts prior qtr\n    Pay 10 June\n    Record 20 May\n Reuter\n&#3;',0
+'VULCAN CORP &lt;VUL> REGULAR DIVIDEND Qtly div 20 cts vs 20 cts in prior qtr\n    Payable June 10\n    Record May 22\n Reuter\n&#3;',0
+'NAT\'L DISTILLERS SAYS IT AGREES TO SELL SPIRITS UNIT FOR 545 MLN DLRS TO AMERICAN BRANDS\n ',0
+'USDA SEEKS COMMENTS ON GRAIN DISCOUNT SCHEDULE The U.S. Agriculture Department is\nseeking public comments on the question of adjusting the\nCommodity Credit Corporation\'s (CCC) discount and premium\nschedules to improve the quality of grain it accepts as loan\ncollateral or under price support programs.\n    The premiums and discounts schedule are based on quality\nfactors such as moisture content and kernel damage. The\nschedule stipulates the premiums and discounts used for valuing\ [...]
+'CASCADE IMPORTERS UNIT ACQUIRES PARIS COMPANY &lt;Cascade Importers Inc USA>\'s\nCascade International Europa GmbH of West Germany, said it\ntentatively acquired worldwide rights for the products of Madam\nGre from the Bernard Tapie Group in Paris.\n    The agreement calls for Cascade to have the rights for the\nmanufacturing and trading of perfumes, skin care and treatment\nproducts, and cosmetics of the group, it said.\n    Cascade said the agreement also includes the exclusive\nright [...]
+'ARMEL INC &lt;AML> 4TH QTR LOSS Oper shr loss 79 cts vs loss 2.32 dlrs\n    Oper net loss 2,536,896 vs loss 6,562,472\n    Revs 13.8 mln vs 14.5 mln\n    Year\n    Oper shr loss 59 cts vs loss 2.35 dlrs\n    Oper net loss 1,712,896 vs loss 5,747,472\n    Revs 43.6 mln vs 44.2 mln\n    NOTE: 1986 excludes charge of 12 cts per share in the\nfourth quarter and gain of 11 cts per share in the year.\n\n Reuter\n&#3;',0
+'NATIONAL DISTILLERS &lt;DR> TO SELL SPIRITS UNIT National Distillers and Chemical Corp\nsaid it signed a definitive agreement to sell its spirits\ndivision for 545 mln dlrs to James Beam Distilling Co, a unit\nof American Brands Inc &lt;AMB>.\n    The sale of the spirits division was made under the\ncompany\'s previously announced plan to sell its spirits and\nwines businesses, it said. The wine business was sold last\nmonth for 128 mln dlrs to Heublein Inc, part of Grand\nMetropolitan  [...]
+'MANAGEMENT SCIENCE &lt;MSAI> LOSS MAY TOP 20 CTS Management Science America Inc,\nclarifying statements made earlier today, said its loss for the\nfirst quarter could exceed 20 cts a share because of\nnon-recurring expenses associated with the acquisition of\nseveral companies, including Comserv Inc.\n    Earlier today, the company told a meeting of investors here\nthat the first quarter loss would be 20 cts a share.\n   \n Reuter\n&#3;',0
+'WOJNILOWER SEES DROP IN U.S. INTEREST RATES The Federal Reserve will promote lower\ninterest rates this year to sustain world economic growth,\nFirst Boston Corp managing director Albert Wojnilower said.\n    As much as the Fed would like to take a tough line against\ninflation, it cannot act to slow the growth of credit without\nsubverting national U.S. economic policy.\n    \"On selected occasions when the dollar seems steady, and,\nbecause the trade deficit is not responding, the Uni [...]
+'RAYTECH &lt;RAY> BUYS WEST GERMAN COMPANY Raytech Corp said it acquired\n&lt;Raybestos Industrie-Produkte GmBH> for 7.5 mln dlrs.\n    Raybestos, with manufacturing facilities in Radevormwald,\nWest Germany, produces friction materials for use in clutch and\nbraking applications.\n Reuter\n&#3;',0
+'INTERCARE &lt;CARE> TO POST 4TH QTR LOSS Intercare Inc said it\nexpects to report a substantial loss for its fourth quarter\nended January 31 because of a writeoff of expenses associated\nwith its recently terminated debt and equity offering.\n    The company also said the write off includes expenses\nassociated with the acquisition of U.S. Medical Enterprises\nInc, and with the restructuring of certain partnerships.\n    Intercare also said it increased its reserve against\naccounts re [...]
+'CANADA TO MONITOR STEEL IMPORTS, EXPORTS Canada plans to monitor steel shipments\nflowing in and out of the country in an attempt to appease\nconcerns in the U.S. over the high level of Canadian steel\nexports, Trade Minister Pat Carney said.\n    \"To help maintain our open access to the U.S. steel market,\nthe government is taking further action to ensure we have more\naccurate data on exports and imports and that Canada is not\nused as a backdoor to the U.S. market by offshore suppli [...]
+'UNITED TECH &lt;UTX> SEES NO EARNINGS IMPACT United Technologies Corp said\nthe decision by an international consortium not to develop a\nnew engine would have no impact on 1987 or 1988 earnings.\n    &lt;International Aero Engines>, IAE, 30 pct owned by United\nTechnologies\' Pratt and Whitney division, has decided not to\nlaunch a superfan version of its V2500 engine.\n    \"We\'ve told analysts that IAE\'s decision not to launch a\nfull development program of the IAE superfan for cer [...]
+'STEWART AND STEVENSON &lt;SSSS> 4TH QTR NET Shr profit 72 cts vs profit 14 cts\n    Net profit 3,309,000 vs profit 609,000\n    Revs 72 mln vs 65 mln\n    Year\n    Shr nil vs loss 4.13 dlrs\n    Net profit 1,000 vs loss 19 mln\n    Revs 249 mln vs 269 mln\n    NOTE: Full name Stewart and Stevenson Services Inc.\n Reuter\n&#3;',0
+'WESTAMERICA BANCORP &lt;WAB> 1ST QTR NET Shr 98 cts vs 63 cts\n    Net 2,602,000 vs 1,571,000\n    Loans 834.8 mln vs 729.0 mln\n    Deposits 1.04 billion vs 942.1 mln\n    Assets 1.15 billion vs 1.02 billion\n Reuter\n&#3;',0
+'U.S.SENATE LIFTS SOME BANS ON NATURAL GAS The Senate unanimously approved\nlegislation to lift a ban on new construction of natural\ngas-fired power plants and other large industrial gas-burning\nplants.\n    The bill, sponsored by Senate Energy Committee chairman\nBennett Johnston, also repeals mandatory incremental pricing of\nnatural gas which was designed to protect residential consumers\nfrom major price increases by forcing some industrial users to\npay higher than market prices.\ [...]
+'SOUTHEAST BANCORP &lt;STB> ACTS ON BRAZILIAN DEBT Following the lead of other major\nbanks, Southeast Banking Corp told the Securities and Exchange\nCommission it would place 54.2 mln dlrs of medium- and\nlong-term Brazilian debt on non-accrual or cash status.\n    Based on current interest rates, it estimated in a filing\nthat the move will reduce net income by about 800,000 dlrs in\nthe first quarter and 3.2 mln dlrs for all of 1987. The company\nalso said it did not believe the Brazi [...]
+'WILLIAMS &lt;WMB> SEES FLAT PIPELINE VOLUMES IN 1987 Williams Cos said it expected oil and\nfertilizer transportation volumes to be flat in 1987 but said\noperating profits from the pipeline unit should improve from\n49.4 mln dlrs earned last year when a seven mln dlr special\ncharge was incurred.\n    Williams Pipeline Co took the charge against earnings in\n1986 for the removal of more than 500 miles of old pipeline\nfrom service and for casualty losses. Companywide, Williams had\na n [...]
+'SUPER VALU STORES INC &lt;SVU> 4TH QTR FEB 28 NET Shr 38 cts vs 25 cts\n    Net 28,339,000 vs 18,650,000\n    Sales 2.27 billion vs 1.97 billion\n    Avg shrs 74,485,000 vs 74,270,000\n    Year\n    Shr 1.20 dlrs vs 1.23 dlrs\n    Net 89,301,000 vs 91,247,000\n    Sales 9.07 billion vs 7.91 billion\n    Avg shrs 74,387,000 vs 74,184,000\n    NOTE: 1986 period ended February 22, 1986\n    1986 earnings include net loss of unconsolidated subsidiary\nof 162,000 dlrs in the quarter and 702, [...]
+'PARKER DRILLING CO &lt;PKD> 2ND QTR FEB 28 LOSS Shr loss 70 cts vs loss 57 cts\n    Net loss 20,616,000 vs loss 16,854,000\n    Revs 23.1 mln vs 60.1 mln\n    Six mths\n    Shr loss 1.38 dlrs vs loss 1.02 dlrs\n    Net loss 40,780,000 vs loss 29,996,000\n    Revs 61.0 mln vs 114.9 mln\n Reuter\n&#3;',0
+'COFFEE COULD DROP TO 70/80 CTS, CARDENAS SAYS International coffee prices could drop to\nbetween 70 and 80 cents a lb by next October if no agreement is\nreached to support the market, Jorge Cardenas, manager of\nColombia\'s National Coffee Growers\' Federation said.\n    Speaking at a forum for industrialists, he said one of the\nreasons was that the market was already saturated and that\nproducers will have excess production and stockpiles of 39 mln\n(60-kg) bags in 1987.\n    Today,  [...]
+'HBO &lt;HBOC> URGES SHAREHOLDERS AGAINST ANDOVER HBO and Co said it sent a letter of\nstrongly urging shareholders not to sign any proxy cards sent\nby Andover Group.\n    ON March 30, Andover Group, a two-man general partnership\nwhich owns about seven pct of HBO\'s stock, filed preliminary\nproxy materials with the Securities and Exchange Commission\nseeking to nominate an alternative slate of directors at the\ncompany\'s April 30 annual meeting.\n    Andover had expressed an interest [...]
+'(CFCF INC) SIX MTHS FEB 28 NET Shr 51 cts vs 56 cts\n    Net 5,645,000 vs 6,153,000\n    Revs 45.9 mln vs 45.3 mln            \n Reuter\n&#3;',0
+'UAP MAKES ACQUISITIONS &lt;UAP Inc> said it has acquired Slater\nAuto Electric Ltd, with two Ontario stores, and United Diesel\nEngine Parts Ltd, of Dartmouth, Nova Scotia, for undisclosed\nterms. It said the transactions, together with acquisitions\nearlier this year, will increase its annual sales by about 4.5\nmln dlrs.\n Reuter\n&#3;',0
+'EIA SAYS DISTILLATE STOCKS UNCHANGED, GASOLINE OFF 200,000, CRUDE UP 6.3 MLN\n ',0
+'USDA DISCUSSING PL 480 AGREEMENT WITH MOROCCO The U.S. Agriculture Department is\ncurrently discussing an amendment to a PL 480 agreement signed\nwith Morocco on January 22, but the mix of commodities under\nthe amendment has not been determined, a U.S. Agriculture\nDepartment official said.\n    The official noted the agreement signed in January provided\nfor the supply of about 55,000 tonnes of vegetable oil, 55,000\ntonnes of corn and 126,000 tonnes of wheat, all for delivery\nduring [...]
+'EIA SAYS DISTILLATE STOCKS UNCHANGED IN WEEK Distillate fuel stocks held in\nprimary storage were unchanged in the week ended April three at\n106.9 mln barrels, the Energy Information Administration (EIA)\nsaid.\n    In its weekly petroleum status report, the Department of\nEnergy agency said gasoline stocks were off 200,000 barrels in\nthe week to 248.1 mln barrels and refinery crude oil stocks\nrose 6.3 mln barrels to 335.8 mln.\n    The EIA said residual fuel stocks fell 100,000 barr [...]
+'HAWKEYE &lt;HWKB> 1986 ANNUAL REPORT QUALIFIED Hawkeye Bancorp\'s 1986 annual\nfinancial results were qualified by its auditors, according to\nthe annual report.\n    \"...there are conditions which may indicate that the\ncompany will be unable to continue as a going concern,\"\nauditors Deloitte Haskins and Sells said in Hawkeye\'s annual\nreport to shareholders.\n    Hawkeye reported a 1986 loss of almost 59 mln dlrs, citing\nan increase in its loan loss provision to 34.7 mln dlrs and [...]
+'&lt;WASHINGTON BANCORPORATION> 1ST QTR NET Shr 33 cts vs 37 cts\n    Net 2,051,000 vs 1.8 mln\n    Assets 1.7 billion vs 1.5 billion\n    Deposits 1.4 billion vs 1.2 billion\n    Loans 1.1 billion vs 900 mln\n    Note: Year-ago results restated to reflect merger with\nColson Inc.\n Reuter\n&#3;',0
+'DOME &lt;DMP> PLAN MAY FORCE SALE OF ENCOR STAKE Dome Petroleum Ltd\'s proposal to\nrestructure debt of more than 6.10 billion Canadian dlrs\nincludes provisions that may force the company to sell its 42\npct stake in &lt;Encor Energy Corp Inc>, Dome said in a U.S.\nSecurities and Exchange Commission filing.\n    Dome said in the filing that its debt plan proposes making\npayments under a five year income debenture to the lender whose\ndebt is secured by Dome\'s Encor shares.\n    After [...]
+'RECENT U.S. OIL DEMAND OFF 2.6 PCT FROM YEAR AGO U.S. oil demand as measured by\nproducts supplied fell 2.6 pct in the four weeks ended April\nthree to 15.73 mln barrels per day (bpd) from 16.16 mln in the\nsame period a year ago, the Energy Information Administration\n(EIA) said.\n    In its weekly petroleum status report, the Energy\nDepartment agency said distillate demand was off 7.9 pct in the\nperiod to 2.90 mln bpd from 3.15 mln a year earlier.\n    Gasoline demand averaged 6.76  [...]
+'DEFICIT CUTS SEEN UNABLE TO CURE TRADE DEFICIT Financial analysts say they are\npleased with congressional moves to trim next year\'s federal\nbudget deficit but believe the actions will do little to help\nimprove the U.S. trade deficit or buoy the economy.\n    The House of Representatives is expected to vote tomorrow\nto approve a trillion-dollar budget blueprint for the coming\nfiscal year that reduces the deficit by 38 billion dlrs.\n    Similarly, the Senate Budget Committee has ap [...]
+'STEWART AND STEVENSON SERVICES &lt;SSSS> 4TH QTR 4th qtr ended Jan 31.\n    Shr profit 72 cts vs profit 14 cts\n    Net profit 3,309,000 vs 609,000\n    Revs 72 mln vs 65 mln\n    Year\n    Shr profit nil vs loss 4.13 dlrs\n    Net profit 1,000 vs loss 19 mln\n    Revs 245 mln vs 269.1 mln\n Reuter\n&#3;',0
+'WESTAMERICA BANCORPORATION &lt;WSAM> 1ST QTR NET Shr 98 cts vs 63 cts\n    Net 2,602,000 vs 1,571,000\n    Assets 1.15 billion vs 1.02 billion\n    Deposits 1.04 billion vs 942.1 mln\n    Loans 834.8 mln vs 729.0 mln\n    Return on avg assets 0.92 pct vs 0.63 pct\n Reuter\n&#3;',0
+'COLOMBIA COFFEE REGISTRATIONS REMAIN OPEN Colombia\'s coffee export registrations\nremain open and there are no plans to close them since a new\nmarketing policy means an unlimited amount can be registered,\nGilberto Arango, president of the private exporters\'\nassociation said.\n    \"The philosophy of the new policy is not to close\nregistrations. Nobody so far said may would be closed,\" he told\nReuters.\n    On March 13, Colombia opened registrations for April and\nMay for an unli [...]
+'GATEWAY BANCORP INC &lt;GBAN> 1ST QTR NET Shr 32 cts vs 34 cts\n    Net 902,178 vs 662,647\n    Deposits 174.7 mln vs 134.4 mln\n    NOTE: Per share amounts adjusted to reflect 10-for-one\nstock split effective Sept 16, 1986.\n Reuter\n&#3;',0
+'MORE AMERICAN BRANDS &lt;AMB> ACQUISITIONS SEEN American Brands Inc\'s 545 mln dlrs\nacquisition of National Distillers and Chemical Corp\'s liquor\nbusiness is expected to be one of a series of acquisitions by\nthe tobacco company, analysts said.\n     \"They were very frustrated with their inability to get\nChesebrough. They said they were looking for an acquisition. It\ndoesn\'t surprise me that they came up with another one,\" said\nAllan Kaplan of Merrill Lynch and Co.\n    America [...]
+'BUNDESBANK CALLS FOR CENTRAL BANK COOPERATION Bundesbank board member Claus Koehler\ncalled on central banks of major industrialised nations to\ncooperate closely on exchange and interest rate policies.\n    In a lecture at the University of Surrey, pre-released\nhere, Koehler said that the only alternative to cooperation was\nprotectionism and control on capital movements.\n    \"Central banks have sufficient experience of exchange market\ntransactions to steer exchange rates where the [...]
+'AUSTRALIAN UNEMPLOYMENT RISES IN MARCH Australia\'s seasonally adjusted\nunemployment rate rose to 8.4 pct of the estimated workforce in\nMarch from 8.2 pct in February and 7.9 pct a year earlier, the\nStatistics Bureau said.\n    The number of jobless rose to 650,700 from 631,900 in\nFebruary and 593,200 a year earlier, the Bureau said.\n    Unadjusted, the number of unemployed rose to 702,600 from\n699,600 in February but the rate eased to 9.0 pct from 9.1,\nreflecting a slight increa [...]
+'CSR SAYS IT IS RETAINING NON-DELHI GAS-OIL STAKES CSR Ltd &lt;CSRA.S> said its sale of &lt;Delhi\nPetroleum Pty Ltd> will not affect the other oil and gas\ninterests it manages or operates.\n    CSR sold Delhi, which holds an average 25 pct in the Santos\nLtd &lt;STOS.S>-led Cooper-Eromanga Basin onshore gas and liquids\njoint ventures, to an Exxon Corp &lt;XON> unit for 985 mln dlrs on\nApril 1.\n    In a statement to clarify the position, CSR said it will\nretain its Roma Gas unit, th [...]
+'JAPAN MINISTRY HAS NO COMMENT ON RICE TALKS REPORT The Agriculture Ministry declined comment\non a local newspaper report that Japan had agreed to hold talks\non its closed rice market in the new GATT round.\n    \"We have no idea about the report and cannot comment,\" a\nspokesman told Reuters.\n    Nihon Keizai Shinbun, quoting unnamed government sources,\nsaid Japan would tell U.S. Agriculture Secretary Richard Lyng\nand U.S. Trade Representative Clayton Yeutter of its\nintentions. T [...]
+'SHOWA DENKO EXPORTS ALUMINIUM CASTING EQUIPMENT &lt;Showa Denko Ltd> said it is exporting\naluminium billet casting equipment and technology to countries\nthat have recently begun aluminium smelting.\n    A company official said it won a 500 mln yen order to\ndeliver 10 sets of casting equipment to Venezuela\'s Venalum by\nend-1987. He said it received an order for one set from\nAluminium Bahrain B.S.C. Last year and expects further orders\nfrom the Bahrain smelter.\n    Showa Denko wit [...]
+'ECONOMIC SPOTLIGHT - TELECOM IS KEY JAPAN MINISTRY Japan\'s little-known Ministry of Posts and\nTelecommunications (MPT) has emerged as an international force\nto be reckoned with, political analysts said.\n    MPT, thrust into the spotlight by trade rows with the U.S.\nAnd Britain, is in a position of strength due to its control of\na lucrative industry and its ties with important politicians,\nthey said.\n    \"The ministry is standing athwart the regulatory control of\na key industri [...]
+'G-7 ISSUES STATEMENT AFTER MEETING Following is the text of a statement\nby the Group of Seven -- the U.S., Japan, West Germany, France,\nBritain, Italy and Canada -- issued after a Washington meeting\nyesterday.\n    1. The finance ministers and central bank governors of\nseven major industrial countries met today.\n    They continued the process of multilateral surveillance of\ntheir economies pursuant to the arrangements for strengthened\neconomic policy coordination agreed at the 19 [...]
+'BANK OF FRANCE TO HOLD MONEY MARKET TENDER TODAY The Bank of France said it has invited\noffers of first category paper today for a money market\nintervention tender.\n    Money market operators were divided over whether the Bank\nof France will use to occasion to cut its intervention rate,\nwhich has stood at 7-3/4 pct since March 9.\n    Some thought a price cut unlikely while others said there\nwas room for a further 1/4 point cut by the bank.\n REUTER\n&#3;',0
+'RIO TINTO-ZINC CORP PLC 1986 PRETAX PROFIT 601.7 mln stg\nvs 614.4 mln\n ',0
+'RIO TINTO-ZINC NET ATTRIBUTABLE PROFIT LOWER Year to December 31, 1986\n    SHR 78.91p vs 83.05p\n    DIV 16.5p making 23.5p vs 22p\n    PRETAX PROFIT 601.7 mln stg vs 614.4 mln\n    NET ATTRIBUTABLE PROFIT 245 mln stg vs 257 mln\n    TURNOVER 3.34 billion stg vs 3.09 billion\n    Note - Accounts have been restated\n    Full name of company is Rio Tinto-Zinc Corp Plc &lt;RTZL.L>\n    Group operating profit 529.4 mln stg vs 470.7 mln\n    Operating costs 2.81 billion stg 2.63 billion\n   [...]
+'Burmah Oil 1986 pre-tax profit 105.9 mln stg vs 79.6 mln.\n ',0
+'GERMAN BANKERS\' REMARKS REVIVE TALK OF RATE CUT Remarks by two leading central bankers\nsparked renewed speculation in financial markets that a cut in\nthe West German three pct discount rate may be under\ndiscussion, currency dealers said.\n    Bundesbank board member Claus Koehler said in a speech that\nmonetary growth resulting from speculative capital inflows\nrequired cuts in interest rates.\n    Separately, West Berlin state central bank president Dieter\nHiss told journalists th [...]
+'SOVIET TRADE DEFICIT WITH WEST SOARS IN 1986 The Soviet trade deficit with the West\nalmost quadrupled last year, reaching 2.72 billion roubles\ncompared with 713 mln in 1985, official figures showed.\n    Statistics published by the monthly journal Foreign Trade\nshowed Soviet trade turnover for 1986 fell to 130.9 billion\nroubles from 142.1 billion the previous year, a drop of 7.8\npct.\n    Moscow\'s trade surplus with East Bloc countries continued\nto grow in 1986.\n    Western anal [...]
+'BURMAH OIL PROFIT CLIMBS TO 105.9 MLN STG Year 1986\n    Shr 33.54p vs 34.2p.\n    Final div 9.5p, making 14p vs 12.75p.\n    Pre-tax profit 105.9 mln stg vs 79.6 mln.\n    Net profit before minorities 56 mln vs 52.1 mln.\n    Turnover net of duties 1.32 billion stg vs 1.46 billion.\n    Minorities 800,000 stg vs same.\n    Extraordinary debit 20.4 mln vs 28.2 mln.\n    NOTE: Company\'s full name is The Burmah Oil Co Plc &lt;BURM.L>\nREUTER^M\n&#3;',0
+'CHINA\'S WHEAT CROP THREATENED BY PESTS, DISEASE Pests and disease, which destroyed 1.1\nmln tonnes of wheat in China in 1986, are threatening crops on\n11.64 mln hectares this year, the China Daily said.\n    About 14.54 mln hectares of wheat were affected in 1986.\n    The paper said abnormal weather conditions had encouraged\nthe spread of wheat midges in 2.47 mln hectares in Shanxi,\nHenan, Sichuan, Anhui, Hebei and Jiangsu.\n    In Henan, Shandong and Hebei wheat aphids are affecti [...]
+'RTZ SEES RISING U.S. OUTPUT AIDING 1987 RESULTS Rio Tinto-Zinc Corp Plc &lt;RTZL.L>, RTZ,\nsaid the predicted rise in industrial production in the U.S.\nAnd Europe should boost its 1987 performance.\n    Consumption of some base metals and their dlr prices are\nshowing signs of improvement, although iron ore markets have\nweakened. The oil price in U.S. Dlrs is above the 1986 average,\nand if sustained, should improve energy earnings.\n    The company was commenting in a statement on it [...]
+'BRIDGESTONE CORP &lt;BRIT.T> YEAR TO DECEMBER 31 Group shr 35.99 yen vs 38.28\n    Net 21.01 billion vs 21.08 billion\n    Current 47.73 billion vs 48.06 billion\n    Operating 55.04 billion vs 54.99 billion\n    Sales 792.71 billion vs 864.28 billion\n    NOTE - Company forecast for current year is group shr 37.70\nyen, net 22 billion, current 52 billion and sales 800 billion.\n REUTER\n&#3;',0
+'EC SUGAR TENDER SEEN MARKING NO CHANGE IN POLICY The maximum export rebate granted at\nyesterday\'s EC sugar tender marked no change in policy over\nproducer complaints that they are not obtaining the EC\nintervention price in exporting sugar outside the Community, EC\nCommission sources said.\n    The maximum rebate was 46.496 Ecus per 100 kilos for\n118,350 tonnes of sugar, down from 46.864 Ecus the previous\nweek, but the change is explained by world market conditions.\n    Producers [...]
+'BURMAH OIL PROSPECTS REMAIN FAVOURABLE The current year has opened well, with\ntrading prospects remaining favourable, Burmah Oil Co Plc\n&lt;BURM.L> said in a statement with its 1986 results.\n    The company plans to maintain a steady rate of investment\nin its marketing operations and to obtain improved profit\nmargins on its liquified natural gas, LNG, project.\n    Burmah has the financial capacity to continue making\nacquisitions within its business sectors, it added. The\nrationa [...]
+'GEBRUEDER SULZER 1986 PROFIT UP ALMOST 60 PCT Year 1986\n    Consolidated net profit 67 mln Swiss francs vs 42 mln.\n    Dividend 100 francs per registered share vs 80 francs and\n10 francs per participation certificate vs eight.\n    Consolidated turnover 4.55 billion francs vs 4.54 billion.\n    Parent company net profit 38.2 mln francs vs 26.4 mln.\n    Parent company turnover 2.20 billion francs vs 2.29\nbillion.\n    Note - Company\'s full name is Gebrueder Sulzer AG &lt;SULZ.Z>\n  [...]
+'JAPAN BUSINESS LEADERS SAY G-7 ACCORD IS WORRYING The leaders of two of Japan\'s top business\ngroups said in separate statements the Group of Seven (G-7)\naccord reached in Washington yesterday is of deep concern to\nJapan because it shows the major industrial nations regard the\nyen\'s current level as appropriate.\n    Eishiro Saito, chairman of the Federation of Economic\nOrganizations (Keidanren), said the yen\'s present rate is well\nabove adequate levels. He did not elaborate.\n  [...]
+'PERGAMON HOLDINGS REDUCES BPCC AND HOLLIS STAKES &lt;Pergamon Holdings Ltd> and its associate\ncompanies said that they had sold 30 mln ordinary shares in the\nBritish Printing and Communication Corp Plc &lt;BPCL.L> and 10.5\nmln in &lt;Hollis Plc> together with other securities.\n    No total price was given but the company said the proceeds\nof the sales would be used to fund Pergamon\'s expansion\nprogramme and worldwide acquisition stategy. The company said\nthat following these sal [...]
+'NATIONALE NEDERLANDEN PROFITS, SALES STEADY Year 1986\n    Net profit 635.5 mln guilders vs 603.4 mln.\n    Revenues 17.35 billion guilders vs 17.27 billion.\n    Net profit per nominal 2.50 guilder share 5.79 guilders vs\n5.67, corrected for capital increase. (1985 uncorrected figure\n5.73).\n    Dividend 2.50 guilders vs 2.38, corrected. (2.40\nuncorrected.)\n    Note - Full name is Nationale Nederlanden NV &lt;NTNN.AS>\nREUTER\n&#3;',0
+'SHANGHAI TYREb FACTORY TO RAISE 30 MLN U.S. DLRS Ta Chung Hua Rubber Factory of\nShanghai will raise a 30 to 35 mln U.S. Dlr loan to expand and\nmodernise its plant, arranger CCIC Finance Ltd said.\n    The loan, to be lead managed by the Bank of China, is\nexpected to mature in eight to nine years, but terms have not\nbeen finalized.\n    The money will be used to import manufacturing equipment\nincluding technology transfer for the production of truck\nradial tyres. Part of the output [...]
+'SAUDI RATES RISE AS BAHRAIN BANKS CAUGHT SHORT Saudi riyal interest rates rose as\nBahrain-based banks scrambled to cover short positions, dealers\nsaid.\n    Several Bahrain banks had been lending in the fixed periods\nand borrowing in the short dates, but today they found the\nday-to-day money in short supply, dealers said.\n    \"Everybody\'s stuck in the spot-next,\" one trader said.\n    Spot-next rose to as high as 6-1/4, six pct from 5-1/4,\nfive pct yesterday, and the borrowing  [...]
+'BELGIUM TO ISSUE GOLD WARRANTS, SOURCES SAY Belgium plans to issue Swiss franc\nwarrants to buy gold, with Credit Suisse as lead manager,\nmarket sources said.\n    No confirmation or further details were immediately\navailable.\n REUTER\n&#3;',0
+'PHILIPPINE TELEPHONE FIRM PLANS STOCK SPLIT The Philippine Long Distance Telephone Co\n&lt;PLDT.MN> is planning a two-for-one stock split and a 20 pct\nstock dividend later this year to reduce excess market\nbuoyancy, Vice-President Sennen Lazo told Reuters.\n    Lazo said the stock split would reduce the par value of the\ncompany\'s common stock from 10 to five pesos.\n    He said the stock split would apply to holders of about 18\nmln common shares of stock on the record date of Septe [...]
+'CARGILL CONFIRMS WHITE SUGAR SALE TO INDIA London-based trader Cargill (U.K.) Ltd\nconfirmed it sold one cargo of white sugar to India for\nshipment April 15/May 15 at yesterday\'s tender.\n    Price details were not immediately available but some\ntraders suggested business had been done around 220 dlrs a\ntonne cif.\n    India tendered for one or two cargoes of white sugar. There\nwas no specific requirement on shipping period.\n REUTER\n&#3;',0
+'MALAYSIA SEEKS 42 BILLION YEN PIPELINE LOAN Malaysia has asked Japan for a 42\nbillion yen 25-year loan to finance the construction of gas\npipelines from eastern Trengganu to southern Johor, the\nOverseas Economic Cooperation Fund (OECF) said.\n    OECF\'s chief representative, Takashi Matsuya, told\nreporters the Japanese Government is appraising the loan.\nAnother OECF official told Reuters Japan is likely to approve\nthe loan because \"it is technically and economically viable.\"\n  [...]
+'CCF REPORTS 34.8 PCT PROFIT BOOST, SHARE SPLIT SEEN Credit Commercial de France &lt;CCFP.PA>\nreported a parent company net profit up 34.8 pct to 140.1 mln\nfrancs from 103.9 mln francs a few weeks before its\ndenationalisation around the end of this month.\n    Official sources said the bank, France\'s sixth largest in\nterms of its deposits and seventh in terms of its assets,\n\nplanned a share split to increase the number of shares on offer\nahead of the sale of 40 pct of its ordinar [...]
+'JOHNSON MATTHEY\'S PLATINUM GROUP PRICES Johnson Matthey today issued the\nfollowing Platinum group base prices (unfabricated), all U.S.\nDlrs per troy ounce.\n Previous prices in parentheses.\n PLATINUM  -   562   (567)\n PALLADIUM -   130   (130)\n IRIDIUM   -   400   (400)\n RHODIUM     1,230 (1,230)\n RUTHENIUM -    80    (80)\n&#3;',0
+'LEX SERVICE BUYS SEARS MOTOR GROUP Lex Service Plc &lt;LEXL.L> said it had\nacquired &lt;Sears Motor Group Ltd>, the retail motor distribution\narm of Sears Plc &lt; SEHL.L>, and an 11.9 mln stg loan note\npayable by Sears Motor for 33.4 mln stg.\n    The purchase will be through 1.4 mln stg in cash and the\nissue to Sears Plc of 8.0 mln new Lex ordinary shares.\n    The company said in a statement that immediately following\nthe acquisition of the motor group, its car and commercial\nv [...]
+'MAJOR RUBBER PRODUCERS TO MEET IN SINGAPORE Officials from Indonesia, Malaysia,\nSingapore and, perhaps, Thailand will meet here tomorrow to\ndiscuss increased regional cooperation on rubber marketing and\nways to raise rubber prices, industry sources said.\n    The officials will discuss linking rubber markets in the\nfour countries to improve price transparency, the sources said.\n    This is the first time Indonesia is attending such a\nmeeting, they said, but representatives from Th [...]
+'MEPC EXTENDS OFFER FOR OLDHAM MEPC Plc &lt;MEPC.L> said that its offer for\n&lt;Oldham Estates Ltd> would remain open until further notice.\n    On February 26 MEPC made an agreed bid for Oldham based on\na formula reflecting its asset value at 30 September 1986. A\nyear earlier Oldham\'s net asset value was put at 531.4 mln stg.\n    As of 1 April the valuation used under the formula had\nstill to be agreed so Oldham had yet to give a firm\nrecommendation to its shareholders regarding  [...]
+'GEORGE WIMPEY PROFITS UP 42 PCT TO 66.5 MLN STG Year to December 31, 1986.\n    Shr 18.35p vs 14.95p\n    Div 3.75p vs 2.9p making 4.75p vs 3.75p\n    Pretax profit 66.5 mln stg vs 46.9 mln\n    Tax 14.6 mln stg vs 4.5 mln\n    Net profit 51.9 mln stg vs 42.4 mln\n    Turnover 1.44 billion stg vs 1.58 billion\n    Note - Full name of company is George Wimpey Plc &lt;WMPY.L>.\n    Operating profit before exceptional items 88.9 mln stg vs\n80.5 mln\n    Exceptional debits 3.0 mln stg vs 1 [...]
+'CANADA FEBRUARY TRADE SURPLUS 1.25 BILLION DLRS AFTER\nJANUARY 623 MLN DLRS SURPLUS\n ',0
+'AEGON 1986 NET PROFIT RISES 6.4 PCT Net profit 327.1 mln guilders vs\n307.5.\n    Total revenue 7.97 billion guilders vs 8.7 billion.\n    Net profit per five guilder nominal share 9.33 guilder vs\n9.25 (corrected for capital increase).\n    Final dividend 1.30 guilders and 2.4 pct stock vs 1.30\nguilders and 2.2 pct in stock. Interim dividend already paid\nwas 1.30 guilders.\n    Note : full name of company is AEGON NV &lt;AEGN.AS>\n    REUTER\n&#3;',0
+'CANADA FEBRUARY TRADE SURPLUS 1.2 BILLION DLRS Canada had a trade surplus of 1.25\nbillion dlrs in February compared with an upward revised 623\nmln dlrs surplus in January, Statistics Canada said.\n    The January surplus originally was reported at 533 mln\ndlrs. The February surplus last year was 189 mln dlrs.\n    February exports, seasonally adjusted, were 10.44 billion\ndlrs against 9.85 billion in January and 10.05 billion in\nFebruary, 1986.\n    February imports were 9.19 billio [...]
+'BANK OF JAPAN BUYS DOLLARS IN TOKYO, DEALERS SAY The Bank of Japan bought a modest amount\nof dollars at around 145.10 yen just after the market here\nopened, dealers said.\n    Just before the opening, the dollar dropped swiftly as\nspeculators concluded the Group of Seven (G-7) comminuique\nissued in Washington contained nothing basically new, they\nsaid. It fell about a half yen, to around 145.\n    The G-7 reaffirmed that their currencies around current\nlevels reflect economic fund [...]
+'MIYAZAWA SAYS YEN STILL INSIDE PARIS RANGE Japanese Finance Minister Kiichi\nMiyazawa said the strengthening of the yen against the dollar\nthat has occurred since the Paris Agreement was within the\nrange agreed on in the Louvre discussions.\n    \"I would say that what has happened (to the yen) in the past\nseveral weeks was not outside the range we agreed to in the\ndiscussions in Paris,\" Miyazawa told a press conference\nfollowing the Group of Seven meeting here.\n    He added that [...]
+'U.K. MONEY MARKET GETS 103 MLN STG HELP The Bank of England said it operated in\nthe money market this morning, buying 103 mln stg bank bills.\n    The central bank bought in band one 60 mln stg at 9-7/8, in\nband two eight mln at 9-13/16, in band three 26 mln at 9-3/4\nand in band four nine mln stg at 9-11/16 pct.\n    This compares with the bank\'s forecast of a 400 mln stg\nshortfall today.\n REUTER\n&#3;',0
+'NATNED FORECASTS 1987 RESULTS IN LINE WITH 1986 The Netherlands\' largest insurer\nNationale Nederlanden NV &lt;NTTN.AS> (NatNed) said it expected at\nleast unchanged results in 1987 after reporting 1986 net\nprofits up 5.3 pct to 635.5 mln guilders from 603.4 mln in\n1985,\n    Revenues increased by 0.5 pct to 17.35 billion guilders\nafter 17.27 billion the previous year, and the dividend was\nraised to 2.50 guilders per share from 2.38 guilders in 1985,\ncorrected on a capital increas [...]
+' &#2;\nBANK OF FRANCE RETURN - APR 9\n Week end Apr 2 (in mln francs)\n Gold reserves 218,316 (unch)\n Convertible Currency Reserves 119,518 (116,728)\n Ecus 62,008 (62,020)\n Special Operations (advances to\n     Exchanges stabilisation fund) nil (nil)\n Special Drawing Rights 6,866 (unch)\n Notes In Circulation 209,260 (207,517)\n Foreign Liabilities 3,101 (3,082)\n&#3;\n\n',0
+'EUROPEAN MARKETS REACT QUIETLY TO G-7 COMMUNIQUE European currency markets reacted quietly\nto the G-7 communique, with comments from bankers and dealers\nranging from disappointment that it was not more concrete to\nsurprise that the markets should have expected so much.\n    The dollar opened lower against virtually all currencies\nand traded in a narrow range after the communique, which\nreaffirmed support for the Paris accord on currency\nstabilisation but contained no moves to stre [...]
+'GERMAN MONEY MARKET SPLIT ON LOWER RATE PROSPECTS Remarks by central bankers raised some\nhopes the Bundesbank will cut rates on securities repurchase\npacts, but operators remained divided on the likelihood of a\nmove in the near term, money market dealers said.\n    Comments by Bundesbank board member Claus Koehler yesterday\nthat rate cuts were needed to curb money supply growth from\nspeculative capital inflows, and by West Berlin state central\nbank president Dieter Hiss that there [...]
+'THAILAND TO RENEW LONG TERM SUGAR CONTRACTS -TRADE Thailand is to negotiate tomorrow with\nselected trade houses for renewal of long term raw sugar sales\ncontracts, to cover the next five years at a rate of 60,000\ntonnes annually, traders said.\n    They also reported vague talk Algeria may be seeking 50,000\ntonnes of raws tomorrow but details are unclear.\n REUTER\n&#3;',0
+'EC LAUNCHES ANTI-DUMPING PROBE ON JAPANESE CHIPS The European Community launched an\ninvestigation into allegations of dumping by Japanese\nsemiconductor makers in a move which diplomats said could mark\nan intensification of world trade strains.\n    Tokyo already faces a deadline of April 17 from Washington\nfor the imposition of 300 mln dlrs worth of tariffs on chips it\nimports into the U.S.\n    The EC Executive Commission said today the European\nElectrical Component Manufacturers [...]
+'SWISS TO LAUNCH NEW SERIES OF MONEY MARKET PAPER The Swiss Federal Government will launch\na new series of three month money market certificates totalling\naround 150 mln Swiss francs, the National Bank said.\n    Subscriptions close April 14 and payment date is April 16.\n    The last series of three month paper issued in March raised\n147.3 mln francs at an issue price of 99.142 pct, giving an\naverage annual yield of 3.501 pct.\n    REUTER\n&#3;',0
+'EUROPEAN MARKETS REACT QUIETLY TO G-7 COMMUNIQUE European currency markets reacted quietly\nto the G-7 communique, with comments from bankers and dealers\nranging from disappointment that it was not more concrete to\nsurprise that the markets should have expected so much.\n    The dollar opened lower against virtually all currencies\nand traded in a narrow range after the communique, which\nreaffirmed support for the Paris accord on currency\nstabilisation but contained no moves to stre [...]
+'FINANCE MINISTERS AGREE ON NEED FOR STABILITY Finance ministers from seven major\nindustrialized nations agreed on the need to stabilize\ncurrencies at current levels but said more action was needed to\nreduce trade imbalances and sustain economic growth.\n    In a communique issued after a four-hour meeting at the\nU.S. Treasury that ended last night, the ministers said the\nvalue of the dollar and other currencies was basically correct\nnow, and they welcomed new measures planned by t [...]
+'AEGON EXPECTS MODERATE RISE IN 1987 PROFITS Dutch insurer AEGON NV &lt;AEGN.AS>\nreported a 6.4 pct increase in 1986 net profits to 327.1 mln\nguilders and said it expected a moderate increase in profits\nfor 1987.\n    Total revenue was eight pct lower in 1986 at 7.97 billion\nguilders vs 8.7 billion guilders in 1985. The company said its\nrevenues were down due to lower foreign exchange rates and a\nchange in accounting practice. It added that revenues would\nhave risen by about seven [...]
+'G-7 ISSUES STATEMENT AFTER MEETING Following is the text of a statement\nby the Group of Seven -- the U.S., Japan, West Germany, France,\nBritain, Italy and Canada -- issued after a Washington meeting\nyesterday.\n    1. The finance ministers and central bank governors of\nseven major industrial countries met today.\n    They continued the process of multilateral surveillance of\ntheir economies pursuant to the arrangements for strengthened\neconomic policy coordination agreed at the 19 [...]
+'G-7 WANTS TO SHOW MARKETS ITS RESOLVE - MIYAZAWA Japanese Finance Minister Kiichi\nMiyazawa said the Group of Seven (G-7) countries reaffirmed\ntheir Paris accord on stabilising currencies to convince the\nmarket of their resolve.\n    At a news conference after today\'s G-7 meeting, Miyazawa\nsaid the ministers and central bank governors did not believe a\ntotally new statement was needed.\n    The speculative selling did not reflect economic\nfundamentals, and since the fundamentals h [...]
+'YEN SEEN RISING AFTER G-7 COMMUNIQUE The yen is likely to start another\nuneven rise against the dollar and other major currencies\nbecause the Group of Seven communique contained nothing new,\ncurrency and bond analysts here said.\n    \"Is that it? I was expecting something more than that,\" said\none trader at a major Wall Street securities company.\n    Marc Cohen of Republic National Bank of New York said: \"The\nmarket now has the impetus to drive the dollar lower again.\"\n    Th [...]
+'JAPAN BUSINESS LEADERS SAY G-7 ACCORD IS WORRYING The leaders of two of Japan\'s top business\ngroups said in separate statements the Group of Seven (G-7)\naccord reached in Washington yesterday is of deep concern to\nJapan because it shows the major industrial nations regard the\nyen\'s current level as appropriate.\n    Eishiro Saito, chairman of the Federation of Economic\nOrganizations (Keidanren), said the yen\'s present rate is well\nabove adequate levels. He did not elaborate.\n  [...]
+'UNIFIRST CORP &lt;UNF> SETS QUARTERLY Qtly div five cts vs five cts prior\n    Pay July One\n    Record June 17\n Reuter\n&#3;',0
+'&lt;TRUMP PLAZA> 4TH QTR NET Net profit 2,529,000 vs loss 1,066,000\n    Revs 59.0 mln vs 52.6 mln\n    Year\n    Net profit 15.4 mln vs profit 865,000\n    Revs 247.0 mln vs 231.1 mln\n    NOTE: Company became wholly owned and operated by Donald\nTrump in May 1986, when he acquired 50 pct interest that had\nbeen owned by former operator Holiday Corp &lt;HIA>.\n Reuter\n&#3;',0
+'EUROPEAN MARKETS REACT QUIETLY TO G-7 COMMUNIQUE European currency markets reacted quietly\nto the G-7 communique, with comments from bankers and dealers\nranging from disappointment that it was not more concrete to\nsurprise that the markets should have expected so much.\n    The dollar opened lower against virtually all currencies\nand traded in a narrow range after the communique, which\nreaffirmed support for the Paris accord on currency\nstabilisation but contained no moves to stre [...]
+'WEST GERMAN BEET PLANTINGS DELAYED THREE WEEKS Unseasonal cold weather has delayed\nsugar beet plantings in West Germany by up to three weeks, the\nagriculture ministry said.\n    A ministry spokesman said in some central areas, especially\nin the Rhineland, farmers have taken advantage of warmer\nweather and started plantings in the past two days.\n    West German planting intentions this year are put at\n381,000 hectares, down from 390,500 ha last year, he said,\nadding that the 1980/ [...]
+'STEP-SAVER &lt;CODA> SAYS WARRANT EXERCISED Step-Saver Data Systems Inc\nsaid Bergen-Richards Corp has exercised a warrant to buy\n450,000 Step-Saver shares at two dlrs each.\n    It said warrants issued to the underwriter in its initial\npublic offering were exercised in March for an aggregate of\n169,200 dlrs.\n Reuter\n&#3;',0
+'COAST SAVINGS &lt;CSA> IN TALKS ON BUYING BANK Coast Savings and Loan Association\nsaid it is in talks with the Federal Savings and Loan Insurance\nCorp on the acquisition of Central Savings and Loan Association\nof San Diego.\n    Central, which operates 46 branches, has been under\nmanagement guidance of the FSLIC since May 1985.\n    Coast said the acquisition would give it an entry into the\nSan Joaquin Valley market besides strengthening its presence in\nthe San Diego, Los Angeles  [...]
+'BRAMALL TO ACQUIRE GELCO FOR UP TO 26.3 MLN DLRS &lt;C.D. Bramall Plc> said in a statement\naccompanying its annual results that it proposed to acquire\nGelco U.K. For some 26.3 mln dlrs.\n    Part of the cost will be met by the issue of 2.14 mln new\nordinary Bramall shares which are being placed at 265p each.\n    The acquisition will be satisfied by an initial payment of\nsome 25.3 mln dlrs in cash with further payments of 500,000\ndlrs up to a maximum 26.3 mln dlrs. These further pa [...]
+'BELGIUM LAUNCHES BONDS WITH GOLD WARRANTS The Kingdom of Belgium is launching 100\nmln Swiss francs of seven year notes with warrants attached to\nbuy gold, lead mananger Credit Suisse said.\n    The notes themselves have a 3-3/8 pct coupon and are priced\nat par. Payment is due April 30, 1987 and final maturity April\n30, 1994.\n    Each 50,000 franc note carries 15 warrants. Two warrants\nare required to allow the holder to buy 100 grammes of gold at\na price of 2,450 francs, during t [...]
+'FAO SEES LOWER GLOBAL WHEAT, GRAIN OUTPUT IN 1987 The U.N. Food and Agriculture Organisation\n(FAO) said global wheat and coarse grain output was likely to\nfall in 1987 but supplies would remain adequate to meet demand.\n    FAO said in its monthly food outlook bulletin total world\ngrain output was expected to fall 38 mln tonnes to 1,353 mln in\n1987, due mainly to unusually high winter losses in the Soviet\nUnion, drought in China and reduced plantings in North America.\n    World ce [...]
+'CB AND T BANCSHARES INC &lt;CBTB> 1ST QTR NET Shr 27 cts vs 24 cts\n    Net 5,223,000 vs 4,682,000\n    Avg shrs 19.7 mln vs 19.4 mln\n    NOTE: Results reflected pooled acquisition of First\nCommunity Bancshares Inc on March 31, 1987 and include Camden\nBancorp from January 31, 1987 purchase.\n Reuter\n&#3;',0
+'XICOR INC &lt;XICO> 1ST QTR MARCH 22 NET Shr profit five cts vs loss 16 cts\n    Net profit 689,000 vs loss 1,910,000\n    Revs 12.3 mln vs 9,432,000\n    NOTE: 1987 net includes 276,000 dlr tax credit.\n Reuter\n&#3;',0
+'GEORGE WIMPEY SAYS BENEFITS OF RESTRUCTURING SEEN George Wimpey Plc &lt;WMPY.L> said  the\noutlook for 1987 looked encouraging as the company realised the\ncontinuing benefits of restructuring.\n    It said its overall financial position showed further\nimprovement in 1986 and the reshaping of its U.K. Business into\nclearly defined and activity related divisions had been\nsuccessfully achieved.\n    Wimpey was commenting in a statement on its 1986 results\nwhich showed pretax profits u [...]
+'C.O.M.B. &lt;CMCO> MAKES ACQUISITION C.O.M.B. Co said it has acquired\nthe principal assets of National Tech Industries Inc and Telkom\nCorp, which are engaged in the sale and telemarketing of\nconsumer electronic merchandise and do business as House of\nImports and N.L. Industries respectively.\n    The company said it paid a total of 8,700,000 dlrs,\nincluding the assumption of liabilities.\n    National Tech had sales of about 23 mln dlrs for 1986, it\nsaid.\n Reuter\n&#3;',0
+'BELGIUM LAUNCHES BONDS WITH GOLD WARRANTS The Kingdom of Belgium is launching 100\nmln Swiss francs of seven year notes with warrants attached to\nbuy gold, lead manager Credit Suisse said.\n    The notes themselves have a 3-3/8 pct coupon and are priced\nat par. Payment is due April 30, 1987, and final maturity April\n30, 1994.\n    Each 50,000 franc note carries 15 warrants. Two warrants\nare required to allow the holder to buy 100 grammes of gold at\na price of 2,450 francs, during t [...]
+'DATATRAK INC &lt;DTRK> 3RD QTR FEB 28 NET Shr profit nil vs profit nil\n    Net profit 27,622 vs profit 5,556\n    Sales 1,031,306 vs 840,906\n    Nine mths\n    Shr loss one ct vs loss two cts\n    Net loss 195,095 vs loss 445,379\n    Sales 2,702,085 vs 2,219,961\n Reuter\n&#3;',0
+'MIYAZAWA SAYS YEN STILL INSIDE PARIS RANGE Japanese Finance Minister Kiichi\nMiyazawa said the strengthening of the yen against the dollar\nsince the Paris Agreement was within the range agreed in the\nLouvre discussions.\n    \"I would say that what has happened (to the yen) in the past\nseveral weeks was not outside the range we agreed to in the\ndiscussions in Paris,\" Miyazawa told a press conference\nfollowing the Group of Seven meeting here.\n    He said the current discussions we [...]
+'TODD SHIPYARDS &lt;TOD> STRUCK ON WEST COAST Todd Shipyards Corp said\nproduction workers represented by the multi-union Pacific Coast\nMetal Trades District Council at its San Francisco division\nstruck on April Six.\n    It said negotiations are expected to resume at the end of\nthis month.\n    Todd also said the collective bargaining division in effect\nat its Galveston Division expires April 17, and negotiations\nwith the Galveston Metal Trades Council are continuing.\n    The comp [...]
+'U.S. FIRST TIME JOBLESS CLAIMS FELL IN WEEK New applications for unemployment\ninsurance benefits fell to a seasonally adjusted 338,000 in the\nweek ended March 28 from 355,000 in the prior week, the Labor\nDepartment said.\n    The number of people actually receiving benefits under\nregular state programs totaled 2,436,000 in the week ended\nMarch 21, the latest period for which that figure was\navailable.\n    That was down from 2,480,000 the previous week.\n     \n Reuter\n&#3;',0
+'CLEVITE INDUSTRIES SAYS J.P. INDUSTRIES OFFERED 13.50\nDLRS A SHARE TO BUY COMPANY\n ',0
+'SUNTRUST BANKS INC &lt;STI> 1ST QTR NET Shr 54 cts vs 49 cts\n    Net 70.2 mln vs 64.0 mln\n    NOTE: Share adjusted for two-for-one split in July 1986.\n    Results restated for pooled acquisition of Third NAtional\nCorp in December 1986.\n    Net chargeoffs 15.0 mln dlrs vs 14.2 mln dlrs.\n    Assets 25.8 billion dlrs, up 7.2 pct from a year earlier,\ndeposits 21.1 billion, up 9.4 pct, and loans 17.1 billion dlrs,\nup 17.2 pct.\n Reuter\n&#3;',0
+'INTERNATIONAL THOMSON TO REPORT IN U.S. FUNDS &lt;International Thomson Organisation Ltd>\nsaid it will report financial results in U.S. funds rather than\nsterling, beginning from Jan 1, 1987.\n    It said the change will not be applied retroactively to\nprior financial periods.\n    The company said as a result of recent investments, most of\nits assets now are located in the United States.\n            \n Reuter\n&#3;',0
+'PHILIP CROSBY ASSOCIATES INC &lt;PCRO> 4TH QTR NET Shr three cts vs 18 cts\n    Net 220,000 vs 1,250,000\n    Revs 11.8 mln vs 9,430,000\n    Year\n    Shr 45 cts vs 69 cts\n    Net 3,400,000 vs 4,037,274\n    Revs 45.1 mln vs 34.3 mln\n Reuter\n&#3;',0
+'COLONIAL AMERICAN BANKSHARES CORP &lt;CABK> 1ST QTR Shr 52 cts vs 40 cts\n    Qtly div 18 cts vs 15 cts prior\n    Net 793,740 vs 603,661\n    NOTE: Share adjusted for 10 pct stock dividend in November\n1986.\n    Dividend pay May One, record April 25.\n Reuter\n&#3;',0
+'RPT - ARGENTINE GRAIN/OILSEED EXPORT PRICES ADJUSTED The Argentine Grain Board adjusted\nminimum export prices of grain and oilseed products in dlrs per\ntonne FOB, previous in brackets, as follows:\n    Sorghum 64 (63), sunflowerseed cake and expellers 103 (102)\n, pellets 101 (100), meal 99 (98), linseed oil 274 (264),\ngroundnutseed oil 450 (445), soybean oil 300 (290), rapeseed\noil 290 (280).\n    Sunflowerseed oil for shipment through May 323 (313) and\njune onwards 330 (320).\n   [...]
+'CLEVITE &lt;CLEV> GETS 13.50 DLR/SHR OFFER Clevite Industries Inc said it\nreceived a written proposal from J.P. Industries Inc &lt;JPI>\nseeking to buy all of its outstanding shares for 13.50 dlrs a\nshare.\n    Clevite\'s stock was trading on NASDAQ at 13-1/4.\n    J.P. Industries recently completed the acquisition of\nClevite\'s Engine Parts Division.\n    J.P. Industries said its proposed transaction would be\nfinanced through borrowings under its available bank lines and\na bridge  [...]
+'JAPAN BUSINESS LEADERS SAY G-7 ACCORD WORRYING The leaders of two of Japan\'s top business\ngroups said in separate statements the Group of Seven (G-7)\naccord reached in Washington yesterday is of deep concern to\nJapan because it shows the major industrial nations regard the\nyen\'s current level as appropriate.\n    Eishiro Saito, chairman of the Federation of Economic\nOrganizations (Keidanren), said the yen\'s present rate is well\nabove adequate levels. He did not elaborate.\n     [...]
+'ARGENTINE CATTLE MARKET REPORT ABOUT 3,314 HEAD OF CATTLE WERE\nAUCTIONED IN LINIERS CATTLE MARKET, AGAINST 13,952 ON WEDNESDAY\nAND 9,217 LAST THURSDAY, TRADE SOURCES SAID.\n    MAXIMUN PRICES, IN AUSTRALES PER KILO, WITH DOLLAR\nEQUIVALENT IN BRACKETS, INCLUDED:\n                               TODAY     WEDNESDAY\n    STEERS OVER 480 KILOS   1.02(0.658) 1.015(0.654)\n    STEERS 460 TO 480 KILOS 1.05(0.677) 1.032(0.665)\n    COWS FOR CANNING        0.56(0.361) 0.56 (0.361) REUTER\n&#3;',0
+'U.K. MONEY MARKET DEFICIT REVISED DOWNWARD The Bank of England said it has revised\nits estimate of today\'s shortfall to 350 mln stg from 400 mln,\nbefore taking account of 103 mln stg morning assistance.\n REUTER\n&#3;',0
+'PHYSIO TECHNOLOGY &lt;PHYT> SEES LOSS, IN DEFAULT Physio Technology Inc said it\nexpects to have a third quarter, ended March 31, loss of about\n200,000 dlrs and is in default on its bank loan because of the\nresignation of chairman and chief executive officer.\n    The company said the loss followed four quarters of modest\nprofits. In the year ago quarter it earned 11,000 dlrs, or one\ncent a share. For the first half of fiscal 1987, it reported a\nprofit of 42,000 dlrs, or two cts a  [...]
+'WASHINGTON FEDERAL SAVINGS &lt;WFSL> 2ND QTR NET Qtr ends March 31\n    Shr one dlr vs 76 cts\n    Net 11.9 mln vs 8,929,000\n    Six mths\n    Shr 1.92 dlrs vs 1.43 dlrs\n    Net 22.8 mln vs 16.8 mln\n    NOTE: full name of bank is washington federal savings and\nloan association.\n Reuter\n&#3;',0
+'U.S. ENERGY FUTURES CALLED UNCHANGED TO LOWER Traders expect U.S. energy futures will\nopen unchanged to slightly lower this morning with support near\nyesterday\'s lows.\n    Crude futures are called unchanged to five cts weaker\ntracking unchanged domestic crudes and North Sea Brent crude,\nwhich traded at 18.01 dlrs a barrel today, about ten cts below\nyesterday\'s New York close.\n    Traders said the supply squeeze in 15-day forward April\nBrent appears to have ended.\n    Product  [...]
+'PONCE FEDERAL BANK F.S.B. &lt;PFBS> 1ST QTR NET Shr 63 cts vs 89 cts\n    Net 3,425,216 vs 3,370,682\n    Avg shrs 5,421,330 vs 3,803,425\n    NOTE: net for both qtrs reflects gains on sales of\nsecurities of 1,755,137, or 51 pct of net, in 1987; and\n3,001,222, or 89 pct of net in 1986.\n Reuter\n&#3;',0
+' BUNDESBANK SEES NO REASON TO CHANGE MONETARY COURSE -\nVICE-PRESIDENT SCHLESINGER\n ',0
+'U.K. MONEY MARKET DEFICIT REMOVED The Bank of England said it has satisfied\nits revised estimate of today\'s shortfall in the money market,\nproviding 261 mln stg assistance in afternoon operations.\n    The Bank bought in band one, 60 mln stg bank bills at 9-7/8\npct and in band two 200 mln stg bank bills and one mln stg\ntreasury bills at 9-13/16 pct. This brings the total help so\nfar today to 364 mln stg, compared with its deficit estimate of\n350 mln stg.\n REUTER\n&#3;',0
+'LEBANESE POUND FALLS SHARPLY AGAINST DOLLAR The Lebanese Pound fell sharply against\nthe U.S. Dollar again today with dealers attributing the\ndecline to continued political uncertainty.\n    The pound closed at 118.25/118.75 against the dollar\ncompared to yesterday\'s close of 115.60/115.80.\n    \"Political deadlock is reflected in the pound\'s position.\nThere was more demand and less on offer in the market,\" one\ndealer told Reuters.\n    The pound, which was at 18 to the dollar i [...]
+'BROWN BOVERI UND CIE AG LIFTS 1986 DIVIDEND Dividend on 1986 business 12 marks per share vs seven\nmarks.\n    (Company is a subsidiary of Switzerland\'s BBC AG Brown\nBoveri und Cie &lt;BBCZ.Z>).\n Reuter\n&#3;',0
+'LONDON FREIGHT MARKET FEATURES GRAIN OUT OF U.S. Moderately active grain fixing was\nreported out of the U.S. But none of the business involved the\nsignificant voyages to the Continent or Japan, ship brokers\nsaid.\n    A steady 13.50 dlrs was paid from the U.S. Gulf to Morocco\nand 23.25 dlrs was paid for 27,000 long tons from the Gulf to\nTaiwan. A vessel carrying 13,500 long tons of bagged wheat\nflour from the Gulf to Aqaba received a lump sum of 472,500\ndlrs.\n    Grain from the  [...]
+'HOG AND CATTLE SLAUGHTER GUESSTIMATES Chicago Mercantile Exchange floor\ntraders and commission house representatives are guesstimating\ntoday\'s hog slaughter at about 287,000 to 295,000 head versus\n292,000 week ago and 322,000 a year ago.\n    Cattle slaughter is guesstimated at about 124,000 to\n128,000 head versus 129,000 week ago and 134,000 a year ago.\n Reuter\n&#3;',0
+'WHIRLPOOL CORP 1ST QTR SHR 66 CTS VS 67 CTS\n ',0
+'BRAZILIAN SOY RAINFALL THE FOLLOWING RAINFALL WAS RECORDED IN\nTHE 24 HOURS UP TO (1200) GMT TODAY\n    PARANA STATE: CASCAVEL NIL, PONTA GROSSA NIL,CAMPO MOURAO\nNIL, LONDRINA NIL, MARINGA NIL.\n    RIO GRANDO DO SUL STATE: PASSO FUNDO NIL, SANTA MARIA 7.0\nMILLIMETRES, CRUZ ALTA 8.5 MM, SAO LUIZ GONZAGA 4.4 MM. REUTER\n&#3;',0
+'BUNDESBANK SEES NO CHANGE IN MONETARY COURSE The Bundesbank sees no current reason\nto change monetary course, vice-president Helmut Schlesinger\ntold Reuters in a telephone interview.\n    Schlesinger was responding to questions following remarks\nyesterday by Bundesbank board member Claus Koehler and West\nBerlin state central bank president Dieter Hiss, which, dealers\nsaid, revived some speculation that German interest rate cuts\nmay once again be under discussion.\n    Schlesinger  [...]
+'BRAZILIAN COFFEE RAINFALL THE FOLLOWING RAINFALL WAS RECORDED IN\nTHE AREAS OVER THE PAST 24 HOURS\n    PARANA STATE: UMUARAMA NIL, PARANAVAI NIL, LONDRINA NIL,\nMARINGA NIL.\n    SAO PAULO STATE PRESIDENTE PRUDENTE NIL, VOTUPORANGA NIL,\nFRANCA NIL, CATANDUVA NIL, SAO CARLOS NIL, SAO SIMAO NIL.\n    MINAS GERAIS STATE: GUAXUPE NIL, TRES PONTAS NIL. REUTER\n&#3;',0
+'E.F. HUTTON LBO INC SAID TENDER OFFER BY PC ACQUISITTION\nFOR PUROLATOR COURIER EXPIRED\n ',0
+'WORLD BANK TO SUPPORT SRI LANKA IF DEFICITS CUT The World Bank will support Sri Lanka\'s\ndevelopment program provided the country reduces its budget and\ncurrent account deficits, the Ministry of Finance said.\n    It said Bank President Barber Conable at a meeting with Sri\nLanka\'s Finance Minister Ronnie de Mel in Washington also\nemphasised the need for structural adjustment and reform to the\neconomy, battered by five years of separatist disturbances.\n    Officials said Sri Lanka [...]
+'E.F. HUTTON LBO INC SAYS UNIT TERMINATES MERGER AGREEMENT\nWITH PUROLATOR COURIER\n ',0
+'GEMINA HAS NO COMMENT ON AMBROSIANO REPORT Holding company &lt;Gemina Spa> said it had\nno comment on an Italian press report today that it has\nacquired a 12 pct stake in &lt;Nuovo Banco Ambrosiano Spa>.\n    Italian daily La Repubblica said that Gemina paid 205\nbillion lire for the shareholding from several Italian banks. A\nGemina spokeswoman told Reuters, \"We have nothing to say about\nthe report.\"\n    A spokeswoman for Milan-based Ambrosiano said, \"We have no\ninformation at t [...]
+'VOLKSWAGEN DIVIDEND UNCHANGED ON 1986 Dividend on 1986 business unchanged at 10 marks per\nordinary share. Company also set dividend of 11 marks for new\npreference shares, which were issued last year.\n    (Note: Company has said profit will match 1985 level,\ndespite provisions of 480 mln marks connected with alleged\ncurrency fraud. Group net profit in 1985 was 596 mln marks,\nparent company net was 477 mln marks. Company\'s full name is\nVolkswagen AG &lt;VOWG.F>).\n REUTER\n&#3;',0
+'WHIRLPOOL CORP &lt;WHR> 1ST QTR NET Shr 66 cts vs 67 cts\n    Net 48,700,000 vs 49,300,000\n    Sales 961.0 mln vs 870.6 mln\n    Avg shrs 74,123,837 vs 73,374,398\n Reuter\n&#3;',0
+'U.S. SAID TO VIEW G-7 MEETING AS MAJOR SUCCESS The United States, which has long\nsought Japanese action to stimulate its economy, appears to be\nsatisfied Tokyo\'s latest package is a major development and\nallows leading industrial nations to reaffirm their agreement\nto stabilize currencies.\n    Monetary sources said they believed that U.S. Treasury\nSecretary James Baker considered Tokyo\'s package, announced\nyesterday, to be a major stimulation of the Japanese economy.\n    But y [...]
+'BANK OF FRANCE LEAVES INTERVENTION RATE UNCHANGED The Bank of France said it left its\nintervention rate unchanged at 7-3/4 pct when it injected funds\nin the market against first category paper in today\'s money\nmarket intervention tender.\n    Money market dealers had earlier expressed mixed views on\nthe possibility of quarter point cut.\n    The rate was last adjusted on March 9, when it was cut to\n7-3/4 pct from the eight pct rate set in January.\n REUTER\n&#3;',0
+'GLOBAL ECONOMIC SLOWDOWN RAISES NEW DEBT FEARS The global economy is expected to\nweaken this year, adding new worries to an already serious\npoverty outlook, economic analysts said.\n    For finance ministers and central bankers attending this\nweek\'s semi-annual meetings of the International Monetary Fund\nand World Bank, the new figures released by the IMF add an\nadditional concern.\n    The Fund estimated world output would only grow by 2.7 pct\nthis year, versus 2.9 pct last year [...]
+'SPANISH EMPLOYERS WORRIED BY HIGH INTEREST RATES The head of Spain\'s employers\'\nfederation, Jose Maria Cuevas, said employers were worried\nabout the government\'s monetary policies because high real\ninterest rates were hampering investment.\n    He told a news conference wage pacts signed so far this\nyear were not endangering the government\'s five pct inflation\ntarget. The government\'s perceived need to control inflation by\nkeeping a tight rein on credit was unnecessary, he sa [...]
+'SHOWBOAT &lt;SBO> DECLARES STOCK SPLIT Showboat Inc said its board declared a\ntwo-for-one stock split, payable to shareholders of record on\nMay 15.\n Reuter\n&#3;',0
+'LEAD PRICES RISE ON FINELY BALANCED PHYSICALS Lead prices have risen this week against\na background of a finely balanced physical sector, traders\nsaid.\n    Further gains are possible if the USSR steps up its buying\nor if labour problems develop in North America, they added.\n    London Metal Exchange (LME) prices are unusually buoyant at\na time of year when seasonal demand is normally slackening and\nprices tending to drift lower.\n    This buoyancy is generally attributed by trade [...]
+'REXHAM CORP &lt;RXH> 1ST QTR NET Shr 70 cts vs 42 cts\n    Net 2,918,000 vs 1,746,000\n    Sales 68.3 mln vs 53.5 mln\n    NOTE: 1987 net includes pretax gain 400,000 dlrs from\nchange in pension accounting.\n    1987 results include Production Graphics Corp and Systems\nTechnology and Weapons System Test Divisions of NEw Technology\nInc, acquired December 30, 1986.\n Reuter\n&#3;',0
+'FIRST EASTERN CORP &lt;FEBC> 1ST QTR NET Shr 50 cts vs 47 cts\n    Net 3,445,000 vs 3,193,000\n    NOTE: Share adjusted for two-for-one stock split in January\n1987.\n Reuter\n&#3;',0
+'FHLBB CHANGES SHORT-TERM DISCOUNT NOTE RATES The Federal Home Loan Bank Board\nadjusted the rates on its short-term discount notes as follows:\n    MATURITY   NEW RATE  OLD RATE  MATURITY\n  30-174 days  5.00 pct  5.00 pct    30-87 days\n 175-190 days  5.85 pct  5.82 pct   88-103 days\n 191-270 days  5.00 pct  5.00 pct  104-179 days\n 271-288 days  5.92 pct  5.85 pct  180-205 days\n 289-360 days  5.00 pct  5.00 pct  206-360 days\n                       \n Reuter\n&#3;',0
+'ANCHOR FINANCIAL &lt;AFCX> TO MAKE ACQUISITION Anchor Financial Corp said it\nhas agreed to acquire Waccamaw State Bank of Surfside Beach,\nS.C., in an exchange of 1.435 Anchor shares for each Waccamaw\nshare, subject to regulatory and shareholder approvals.\n    Waccamaw had assets of 22.8 mln dlrs as of March 31.\n Reuter\n&#3;',0
+'STOLTENBERG NOT SURPRISED BY DOLLAR REACTION West German Finance Minister Gerhard\nStoltenberg said he was not surprised by the overnight decline\nof the dollar in foreign exchange markets.\n    Speaking briefly with reporters before entering a meeting\nof the International Monetary Fund he said, \"These minor\nmovements don\'t really affect us.\"\n    The dollar declined in the initial reaction to a statement\nby the Group of Seven industrial countries reaffirming their\nParis agreemen [...]
+'ASARCO UPS U.S. LEAD PRICE 0.50 CT TO 26.50 CTS Asarco Inc said it is increasing its\nbase spot sales price for refined lead by one-half cent to\n26.50 cents a lb, FOB, delivered in carload lots, effective\nimmediately.\n Reuter\n&#3;',0
+'E.F. HUTTON &lt;EFH> UNIT\'S PUROLATOR OFFER EXPIRES E.F. Hutton LBO Inc said the tender\noffer by its wholly owned unit, PC Acquisition Inc, for\nPurolator Courier Corp &lt;PCC> expired at 2400 EDT yesterday\nwithout the purchase of any Purolator common stock.\n    Hutton added that PC Acquisition also terminated its merger\nagreement with Purolator.\n    Hutton said the offer, which had been conditioned upon the\ntender of at least 5,116,892 Purolator shares, or about\ntwo-thirds of t [...]
+'ABBOTT LABORATORIES 1ST QTR NET SHR 62 CTS VS 52 CTS\n ',0
+'INDIA FOODGRAIN TARGET 160 MLN TONNES IN 1987/88 India\'s national foodgrain target has\nbeen fixed at 160 mln tonnes in 1987/88 (Apr-Mar), unchanged\nfrom the 1986/87 target, the Agriculture Ministry said in its\nannual report for 1986/87.\n    Actual output was estimated at 151 mln tonnes in 1986/87\ndue to failure of monsoon rains in 15 out of 35 meterological\nsub-divisions of the country.\n    The report gave the targets for various crops with\nestimated harvested crops in 1986/87  [...]
+'CERTIFICATED COTTON STOCKS Certificated cotton stocks deliverable\non the New York Cotton Exchange No 2 cotton futures contract as\nof April 8 were reported at 34,661 bales, down 421 bales from\nthe previous day\'s figure. There were no bales awaiting review\nand 1,218 bales awaiting decertification.\n Reuter\n&#3;',0
+'REICHHOLD CHEMICAL &lt;RCI> SETS ANTI-TAKEOVER PLAN Reichhold Chemical Inc said its\nboard adopted a warrant dividend plan in which one preferred\nstock purchase right will be distributed as a dividend on each\ncommon share outstanding.\n    The company said its warrant dividend plan is designed to\nprotect its shareholders against unsolicted, coercive attempts\nto aquire control without making an adequate offer for all\nshares.\n    Reichhold said the adoption is not a response to any\ [...]
+'ABBOTT LABORATORIES INC &lt;ABT> 1ST QTR NET Shr 62 cts vs 52 cts \n    Net 142.0 mln vs 123.0 mln\n    Sales 1.00 billion vs 865.0 mln\n\n Reuter\n&#3;',0
+'HANSON &lt;HAN> TO BUY INT\'L PROTEIN &lt;PRO> STOCK International Proteins Corp said\nit has agreed to sell in a private placement 330,000 common\nshares at 11.75 dlrs a share to a U.S. subsidiary of Hanson\nTrust Plc.\n    In addition, David Clarke the president of another Hanson\nTrust subsidiary, Hanson Industries, will be named chairman of\nInternational Proteins\'s executive committee upon his election\nto the board at the annual meeting.\n    International Proteins recently acqui [...]
+'EGYPT BUYS PL 480 WHEAT FLOUR - U.S. TRADERS Egypt bought 125,723 tonnes of U.S.\nwheat flour in its PL 480 tender yesterday, trade sources said.\n    The purchase included 51,880 tonnes for May shipment and\n73,843 tonnes for June shipment. Price details were not\navailable.\n Reuter\n&#3;',0
+'SPAIN HAS 35 MLN DLR CURRENT SURPLUS FEBRUARY Spain had a 35 mln dlr current account\nsurplus in February compared with a 68 mln dlr surplus in\nJanuary and a 355 mln dlr surplus in February last year, Bank\nof Spain figures show.\n    Spain\'s trade deficit narrowed to 581 mln dlrs compared\nwith 664 mln dlrs in January but the large increase in non-oil\nimports contributed to the substantial increase over the 159\nmln dlr deficit registered in February 1986.\n    Exports at 2.58 billi [...]
+'INDIA OILSEED OUTPUT FORECAST TO RISE India\'s oilseed output is expected to\nrise to 12.25 mln tonnes in 1986/87 ending October, up on 11.15\nmln in 1985/86 but down from 12.95 mln harvested in 1984/85,\nthe Agriculture Ministry\'s 1986/87 report said.\n    But the forecast for 1986/87 is well below a target of 14.8\nmln tonnes fixed for the year, it said, adding bad weather hit\ngroundnut and other oilseed crops.\n    The National Oilseeds Development Program will invest 300\nmln rupe [...]
+'EXXON &lt;XON> SOUTH AFRICAN UNIT ACQUIRED BY ZENEX &lt;Zenex Oil Pty Ltd> said it\nacquired the interests of Esso South Africa, the local\nsubsidiary of Exxon Corp &lt;XON), and will use up to 20 mln rand\nin profits to finance educational and social programs.\n    The profit scheme will begin after Zenex has paid Exxon an\nundisclosed purchase price for Esso, Zenex chairman John\nTruscott said in a statement.\n    The acquisition follows the Exxon withdrawal from South\nAfrica announc [...]
+'SALLIE MAE ADJUSTS SHORT-TERM DISCOUNT NOTE RATES The Student Loan Marketing\nAssociation said its rates on short-term discount notes were as\nfollows:\n    MATURITY   NEW RATE    OLD RATE  MATURITY\n    5-14 days  5.80 pct    5.75 pct     5-14 days\n  15-360 days  5.00 pct    5.00 pct    15-85 days\n                           5.80 pct    86-91 days\n                           5.00 pct   92-176 days\n                           5.83 pct  177-183 days\n                           5.00 pct  [...]
+'FREDDIE MAC ADJUSTS SHORT-TERM DISCOUNT RATES The Federal Home Loan Mortgage Corp\nadjusted the rates on its short-term discount notes as follows:\n   MATURITY   RATE       OLD RATE  MATURITY\n    33 days   6.00 pct   6.00 pct  33 days\n  \n Reuter\n&#3;',0
+'ARGENTINE GRAIN BELT WEATHER REPORT ARGENTINE GRAIN BELT TEMPERATURES\n(CENTIGRADE) AND RAIN (MM) IN THE 24 HOURS TO 12.00 GMT WERE:\n    ...............MAX TEMP..MIN TEMP..RAINFALL\n    BUENOS AIRES.......24.......12............0\n    BAHIA BLANCA.......22........7............0\n    TRES ARROYOS.......22........8............0\n    TANDIL.............22........7............0\n    JUNIN..............24.......11............0\n    SANTA ROSA.........--........6............0\n    CORDOBA... [...]
+'VW SAYS 480 MLN MARKS MAXIMUM FOR CURRENCY LOSSES Losses for Volkswagen AG\n&lt;VOWG.F>, VW, linked to an alleged foreign currency fraud will\nnot exceed the 480 mln marks provision already made, a VW\nspokesman said.\n    The spokesman was commenting after VW had confirmed it\nwould pay an unchanged 10 mark dividend for ordinary shares on\n1986 business, despite the provision.\n    One West German newspaper today quoted foreign currency\ndealers in Frankfurt as speculating that the tot [...]
+'YUGOSLAVIA TO TENDER FOR 100,000 TONNES WHEAT Yugoslavia will tender April 14 for\n100,000 tonnes of wheat, the U.S. Agriculture Department\'s\nCounselor in Belgrade said in a field report.\n    The report, dated April 7, said the wheat must be from 1986\nand 1987 harvest, and imports of soft wheat from Europe and\nfrom other suppliers will not be considered.\n    It said the imports will be used to rebuild the federal\nreserves and as a result will not be subject to import\nsurcharges. [...]
+'FEDERATED DEPARTMENT STORES MARCH SALES UP 4.9 PCT\n ',0
+'PRICES GENERALLY LOWER AT NAIROBI COFFEE AUCTION Prices were lower at this week\'s coffee\nauction for all grades and qualities except better quality AB\ngrades, which held steady, the Coffee Board of Kenya said.\n    The board said it offered 35,000 bags and sold 32,876.\n    So far this coffee year, Kenya has sold 918,707 bags to all\nmarkets, of which 326,182 are for the 1986/7 pool, with an\noverall average price of 41,500 shillings a tonne, it added.\n    The board will offer 35,00 [...]
+'ALEX. BROWN &lt;ABSB> SETS SPLIT, TO OFFER SHARES Alex. Brown Inc said it has declared a\nthree-for-two stock split, payable May 29, record May 22.\n    The company also said it has filed to offer 912,000 common\nshares, including 162,000 to be sold by a shareholder, with\ncompany proceeds to be used for working capital and general\ncorporate purposes.  Its Alex. Brown and Sons Inc subsidiary is\nlead underwriter.\n    The offering is expected to be made before the record date\nof the s [...]
+'HIGHLAND SUPERSTORES INC &lt;HIGH> 4TH QTR NET Period ended Jan 31\n    Shr 38 cts vs 61 cts\n    Net 7,012,000 vs 11,193,000\n    Revs 223.0 mln vs 200.3 mln\n    Year\n    Shr 1.11 dlrs vs 1.36 dlrs\n    Net 20,214,000 vs 23,602,000\n    Revs 656.5 mln vs 520.5 mln\n    Avg shrs 18,257,631 vs 17,376,480\n Reuter\n&#3;',0
+'LVI GROUP &lt;LVI> TO MAKE ACQUISITION LVI Group Inc said it has agreed in\nprinciple to purchase all outstanding shares of &lt;Spectrum\nHolding Corp> for a proposed 13 mln dlrs in cash.\n    LVI said an additional 10 mln dlrs in common stock and\nseven mln dlrs in notes will become payable if Spectrum has\ncertain minimum future earnings.\n    LVI, an interior construction firm, said the acquisition is\nsubject to execution of a definitive agreement and completion\nof due diligence.\n [...]
+'TEXAS AMERICAN &lt;TAE> OMITS PREFERRED PAYOUT Texas American Energy Corp said\nits board has decided to again omit the quarterly dividend on\nits 2.575 dlr cumulative convertible exchangeable preferred\nstock.\n    The dividend would have been payable May One.  The company\nlast paid 64.3 cts a share on the issue in August 1986.\n Reuter\n&#3;',0
+'VORNADO INC &lt;VNO> 4TH QTR JAN 31 NET Shr 1.64 dlrs vs 1.56 dlrs\n    Net 4,583,000 vs 5,313,000\n    Revs 20.1 mln vs 19 mln\n    Avg shrs 2.8 mln vs 3.4 mln\n    Year\n    Shr 5.06 dlrs vs 5.92 dlrs\n    Net 16 mln vs 20.3 mln\n    Revs 74.6 mln vs 68 mln\n    Avg shrs 3.2 mln vs 3.4 mln\n Reuter\n&#3;',0
+'BRENDA MINES SELLING KERR ADDISON SHARES &lt;Brenda Mines Ltd> said it sold\n2,830,390 &lt;Kerr Addison Mines Ltd> shares to a group of\nunderwriters led by Wood Gundy Inc and Brown, Baldwin Nisker\nLtd for redistribution.\n    Financial terms were undisclosed.\n Reuter\n&#3;',0
+'PHOENIX FINANCIAL &lt;PHFC> BUYS DATA ACCESS STAKE Data Access Systems Inc said\nchairman David Cohen has sold 1,800,000 common shares to\nPhoenix Financial corp for undisclosed terms and resigned as\nchairman and chief executive officer.\n    The company said Phoenix Financial now has a 27 pct\ninterest in Data Access and effective control.\n    Data Access said Phoenix chairman Martin S. Ackerman has\nbeen named chairman of Data Access as well and two other\nPhoenix representatives ha [...]
+'HEALTH AND REHABILITATION &lt;HRP> INITIAL PAYOUT Health and Rehabilitation\nProperties Trust said it declared an intitial dividend of 55\ncts per share for the period ending March 31, 1987\n    The dividend will be payed May 20 to shareholders of record\non April 20, the company said.\n    The company said it organized in late 1986 and closed its\nintitial public offering of shares Dec 23, 1986.\n    The initital dividend includes five cts attributable to the\nperiod between Dec 23 and [...]
+'T. ROWE PRICE &lt;TROW> SEES HIGHER FIRST QUARTER T. Rowe Price Associates said its\nfirst quarter earnings rose about 50 pct from the year-ago\n2,634,000 dlrs and revenues about 30 pct from the year-ago 24.2\nmln dlrs.\n    It said it expects \"very good\" earnings and revenue growth\nthis year.  In 1986 it earned 14.8 mln dlrs on revenues of\n111.1 mln dlrs.\n Reuter\n&#3;',0
+'GENERAL PARTNERS CUTS STAKE IN GENCORP &lt;GY> General Partners told the Securities\nand Exchange Commission it has reduced its stake in GenCorp Inc\nto 8.6 pct, from 9.8 pct, by selling 250,000 shares at a price\nequal to 118.5 dlrs per share.\n    General Partners, which includes GC Holdings Inc and\nGeneral Acquisitions Inc, said yesterday it was dropping its\n100-dlr-a-share hostile takeover bid for GenCorp because of\nGenCorp\'s move to buy back its shares for up to 130 dlrs each.\ [...]
+'HERITAGE FINANCIAL SERVICES &lt;HERS> 1ST QTR NET Shr 45 cts vs 43 cts\n    Net 1,503,000 vs 938,000\n    Avg shrs 3,358,664 vs 2,158,664\n    NOTE: Company had its initial public offering of 1,200,000\nshares in October, 1986\n Reuter\n&#3;',0
+'NATIONAL COMPUTER &lt;NLCS> SEES EARNINGS GROWTH National Computer Systems Inc\nexpects fiscal year earnings to improve by about 20 pct, the\ncompany told analysts, although it said the April 30 first\nquarter should show \"down earnings and virtually flat\nrevenues.\"\n    Chairman Charles Oswald said National Computer has taken\nsteps to improve margins. He said revenues are expected to\nincrease modestly because of the company\'s decision to downsize\nits leasing business, nonrecurri [...]
+'U.K. CHANCELLOR LAWSON SAYS THERE MAY BE NEED TO CUT\nINTEREST RATES IN SOME COUNTRIES\n ',0
+'REXHAM &lt;RXH> REPURCHASES STAKE FROM NORTEK &lt;NTK> Rexham Corp said it has\nrepurchased 381,050 of its shares or 9.1 pct from Nortek Inc\nfor 42 dlrs each, and Nortek has withdrawn its proposal to\nacquire Rexham for 43 dlrs per share.\n    Rexham said Nortek has also agreed not to buy Rexham shares\nor take other actions under a 10-year standstill agreement. \nThe Rexham board had rejected the Nortek bid as inadequate.\n    The company also said its board has authorized the\nrepurc [...]
+'EXXON &lt;XON> CUTS HEATING OIL PRICE, TRADERS SAID Oil traders in the New York area said\nExxon Corp\'s Exxon U.S.A. unit reduced the price it charges\ncontract barge customers for heating oil in New York harbor\n0.50 cent a gallon, effective today.\n    They said the reduction brings Exxon\'s contract barge price\nto 49.75. The price decrease follows sharp declines in heating\noil prices in the spot and futures markets, traders said.\n Reuter\n&#3;',0
+'FHLBB CHANGES SHORT-TERM DISCOUNT NOTE RATES The Federal Home Loan Bank Board\nadjusted the rates on its short-term discount notes as follows:\n    MATURITY   NEW RATE  OLD RATE  MATURITY\n  30-174 days  5.00 pct  5.00 pct   30-174 days\n 175-190 days  5.88 pct  5.85 pct  175-190 days\n 191-270 days  5.00 pct  5.00 pct  191-270 days\n 271-288 days  5.92 pct  5.92 pct  271-288 days\n 289-360 days  5.00 pct  5.00 pct  289-360 days\n                       \n Reuter\n&#3;',0
+'&lt;STRATHFIELD OIL AND GAS LTD> YEAR NET Shr 46 cts vs 48 cts\n    Net 1,196,331 vs 1,341,314\n    Revs 5,153,109 vs 7,680,350\n Reuter\n&#3;',0
+'FED MAY ADD RESERVES TO BANKING SYSTEM The Federal Reserve may intervene in\nthe government securities market to supply temporary reserves\nindirectly via customer repurchase agreements, economists said.\n    They said that while the Fed faces no great urgency to add\nreserves at the start of the two-week maintenance period today\nit would probably do so in order to offset a relatively high\nfederal funds rate.\n    Fed funds opened at 6-3/16 pct and remained there in early\ntrading. Ye [...]
+'DIAMOND CRYSTAL &lt;DSLT> MIGHT SELL SALT UNIT Diamond Crystal Salt Co said it\nmight sell its salt division.\n    The company said it retained First Boston Corp to assist it\nwith the possible sale of the division, \"assuming a fair price\nand reasonable terms can be obtained.\"\n    Diamond Crystal said sale of the unit was in the best\nlong-term interests of its shareholders.\n    The company also said it incorporated its Packet Products\nDivision as of April one. The unit will be an [...]
+'LAWSON SAYS SOME COUNTRIES COULD CUT RATES Nigel Lawson, Britain\'s Chancellor of\nthe Exchequer, said some countries may need to cut interest\nrates with the aim of maintaining exchange rate stability.\n    Speaking to journalists one day after the Group of Seven\ncountries reaffirmed goals set in Paris six weeks ago, he said\ncentral banks would continue to intervene \"as and when\nnecessary.\"\n    He said the G-7 countries were concerned that Japan do more\nto stimulate domestic dem [...]
+'FRENCH FREE MARKET CEREAL EXPORT BIDS DETAILED French operators have requested licences\nto export 320,000 tonnes of free market barley, 225,000 tonnes\nof maize, 25,000 tonnes of free market bread-making wheat and\n20,000 tonnes of feed wheat at today\'s EC tender, trade sources\nsaid.\n    For the barley, rebates of between 138 and 141.25 European\ncurrency units (Ecus) per tonne were sought, for maize they\nwere between 129.65 and 139 Ecus, for bread-making wheat around\n145 Ecus and [...]
+'U.K. POTATO FUTURES TRADING NOT TO BE SUSPENDED Trading on the London potato futures\nmarket will not be suspended, Richard Harris, Chairman of the\nLondon Potato Futures Association (LPFA), said in a statement\nto floor members.\n    It was in response to strong representations by the Potato\nMarketing Board (PMB) complaining of a gross distortion of\nprice which they say will result in large deliveries into the\nphysical market when the April futures position expires.\n    The PMB had [...]
+'GROUP OF 10 WELCOMES LATEST G-7 AGREEMENT The Group of 10 developed nations\nissued a communique welcoming the reaffirmation of the Paris\naccord on currency stability by the Group of Seven leading\nindustrial democracies yesterday.\n    In the communique issued this morning, the G-10 said\n\"prospects of member countries\' economies would be improved by\nstability in the exchange rates of their currencies.\"\n    The G-10 includes the group of seven - the United States,\nCanada, Britai [...]
+'CANAM MANAC WINS 8.5 MLN DLR CONTRACT (The Canam Manac Group Inc) said its\nCanam Steel Works unit received a contract valued at 8.5 mln\ndlrs to supply steel trusses to (Canron Inc) for a new car\nplant in Ingersoll, Ontario.\n    Canam Manac said it will produce the trusses at its Quebec\nand Ontario plants and delivery will be completed by August.\n Reuter\n&#3;',0
+'SPOT TIN EASIER ON EUROPEAN FREE MARKET Spot tin on the European free market was\nindicated in the easier range 4,200 to 4,230 stg per tonne, for\nhigh grade metal in warehouse Rotterdam, down 20 stg from\nyesterday\'s afternoon kerb close.\n    Stability in sterling versus the dollar continued to apply\npressure to a market which is coming close to testing a\npsychological chart support base at 4,200 stg, traders said.\n    Dealers said major consumers still need to cover their May\nan [...]
+'DOLLAR ENDS LOWER IN LACKLUSTRE FRANKFURT The dollar drifted down to end one\npfennig lower after a lacklustre session, held in limits by the\nlack of concrete news from the Group of Seven meeting and\ncomments on the edge of the Washington IMF/World Bank meeting.\n    Dealers said the communique early in the European morning\nfrom the G-7 meeting contained no significant new factors and\nalthough the dollar dipped it generally resisted further\nattempts to push it lower through the day [...]
+'CONSOLIDATED PAPERS INC &lt;CPER> 1ST QTR NET Shr 1.01 dlrs vs 1.08 dlrs\n    Net 21,983,000 vs 23,434,000\n    Sales 174.9 mln vs 161.7 mln\n Reuter\n&#3;',0
+'HUMANA &lt;HUM> TO SELL MEDICAL OFFICES Humana Inc said it has agreed in\nprinciple to sell 68 MedFirst primary medical care facilities\nto &lt;Primedical Corp> for undisclosed terms, with transfers\ntaking place over the next four months.\n    It said it retains 37 MedFirst offices, mostly in the\nChicago area.\n    The transaction is not expected to have any impact on\nearnings, Humana said.\n Reuter\n&#3;',0
+'MET-COIL SYSTEMS CORP&lt;METS> 3RD QTR FEB 28 NET Shr seven cts vs nine cts\n    Net 168,000 vs 206,000\n    Sales 15.3 mln vs 10.9 mln\n    Nine mths\n    Shr 10 cts vs 38 cts\n    Net 228,000 vs 649,000\n    Sales 35.8 mln vs 32.5 mln\n    Qtly div three cts vs three cts prior\n    Pay April 30\n    Record April 20\n Reuter\n&#3;',0
+'FORD RAISES QTLY PAYOUT 10 CTS/SHR TO 75 CTS\n ',0
+'LAWSON SEES NO CHANGE IN U.K. MONETARY POLICY British Chancellor of the Exchequer\nNigel Lawson said he saw no immediate implications for British\nmonetary policy arising from the Group of Seven meeting\nyesterday.\n    \"Exchange rate stability is in the U.K.\'s interest,\" he told\njournalists.\n    Asked what it meant for U.K. monetary policy, he said, \"No,\nI do not think there are any immediate implications.\"\n Reuter\n&#3;',0
+'FORD MOTOR CO &lt;F> RAISES QTLY PAYOUT Qtly div 75 cts vs 65 cts prior\n    Pay June one\n    Record May one\n Reuter\n&#3;',0
+'TALKING POINT/STEEL COMPANIES Steel stocks, which have had a healthy\nrunup recently, still present some short term investment\nopportunities, according to some steel analysts.\n    But others say the upturn, based on strong orders and firm\nprices this spring, has been strictly seasonal and will end\nsoon. They recommend taking profits.\n    \"It\'s that time of year. This is strictly seasonal,\" said\nCharles Bradford of Merrill Lynch and Co. \"Orders will be\nstrong for about two mon [...]
+'DEKALB CORP &lt;DKLBB> 2ND QTR FEB 28 NET Shr 20 cts vs 14 cts\n    Net 2.4 mln vs 1.7 mln\n    Revs 136.7 mln vs 174.4 mln\n    Six Mths\n    SDhr 72 cts vs 82 cts\n    Net 8.6 mln vs 9.9 mln\n    Revs 212.5 mln vs 268.8 mln\n Reuter\n&#3;',0
+'ABBOTT &lt;ABT> SEES GAINS FROM WEAKER DOLLAR Abbott Laboratories Inc said\nits 1987 first quarter record results reflected continued\nproductivity improvement, higher volume, better product mix and\na weaker U.S. dollar.\n    Abbott reported 1987 first quarter earnings rose to a\nrecord 142 mln dlrs or 62 cts a share on record sales of one\nbillion dlrs.\n    Research and development expenses, most of which was\napplied to diagnostic and pharmaceutical products, increased by\n23 pct to [...]
+'EASTERN DISTRIBUTIVE BEEF TRADE WEEKLY - USDA Demand good for moderate\nsupplies of most beef cuts, However, limited interest noted for\ntenderloins/flank steaks. Yield grade 2-3 beef cuts, fabricated\nitems, vacuum packed.\n                          LBS    CHOICE\n ROUND CUTS -steady/up 11.00                 \n 160 round, part bnls     50-85  few 137\n 161 round, bnls          42-80  few 147\n 161 diamond cut          49-85  few 149\n 167 knuckle               8-15  few 148\n 167a knuc [...]
+'BRAZIL COTTON CROP LOWER -- USDA REPORT Brazil\'s 1986/87 cotton crop estimate\nhas been reduced to 710,000 from 735,000 tonnes (lint basis),\nthe U.S. Agriculture Department\'s officer in Sao Paulo said in\na field report.\n    The report, dated April 7, said the reduction is based on\nan expected smaller harvest in the center-south region.\n    The center-south crop is now estimated at 550,000 tonnes --\n25,000 tonnes below the previous estimate.\n    Hot, dry weather during part of J [...]
+'TREASURY\'S BAKER SAYS TRADE, CURRENT ACCOUNT IMBALANCES \"SIMPLY NOT SUSTAINABLE\"\n ',0
+'EC AUTHORISES EXPORT 55,000 TONNES MAIZE,  MAXIMUM REBATE 130 ECUS/TONNE - TRADE SOURCES.\n ',1
+'EC AUTHORISES EXPORT 65,000 TONNES BARLEY,  MAXIMUM REBATE 138.75 ECUS - BRUSSELS TRADE\n ',0
+'RJR NABISCO FIRST QUARTER NET TO INCLUDE 208 MLN DLR GAIN, 209 MLN DLR CHARGE\n ',0
+'BRAZIL COCOA EXPORTERS UNLIKELY TO LIMIT SALES Brazilian cocoa exporters are not\nlikely to follow the example of Cocoa Producers Alliance, CPA,\nmembers, who may limit sales of the product in an effort to\nboost world prices, trade sources said.\n    They said a similar procedure was taken in the past in\nBrazil and that it did not work out according to plans.\n    \"The cocoa market is completely free. Unlike coffee, which\nis controlled through export registrations, cocoa exporters i [...]
+'HEALTH/REHABILITATION &lt;HRP> SETS FIRST PAYOUT Health and Rehabilitation\nProperties Trust said its board declared an initial dividend of\n55 cts, including 50 cts for the first quarter just ended and\nfive cts from its initial operating period that began December\n23.\n    The dividend is payable May 30, record April 20.\n Reuter\n&#3;',0
+'U.S. TREASURY\'S BAKER SAYS RATE SHIFTS ORDERLY Treasury Secretary James Baker said\nthat changes in exchange rates have generally been orderly and\nhave improved the prospects for a reduction in external\nimbalances to more sustainable levels.\n    In remarks before the IMF\'s policy-making Interim\nCommittee, Baker reiterated a Group of Seven statement last\nnight that the substantial exchange rate changes since the\nPlaza agreement 18 months ago have \"now brought currencies\nwithin  [...]
+'TIME &lt;TL> TO SELL PART OF UNIT Time Inc said its Time-Life Video Inc\nsubsidiary has agreed in principle to sell its institutional\ntraining business to Time-Life Video president William V.\nAmbrose for undisclosed terms.\n    It said the business will operate as Ambrose Video\nPublishing.\n Reuter\n&#3;',0
+'SPRINKEL SAYS TAX HIKE WOULD NOT REDUCE DEFICIT Council of Economic Advisers chairman\nBeryl Sprinkel said the Reagan Administration remains strongly\nopposed to a tax increase, including 18 billion dlrs of new\nrevenues in the budget plan by Congressional Democrats.\n    \"We believe that significant increases in taxes would not\nreduce deficits and could have adverse effects on growth,\"\nSprinkel told the House Rules Committee.\n    He said the Administration wanted to continue its p [...]
+'ROYAL BUSINESS GROUP INC &lt;ROY> 2ND QTR MARCH ONE Shr 49 cts vs five cts\n    Shr diluted 45 cts vs five cts\n    Net 651,000 vs 95,000\n    Revs not given\n    1st half\n    Shr 57 cts vs one ct\n    Shr diluted 53 cts vs one ct\n    Net 781,000 vs 56,000\n    Revs not given\n    NOTE: Current year net both periods includes gain 873,000\ndlrs from repurchase of securities.\n    Results exclude Business Forms Division, which is to be\nsold.\n Reuter\n&#3;',0
+'&lt;MSE CABLE SYSTEMS INC> 4TH QTR NET Shr nil vs nil\n    Net 18,534 vcs 27,431\n    Revs 270,032 vs 188,326\n    Avg shrs 6,598,871 vs 6,090,576\n    Year\n    Shr nil vs nil\n    Net 47,299 vs 21,570\n    Revs 1,004,392 vs 677,909\n    Avg shrs 6,618,063 vs 5,931,324\n    NOTE: Share adjusted for one-for-11 reverse split.\n Reuter\n&#3;',0
+'RULE INDUSTRIES INC &lt;RULE> 2ND QTR FEB 28 NET Shr 17 cts vs 10 cts\n    Net 408,000 vs 237,000\n    Revs 8,863,000 vs 6,738,000\n    1st half\n    Shr 27 cts vs 15 cts\n    Net 647,000 vs 356,000\n    Revs 17.2 mln vs 12.5 mln\n Reuter\n&#3;',0
+'NEW JERSEY INVESTOR BUYS 5.2 PCT OF KINARK &lt;KIN> A New Jersey investor, Joseph\nFalkenstein, told the Securities and Exchange Commission he\nholds 5.2 pct of the shares of Kinark Corp.\n    He said he has no plans to change the company and that he\nbought the shares because he believed the stock was undervalued\nand would rise in the next six months.\n reuter\n&#3;',0
+'NATIONAL DISTILLERS &lt;DR> SEES SECOND QTR GAIN National Distillers and Chemical Corp\nexpects to realize a second quarter after-tax gain of four dlrs\nper share from the 545 mln dlr sale of its spirits business to\nAmerican Brands Inc &lt;AMB>.\n    National Distillers\' stock rose 1-1/8 to 65-1/2, after an\nopening delay on the New York Stock exchange for an imbalance\nof orders.\n    \"I think the sales price was higher than most people\nexpected,\" said John Henry of E.F. Hutton Gr [...]
+'WEATHER HURTS ITALIAN ORANGES - USDA REPORT Unfavorable weather conditions during\nthe second week of March caused damage to oranges in the\nCalabria region in southern Italy, the U.S. Agriculture\nDepartment\'s officer in Rome said in a field report.\n    The report, dated April 3, said the region accounts for\nabout 22,000 hectares of the Italian orange crop or about 26\npct of total production.\n    However, orange production in the region for marketing year\n1986/87 is forecast at 5 [...]
+'EC GRANTS FREE MARKET BARLEY, MAIZE EXPORTS The European Commission authorised the\nexport of 65,000 tonnes of free market barley at today\'s tender\nat a maximum rebate of 138.75 European currency units and\n55,000 tonnes of French maize at 130 Ecus, grain traders here\nsaid.\n    It rejected bids for breadmaking and feed wheat, they said.\n Reuter\n&#3;',1
+'FED BUYING DOLLARS FOR YEN IN OPEN MARKET, NEW YORK DEALERS SAY\n ',0
+'WASTE RECOVERY INC &lt;WRII> 4TH QTR NET Shr loss eight cts vs loss nine cts\n    Net loss 311,255 vs loss 157,941\n    Revs 546,069 vs 284,636\n    Avg shrs 3,790,235 vs 1,819,680\n    Year\n    Shr loss 27 cts vs loss 24 cts\n    Net loss 858,624 vs loss 399,385\n    Revs 1,491,518 vs 1,407,441\n    Avg shrs 3,175,157 vs 1,692,700\n Reuter\n&#3;',0
+'BRANCH CORP &lt;BNCH> 1ST QTR NET Shr primary 99ct vs 82 cxts\n    Shr diluted 93 cts vs 78 cts\n    Net 7,784,000 vs 6,357,000\n    Assets 3.25 billion vs 2.74 billion\n    Deposits 2.58 billion vs 2.24 billion\n    Loans 2.20 billion vs 1.81 billion\n Reuter\n&#3;',0
+'KURZ-KASCH UPS STAKE IN COMPONENT TECH &lt;CTEC> Kurz-Kasch Inc, a Dayton thermoset\nmolding maker, told the Securities and Exchange Commission it\nhad increased its holdings in Component Technology Corp by two\npct, to 9.3 pct.\n    It said it bought the 39,000 shares of stock at 5.30-6.875\ndlrs a share for investment purposes.\n Reuter\n&#3;',0
+'BRAZIL SOYBEAN YIELDS SEEN AVERAGE - USDA REPORT Based on field travel in the\nBrazilian state of Parana, soybean yields should be about\naverage or 2.0 to 2.2 tonnes per hectare, the U.S. Agriculture\nDepartment\'s officer in Sao Paulo said in a field report.\n    The report, dated March 24, noted Parana accounts for about\n20 to 24 pct of Brazil\'s total soybean crop.\n    It said generally favorable weather from early December\nthrough February helped compensate for earlier dryness.\ [...]
+'ZAYRE CORP &lt;ZY> RAISES QUARTERLY Qtly div 10 cts vs eight cts prior\n    Pay June Four\n    Record May 14\n Reuter\n&#3;',0
+'FED SEEN BUYING DOLLARS FOR YEN IN OPEN MARKET The Federal Reserve was detected buying\ndollars for yen in the open market as the dollar fell to a\n40-year low of 144.60 yen in nervous late morning trading,\ncurrency dealers said.\n     They said the size of the intervention was relatively\nmodest so far but it was a clear indication that the U.S.\nremained committed to the late February Paris currency\nstabilization accord, which was reaffirmed in Washington last\nnight.\n    A Fed spo [...]
+'RJR NABISCO &lt;RJR> HAS OFFSETTING GAINS, CHARGES RJR Nabisco Inc said its\n1987 first quarter results will include an after-tax gain of\n208 mln dlrs from the sale of Heublein Inc and offsetting\ncharges.\n    The company said its operations are performing well and in\nline with expectations.\n    RJR Nabisco said the charges reflect reserves it\nestablished to cover certain expenses.\n    RJR Nabisco said the expenses covered, on after-tax basis,\ninclude --\n    -- 50 mln dlrs for t [...]
+'BAYBANKS INC &lt;BBNK> 1ST QTR NET Oper shr 1.08 dlrs vs 96 cts\n    Oper shr diluted 1.02 dlrs vs 89 cts\n    Oper net 16.1 mln vs 12.8 mln\n    Avg shrs 14.9 mln vs 13.4 mln\n    Avg shrs 16.1 mln vs 14.8 mln\n    NOTE: 1987 net excludes gain 4,820,000 dlrs from cumulative\neffect of change in calculating depreciation expense.\n Reuter\n&#3;',0
+'FRANCE\'S BALLADUR SAYS TARGET ZONE NOTION NEARER French Finance Minister Edouard\nBalladur said that the financial community is closer to\narriving at a system of target zones for currencies despite the\nfact that little is being said about them.\n    Speaking with reporters at the semiannual meetings of the\nInternational Monetary Fund, Balladur said, \"We are not very far\nfrom the notion of target zones, even if we don\'t say so.\"\n    He told reporters that \"our ideas are progres [...]
+'STUDENT LOAN MARKETING ASSOCIATION &lt;SLM> 1ST QTR Shr 95 cts vs 71 cts\n    Net 42.4 mln vs 34.5 mln\n    Assets 18.61 billion vs 15.66 billion\n Reuter\n&#3;',0
+'FIRE AT TATE/LYLE LONDON JETTY HALTS UNLOADING No raw sugar is being unloaded at Tate\nand Lyles refinery at Silvertown on the River Thames following\na fire yesterday afternoon, Tate and Lyle Plc said.\n    The fire destroyed a large sector of the main conveyor from\nthe raw sugar jetty to the weighhouse.\n    The company said it is not yet known how long the jetty\nwill be out of use but it hoped that by tomorrow unloading of\nthe bulk carrier Mykon Wave will be able to continue using [...]
+'JP INDUSTRIES &lt;JPI> CONFIRMS PROPOSAL JP Industries Inc confirmed the\nannouncement by Clevite Industries Inc &lt;CLEV> that JP\nIndustries has submitted a proposal to Clevite for the\nacquisition of the company at 13.50 dlrs per share in cash.\n    John Psarouthakis, chairman and president of JP Industries,\nsaid that the company hopes to promptly negotiate an agreement\nwith the special committee of Clevite\'s board.\n    In February, JP Industries said it purchased Clevite\'s\neng [...]
+'MEDITRUST &lt;MTRUS> RAISES QUARTERLY Qtly div 43 cts vs 38 cts prior\n    Pay May 15\n    Record April 30  \n Reuter\n&#3;',0
+'MONSANTO &lt;MTC> UNIT SEES OPERATING LOSS IN 1987 Monsanto Corp\'s G.D. Searle and Co unit\nsaid it will report an operating loss for 1987, mainly due to\nexpenses for research and development.\n    Searle chairman Sheldon Gilgore said Searle\'s operating\nloss in 1987 will be less than the 87 mln dlr operating loss in\n1986.\n    He said Searle\'s first quarter sales will be up 21.8 pct to\n179 mln dlrs from 147 mln dlrs in the year ago quarter. In 1986\nSearle\'s sales were 665 mln d [...]
+'STATUS GAME CORP &lt;STGM> 3RD QTR FEB 28 NET Oper shr six cts vs one ct\n    Oper net 194,109 vs 28,751\n    Revs 2,731,688 vs 347,134\n    Avg shrs 3,360,527 vs 2,295,359\n    Nine mths\n    Oper shr 11 cts vs five cts\n    Oper net 356,571 vs 111,545\n    Revs 5,923,907 vs 1,491,852\n    Avg shrs 3,296,982 vs 2,289,762\n    NOTE: Share adjusted for 10 pct stock dividend in December\n1986. Prior year net excludes tax credits of 5,775 dlrs in\nquarter and 17,325 dlrs in nine mths.\n    [...]
+'UNIVERSAL FOODS CORP &lt;UFC> VOTES DIVIDEND Qtly div 20 cts vs 20 cts prior qtr\n    Pay 6 May\n    Record 21 April\n Reuter\n&#3;',0
+'BETZ LABORATORIES INC &lt;BETZ> SETS QUARTERLY Qtly div 35 cts vs 35 cts prior\n    Pay May 14\n    Record April 30\n Reuter\n&#3;',0
+'NORTHWESTERN NATIONAL LIFE &lt;NWNL> UPS PAYOUT Qtly div 24 cts vs 21-1/2 cts prior\n    Pay May 15\n    Record April 24\n    NOTE: Northwestern National Life Insurance Co.\n Reuter\n&#3;',0
+'GRAIN SHIPS WAITING AT NEW ORLEANS Ten grain ships were loading and 14\nwere waiting to load at New Orleans elevators, trade sources\nsaid.\n ELEVATOR                     LOADING  WAITING\n Continental Grain, Westwego     1      6\n Mississippi River, Myrtle Grove 1      0\n ADM Growmark                    1      4\n Bunge Grain, Destrehan          1      0\n    ELEVATOR                LOADING  WAITING\n ST CHARLES DESTREHAN         1      1\n RESERVE ELEVATOR CORP        1      0\n PEA [...]
+'FOOTHILL &lt;FGI>, SIERRITA IN STANDSTILL ACCORD Foothill Group Inc said it reached a\nstandstill agreement with Santa Cruz Resources Inc and its\nparent, Sierrita Resources Inc, that bars the companies from\nacquiring more than a 30 pct interest in Foothill, except\nthrough a business combination approved by Foothill\'s board.\n    The company also said Santa Cruz has advised it that it\nowns 24.7 pct of Foothill\'s outstanding common stock.\n    In addition, Santa Cruz and Sierrita ha [...]
+'FIRST FEDERAL OF MICHIGAN &lt;FFOM> 1ST QTR NET Shr 3.33 dlrs vs 3.39 dlrs\n    Net 37,069,000 vs 36,902,000\n    Avg shrs 10.95 mln vs 10.05 mln\n Reuter\n&#3;',0
+'COLONIAL BANCGROUP &lt;CLBGA> MAKES ACQUISITION Colonial BancGroup said it has\nsigned letter of intent to acquire Community Bank and Trust of\nHartselle, Ala., with assets of 26 mln dlrs, for undisclosed\nterms, subject to approval by regulatory authorities and\nCommunity Bank shareholders.\n    Completion is expected within the next year, it said.\n Reuter\n&#3;',0
+'FAB INDUSTRIES INC &lt;FIT> 1ST QTR FEB 28 NET Shr 69 cts vs 67 cts\n    Net 2,488,000 vs 2,435,000\n    Revs 27.6 mln vs 26.5 mln\n Reuter\n&#3;',0
+'EC COMMISSION AUTHORISED TO BUY MAIZE IN JUNE The European Commission was authorised\nto buy up to one mln tonnes of maize into intervention stores\nin the second half of June, although sales into intervention\nnormally end on April 30, Commission sources said.\n    They said approval was given by the EC\'s Cereals Management\nCommittee because of the possible disturbance of the market due\nto heavy imports of maize under the agreement between the EC\nand the United States.\n    The agr [...]
+'JAPAN BUYS 5,000 TONNES CANADIAN RAPESEED Japan bought 5,000 tonnes Canadian\nrapeseed overnight at an undisclosed price for May shipment,\ntrade sources said.\n Reuter\n&#3;',0
+'NORTHERN TRUST CORP &lt;NTRS> 1ST QTR NET Shr 87 cts vs 73 cts\n    Net 14.7 mln vs 11.7 mln\n    Assets 8.38 billion vs 7.43 billion\n    Loans 3.91 billion vs 3.40 billion\n    Deposits 5.60 billion vs 5.08 billion\n Reuter\n&#3;',0
+'COLOMBIA JAN EXPORTS UP BUT COFFEE VALUES FALL The value of colombian exports other than\ncoffee rose 55 pct in january compared with the same period\nlast year, apparently setting a trend for the trade balance in\n1987, government statistics institute figures show.\n    They amounted to 180.8 mln dlrs fob compared with 147.5 mln\ndlrs for coffee, a drop of 42 pct from last year.\n    The trade balance registered a 35 mln dlr surplus, compared\nwith a 56 mln dlr surplus in january 1986. [...]
+'LONDON GRAIN FREIGHTS 27,000 long tons\nUSG/Taiwan 23.25 dlrs fio five days/1,500 1-10/5 Continental.\n    Trade Banner - 30,000 long tons grain USG/Morocco 13.50\ndlrs 5,000/5,000 end-April/early-May Comanav.\n    Reference New York Grain Freights 1 of April 8, ship\nbrokers say the vessel fixed by Cam from the Great Lakes to\nAlgeria at 28 dlrs is reported to be the Vamand Wave.\n    Reference New York Grain Freights 2 of April 8, they say\nthe Cory Grain maize business from East Lond [...]
+'LONDON SUGAR FREIGHTS TBN 14,00 mt bulk sugar\nFiji/Prai 16 dlrs fio 10,000/1,000 1-10/5 Fiji Sugar Marketing.\n    TBN 15,000 mt bulk sugar Queensland/Japan 14.65 dlrs fio\n10,000/1,000 20-30/4 CSR.\n    ENQUIRIES - Antwerp/1-3 ports Greece 40,000 mt bagged sugar\nindications 750/750 in shipments of 10,000/15,000 tonnes spread\nfrom May to July a/c unnamed charterer.\n    Inchon/India 12,600 mt bagged sugar 1,000/1,000 20/4-5/5\na/c Kaines.\n    Reunion/1-2 ports Portugal 10,000 mt bul [...]
+'LONDON GRAIN FREIGHT ENQUIRIES Antwerp/Libya 5,500 mt bagged flour 14\ndaps 24-27/4.\n    New Orleans/Guanta 9,387 mt bulk hss 3,000/13 days\n25-4/5-5.\n    Naantali/Saudi Red Sea 30,000/35,000 mt barley 4,000/3,000\n20-30/4 or early May.\n    Dunkirk/Xingang 12,000 mt bagged flour 1,500/1,700 13-20/4.\n    Toledo/Seaforth 17,000 mt hss offers 18.50 dlrs four\ndays/8,000 13-15/4.\n    River Plate/Malaysia 20,000/22,000 long tons hss\n2,000/2,000 Apr.\n Reuter\n&#3;',0
+'HOME SAVINGS BANK &lt;HMSB> 1ST QTR NET Shr 51 cts vs not given\n    Net 6,089,000 vs 7,310,000\n    NOTE: Company went public in November 1986.\n    Net includes loan loss provisions of 75,000 dlrs vs 30,000\ndlrs and gains on sale of securities of 756,000 dlrs vs\n2,468,000 dlrs pretax.\n    1986 net includes tax credit 1,022,000 dlrs.\n    1987 net includes 2,400,000 dlr gain from tax credit\nresulting in reduction of goodwill.\n Reuter\n&#3;',0
+'AMOSKEAG BANK SHARES INC &lt;AMKG> 1ST QTR NET Shr 70 cts vs 67 cts\n    Net 6,416,000 vs 6,057,000\n    NOTE: Net includes pretax securities sales gains of\n5,900,000 dlrs vs 5,900,000 dlrs.\n Reuter\n&#3;',0
+'MSR EXPLORATION LTD &lt;MSR> YEAR LOSS Shr loss five cts vs profit 10 cts\n    Net loss 381,391 vs profit 736,974\n    Revs 6,161,391 vs 9,241,882\n    NOTE: Canadian dollars.\n    Proved oil reserves at year-end 3.3 mln barrels, up 39 pct\nfrom a year earlier, and natural gas reserves 4.7 billion cubic\nfeet, off nine pct.\n Reuter\n&#3;',0
+'SOUTHMARK &lt;SM> TO OFFER SPECIAL DIVIDEND Southmark Corp said it will issue its\nshareholders a special dividend right to acquire 22 shares of\nAmerican Realty Trust &lt;ARB> for each 100 shares of Southmark\nthey own.\n    Each right entitles the holder to buy one share of\nbeneficial interest of American Realty Trust at a price of 3.75\ndlrs per share, Southmark said.\n    Southmark said the offer\'s record date is May 1, with an\nex-dividend date of April 27, adding that the it wil [...]
+'EXPORTS OTHER THAN COFFEE RISE SHARPLY IN COLOMBIA Colombian exports other than coffee rose\n55 pct in January compared with the same period last year,\nfigures from the government statistics institute show.\n    Non-coffee exports amounted to 180.8 mln dlrs fob compared\nwith 147.5 mln dlrs for coffee, a drop of 42 pct from last\nyear.\n    The trade balance registered a 35 mln dlr surplus, compared\nwith a 56 mln dlr surplus in January 1986.\n    The national planning department forec [...]
+'TAFT BROADCASTING &lt;TFB> COMPLETES STATION SALE TVX Broadcast Group Inc\n&lt;TVXG> said it has completed the previously-announced purchase\nof five Taft television stations.\n    Last week, TVX said the sale, which was scheduled to close\nthen, had been delayed.\n    Taft said the purchase price was 240 mln dlrs, as\npreviously announced. The price is subject to final\nadjustments, Taft said.\n    Taft did not indicate the size of the gain, if any, it\nwould post on the sale.\n    It  [...]
+'U.S. MARCH RETAIL SALES CUT BY LATE EASTER U.S. retailers\' lackluster March sales\nwere due to a late Easter, according to analysts who expect a\nrecovery in April.\n    \"Sales look soft because of the Easter shift, but\nunderlying business is better than the numbers indicate,\" said\nBear Stearns analyst Monroe Greenstein.\n     Analysts generally average the sales results of March and\nApril to account for the variation of Easter\'s occurance. This\nyear, Easter is being observed on [...]
+'FIRST INTERSTATE EXPECTS BRAZIL, ECUADOR LOAN ACTIONS TO CUT 1987 NET BY 15.4 MLN DLRS\n ',0
+'MOROCCO TENDERS FOR 55,000 TONNES PL 480 SOYOIL Morocco is scheduled to tender April 14\nfor a total of 55,000 tonnes of U.S. soyoil under PL-480 for\nshipments from May through September, private export sources\nsaid.\n    The tender calls for shipment of 6,100 tonnes in May,\n12,200 tonnes each in June, July and August and 12,300 tonnes\nin September, they said.\n Reuter\n&#3;',0
+'MIDLANTIC CORP &lt;MIDL> 1ST QTR NET Shr diluted 1.18 dlrs vs 1.04 dlrs\n    Net 45.0 mln vs 39.2 mln\n    Assets 16.7 billion vs 15.2 billion\n    Deposits 13.0 billion vs 12.1 billion\n    Loans 11.9 billion vs 10.1 billion\n    NOTE: Results restated for merger of Midlantic Banks Inc\nand Continental Bancorp Inc on January 30, 1987.\n Reuter\n&#3;',0
+'COMMUNITY BANK SYSTEM INC &lt;CBSI> 1ST QTR NET Shr 46 cts vs 49 cts\n    Net 1,101,551 vs 831,398\n    NOTE: Share adjusted for two-for-one stock split in May\n1986.\n Reuter\n&#3;',0
+'FITCHBURG GAS &lt;FGE> RAISES QUARTERLY Qtly div 38 cts vs 35 cts prior\n    Pay May 15\n    Record May One\n Reuter\n&#3;',0
+'NORTHERN TRUST &lt;NTRS> NET HURT BY BRAZIL LOANS Northern Trust Corp said its first\nquarter earnings were reduced by 875,000 dlrs by placing 53.2\nmln dlrs of loans to Brazil and six mln dlrs in loans to\nEcuador on a cash basis.\n    Should these loans remain on nonperforming basis for the\nrest of 1987, net income for year will be cut by about 3.2 mln\ndlrs, the bank said.\n    Earlier it posted net income for the period of 14.7 mln\ndlrs or 87 cts a share, up from 11.7 mln dlrs or  [...]
+'DOE RUN RAISES LEAD PRICE 0.50 CT TO 26.50 CTS Doe Run Company said it is\nincreasing the price of its corroding grade lead by one-half\ncent to 26.50 cents a lb, effective immediately.\n    The price is quoted FOB, Herculaneum, Mo., and FOB, Boss,\nMo., with freight allowed for carload quantities.\n   \n Reuter\n&#3;',0
+'SPAIN\'S FOREIGN RESERVES RISE IN FEBRUARY Spain\'s foreign reserves rose by 905 mln\ndlrs in February to total 17.05 billion dlrs, compared with\n14.11 billion dlrs in February 1986, Bank of Spain figures\nshow.\n    Under a new accounting system introduced this month,\nSpain\'s foreign reserves now exclude foreign currency held by\nfinancial institutions.\n    Under the previous system, Spain\'s foreign reserves would\nhave risen by 391 mln dlrs in February, taking into account a\nfal [...]
+'&lt;SULPETRO LTD> 1ST QTR JAN 31 LOSS Shr not given\n    Net loss 9,900,000 vs loss 17,300,000\n    Revs 14.7 mln vs 29.8 mln\n    Note: Previous loss restated.\n Reuter\n&#3;',0
+'WESTERN FEDERAL SAVINGS BANK &lt;WFPR> 1ST QTR NET Shr 74 cts vs 92 cts\n    Net 1,300,450 vs 1,600,258\n    NOTE: Share adjusted for 10 pct stock dividend in July\n1986.\n    Company based in Mayaguez, Puerto Rico.\n Reuter\n&#3;',0
+'FINAL TEST INC &lt;FNLT> 4TH QTR LOSS Shr loss six cts vs loss 88 cts\n    Net loss 123,840 vs loss 1,298,377\n    Revs 1,333,416 vs 385,146\n    Year\n    Shr profit six cts vs loss 1.47 dlrs\n    Net profit 124,872 vs loss 2,171,011\n    Revs 4,618,232 vs 2,959,141\n Reuter\n&#3;',0
+'PROTECTIVE LIFE &lt;PROT> IN ACQUISITION Protective Life Corp said it\nhas signed a letter of intent to assume &lt;Liberty Life Insurance\nCo\'s> group insurance on July 1, subject to regulatory\napprovals.\n    Terms were not disclosed.\n\n Reuter\n&#3;',0
+'A.O. SMITH CORP &lt;SMC> SETS QUARTERLIES Qtly divs Class A and B 20 cts vs 20 cts\n    Pay May 15\n    Record April 30\n Reuter\n&#3;',0
+'CENTRAL BANCORP INC &lt;CBAN> 1ST QTR NET Shr 1.02 dlrs vs 78 cts\n    Net 14.4 mln vs 11.0 mln\n    NOTE: 1987 net includes gain 2,222,000 dlrs from\ntermination of pension plan.\n    Results restated for pooled acquisitions and share adjusted\nfor stock dividends.\n Reuter\n&#3;',0
+'&lt;EMCOR> COMPLETES SALE OF STOCK TO INVESTORS Emcore said it completed\nthe sale of 4.1 mln dlrs of stock to Citicorp Venture Capital\nLtd, Concord Ventures of Dillon Read and Co and private\ninvestors.\n Reuter\n&#3;',0
+'VLSI TECHNOLOGY INC &lt;VLSI> 1ST QTR NET Shr seven cts vs six cts\n    Net 1,612,000 vs 1,406,000\n    Revs 38.2 mln vs 34.3 mln\n    Avg shrs 23,742,000 vs 22,945,000\n Reuter\n&#3;',0
+'BELGIAN CURRENT ACCOUNT SURPLUS WIDENS IN 1986 Belgium\'s current account surplus,\nmeasured on a cash basis, widened sharply to 134.9 billion\nfrancs last year from 17.5 billion in 1985, the Finance\nMinistry said.\n    The increase was due almost entirely to a sharp rise in the\ngoods trade surplus to 126.1 billion francs from 20.4 billion.\n    The services trade surpluses increased to 52.4 billion\nfrancs from 38.9 billion while the deficit on transfers rose\nslightly to 43.6 billio [...]
+'SILICON SYSTEMS INC &lt;SLCN> 2ND QTR MARCH 28 Shr profit five cts vs profit two cts\n    Net profit 325,000 vs profit 105,000\n    Revs 19.5 mln vs 16.1 mln\n    Six Mths\n    Shr profit nine cts vs loss 35 cts\n    Net profit 627,000 vs loss 2,280,000\n    Revs 36.9 mln vs 27.4 mln\n Reuter\n&#3;',0
+'DISEASE PUTS ZIMBABWE BEEF EXPORTS IN JEOPARDY Zimbabwe\'s beef exports to the European\nCommunity (EC), potentially worth 70 mln Zimbabwean dlrs this\nyear, may be jeopardised by an outbreak of foot and mouth\ndisease in southwestern Matabeleland, industry sources said.\n    The country has temporarily suspended beef exports to the\nEC because of the outbreak and awaits a decision from the EC\nveterinary committee, which is considering a formal ban.\n    The outbreak in the country\'s  [...]
+'SHAWMUT CORP &lt;SHAS> 1ST QTR NET Shr 1.32 dlrs vs 1.26 dlrs\n    Net 21.2 mln vs 17.4 mln\n    Avg shrs 16.1 mln vs 13.8 mln\n    Assets 10.0 billion vs 8.4 billion\n    Deposits 7.2 billion vs 6.1 billion\n    Loans 6.7 billion up 26 pct\n    NOTE: Results restated for pooled acquisitions of Shawmut\nHome Bank and Fidelity Trust Co and include First Gibraltar\nMortgage Corp from December 30, 1986 purchase.\n    Loan loss provision 8,800,000 dlrs vs 6,300,000 dlrs.\n Reuter\n&#3;',0
+'MINNTECH &lt;MNTX> SEES FIRST QUARTER LOSS Minntech Corp said it expects\nto report loss for its fiscal 1988 first quarter to end June\n30, due to start-up costs related to a new membrane oxygenator\nand water filtration products.\n    However, revenues and earnings should consistently increase\nthroughout the remainder of the year, President Louis Cosentino\ntold analysts.\n Reuter\n&#3;',0
+'GORDEX MINERALS LOCATES GOLD DEPOSITS &lt;Gordex Mineral Ltd>\nsaid geologists located more than one mln tons of gold-bearing\ndeposits, 0.057 ounces per ton, at Cape Spencer.\n    The company said it plans to invest 2.5 mln Canadian dlrs\nto expand on-site treatment facilities to process 100,000 tons\nof gold-bearing deposits this year and 200,000 tons in 1988.\n    Prior to the completion of the recent exploration program,\nGordex estimated the Cape Spencer deposit had 200,000 tons.\n [...]
+'U.S. CONGRESSMAN INTRODUCES REAGAN SUGAR BILL Rep. John Porter, R-Ill., introduced\nin the House of Representatives legislation proposed by the\nReagan administration to slash the U.S. sugar price support, a\nspokesman for Porter said.\n    The spokesman said the bill was introduced without any\nchanges from the administration\'s proposal sent to Congress\nlast month.\n    That plan calls for a cut in the sugar loan rate to 12\ncents per pound from 18 cents now. Sugar growers would be\n [...]
+'CANADA 91-DAY T-BILLS AVERAGE 6.95 PCT, MAKING BANK RATE 7.20 PCT\n ',0
+'REPUBLIC SAVINGS AND LOAN &lt;RSLA> 3RD QTR NET Shr 89 cts vs not available\n    Net 1,163,000 vs 466,000\n    Nine Mths\n    Net 3,696,000 vs 1,624,000\n    NOTE: Company converted to stock ownership effective August\n1986.\n    Periods end March 31, 1987 and 1986 respectively.\n Reuter\n&#3;',0
+'SOUTHMARK &lt;SM> TO ISSUE AMERICAN REALTY RIGHTS Southmark Corp said shareholders will be\nissued, as a special dividend, rights to acquire 22 shares of\nAmerican Realty Trust &lt;ARB> for each 100 shares of Southmark\nowned.\n    The record date for Southmark shareholders to receive these\nrights will be May one with an ex-dividend date of April 27.\n    Southmark received these rights on April six, as the holder\nof about 84 pct of American Realty Trust\'s outstanding shares.\n   \n  [...]
+'WALL STREET STOCKS/UAL INC &lt;UAL> Takeover speculation continues to fuel\nheavy trading in UAL Inc, traders said.\n    UAL rose 1-5/8 to 73-5/8 on volume of more than two mln\nshares, after trading with little upward movement earlier in\nthe session.\n    Traders said rumors, which began yesterday, added to\nspeculation that the company would be the target of a takeover.\n    They said it was believed Coniston Partners and the\nPritzker family of Chicago were buying the stock.\n    Co [...]
+'GORDEX MINERALS LOCATES CANADA GOLD DEPOSITS Gordex Mineral Ltd\nsaid geologists located more than one mln short tons of\ngold-bearing deposits, 0.057 ounces per ton, at Cape Spencer.\n    The company said it plans to invest 2.5 mln Canadian dlrs\nto expand on-site treatment facilities to process 100,000 tons\nof gold-bearing deposits this year and 200,000 tons in 1988.\n    Prior to the completion of the recent exploration program,\nGordex estimated the Cape Spencer deposit had 200,000 [...]
+'CANADIAN BANK RATE RISES IN WEEK Canada\'s key bank rate rose to 7.20 pct\nfrom 7.15 pct the week before, Bank of Canada said.\n    Bank rate is set 1/4 percentage point above the average\nyield on the weekly issue of 91-day treasury bills. This week\'s\nyield was 6.95 pct compared with the previous week\'s 6.90 pct.\n    Tenders were accepted for 2.55 billion dlrs of 91-day bills\nat an average price of 98.296 dlrs against 98.310 dlrs last\nweek.\n    The 1.40 billion dlrs of 182-day b [...]
+'CONSENSUS SEEN ON TIN PACT EXTENSION The quarterly session of the\nInternational Tin Council (ITC) continued without formal\nagreement on an extension of the sixth International Tin\nAgreement (ITA), but delegates said it was apparent there was a\ngeneral consensus the Agreement should be prolonged.\n    Some delegations are still awaiting formal instructions\nfrom capitals, but informally most have indicated they favour\nan extension, delegates said.\n    This afternoon\'s session was  [...]
+'SLATER ELECTRIC INC &lt;SLAT> 1ST QTR FEB 28 NET Shr four cts vs 10 cts\n    Net 31,000 vs 82,000\n    Sales 10.9 mln vs 9,760,000\n Reuter\n&#3;',0
+'SOUTH JERSEY INDUSTRIES INC &lt;SJI> 1ST QTR NET Oper shr 1.64 dlrs vs 1.50 dlrs\n    Oper net 6,200,000 vs 5,600,000\n    Revs not given\n    12 mths\n    Oper shr 2.76 dlrs vs 2.58 dlrs\n    Oper net 10.4 mln vs 9,600,000\n    NOTE: Net income including discontinued operation and, in\nboth 1986 periods, 1,500,000 dlr gain from change in accounting\nfor which results restated, 6,200,000 dlrs vs 7,200,000 dlrs in\nquarter and 10.6 mln dlrs vs 11.6 mln dlrs.\n Reuter\n&#3;',0
+'CITY NATIONAL CORP &lt;CTYN> 1ST QTR NET Shr 56 cts vs 35 cts\n    Net 10,271,000 vs 6,425,000\n    Loans 1.44 billion vs 1.20 billion\n    Deposits 2.36 billion vs 1.96 billion\n    Assets 2.96 billion vs 2.55 billion\n Reuter\n&#3;',0
+'ALLIED BANKSHARES INC &lt;ABGA> 1ST QTR NET Shr 50 cts vs 26 cts\n    Net 1,316,000 vs 656,000\n    NOTE: qtr 1987 includes tax gain 500,000 dlrs, or 19 cts\nper share.\n Reuter\n&#3;',0
+'ROYAL DUTCH &lt;RD> UNIT TO CUT HEATING OIL PRICE Royal Dutch/Shell\'s Scallop Petroleum\nCo subsidiary said it will reduce the price it charges contract\nbarge customers in New York harbor for heating oil by 2.5 cts a\ngallon, effective tomorrow.\n    The company said the price cut will bring the contract\nbarge price for heating oil to 51 cts a gallon.\n Reuter\n&#3;',0
+'MAGMA RAISES COPPER PRICE 0.25 CT TO 65.75 CTS Magma Copper Co, a subsidiary of\nNewmont Mining Corp, said it is raising its copper cathode\nprice by 0.25 cent to 65.75 cents a lb, effective immediately.\n Reuter\n&#3;',0
+'FIRST BANK SYSTEM INC &lt;FBS> 1ST QTR NET Shr 95 cts vs 80 cts\n    Net 57.4 mln vs 46.6 mln\n    Assets 28.39 billion vs 25.87 billion\n    Loans 13.99 billion vs 14.35 billion\n Reuter\n&#3;',0
+'CENTERRE BANCORP &lt;CTBC> 1ST QTR NET Shr 94 cts vs 1.02 dlrs\n    Net 7,255,000 vs 7,856,000\n    Loans 2.88 billion vs 2.94 billion\n    Deposits 4.05 billion vs 3.73 billion\n    Assets 5.43 billion vs 5.14 billion\n\n Reuter\n&#3;',0
+'SEA GALLEY STORES INC &lt;SEAG> 1ST QTR NET Oper shr four cts vs one ct\n    Oper net 108,000 vs 30,000\n    Revs 12.8 mln vs 14.8 mln\n    Note: Current qtr figures exclude operating loss\ncarryforward gain of 57,000 dlrs, or two cts per share vs gain\nof 21,000 dlrs, or one ct per share.\n Reuter\n&#3;',0
+'EGYPT CANCELS WHEAT TENDER Egypt has cancelled its April 2 tender for\n200,000 tonnes of any origin wheat for April 15-30 shipment,\ntrade and Egyptian official sources said.\n    Trade sources said the cancellation followed an offer by an\nEgyptian company, Islamic Corp, at 85.80 dlrs/tonne cost and\nfreight, undercutting other traders\' offers of between 93.90\nand 94.49 dlrs/tonne.\n    An Egyptian trade official in Paris confirmed cancellation\nof the tender following the Islamic Co [...]
+'HOUSE PANEL WANTS PENTAGON MANAGE U.S. STOCKPILE The House Armed Services Committee\nhas voted for a transfer in the management of stockpiled\nmaterials for national defense to the U.S. Defense Secretary.\n    The committee also voted for legally-binding quantity and\nquality requirements on the materials, mostly metals.\n    The measures are a part of the Defense Authorization Bill\nwhich will be voted on in the House next month.\n    The purpose of the measures, passed by the committe [...]
+'CANADA TRADE RISE SEEN AS START OF RECOVERY Canada\'s trade picture has brightened\nconsiderably, underscoring economists\' predictions the sector\nwould post a long awaited recovery this year.\n    The federal government reported today that the monthly\nsurplus soared to 1.25 billion Canadian dlrs in February,\ndouble January\'s 623 mln dlrs surplus and sharply higher than\nFebruary 1986\'s 189 mln dlr tally.\n    \"Hopefully it\'s the beginning of a trend,\" said Richardson\nGreenshie [...]
+'FIRST BANK &lt;FBS> SEES LOSS ON BRAZILIAN LOANS First Bank Systems Inc, in reporting\nhigher first quarter net, said that if interest is not paid on\nthe 140 mln dlrs in Brazilian loans and nine mln dlrs in\nEcuadorian loans for the rest of 1987, its profits for the\nentire year will be cut by 6.9 mln dlrs.\n    The banking firm said the non-performing status of these\nloans cut first quarter net by 1.7 mln dlrs.\n    Earlier it reported first quarter profits of 57.4 mln dlrs\nor 95 ct [...]
+'USDA ESTIMATES 1986/87 USSR GRAIN IMPORTS  28.0 MLN TONNES VS 26.0 IN MARCH, 29.9 YEAR AGO\n ',0
+'USDA ESTIMATES 1986 SOVIET GRAIN CROP  AT 210 MLN TONNES VS 210 IN MARCH, 192 YEAR-AGO\n ',0
+'USDA - U.S. 1986/87 ENDING CORN STOCKS  5,240 MLN BU, WHEAT 1,848 MLN, SOYBEANS 610 MLN\n ',1
+'USDA 1986/87 U.S. ORANGE CROP 190,050,000  BOXES, FLORIDA CROP 122,900,000 BOXES\n ',0
+'USDA ESTIMATES 1986/87 ORANGE JUICE YIELD  AT 1.50 GALS PER BOX FROM FLORIDA CROP\n ',0
+'VORNADO INC &lt;VNO> 4TH QTR JAN 31 NET Oper shr 1.64 dlrs vs 84 cts\n    Oper net 4,583,000 vs 2,869,000\n    Revs 20.1 mln vs 19.0 mln\n    Avg shrs 2,791,639 vs 3,432,746\n    Year\n    Oper shr 4.46 dlrs vs 3.20 dlrs\n    Oper net 14.1 mln vs 10.9 mln\n    Revs 74.6 mln vs 68.0 mln\n    Avg shrs 3,154,665 vs 3,425,187\n    NOTE: Operating net excludes gains of nothing vs 2,444,000\ndlrs, or 72 cts a share, in quarter and 1,890,000 dlrs, or 60\ncts a share, vs 9,3267,000 dlrs, or 2.7 [...]
+'FIRST UNION CORP FIRST QTR SHR 71 CTS VS 61 CTS\n ',0
+'U.S. SUPPLY/DEMAND HIGHLIGHTS Following are highlights of the U.S.\nAgriculture Department supply/demand projections for the\n1986/87 seasons, in mln bushels, with comparisons, unless noted\n--\n    Corn -- Stocks, Aug 31, 1987, at 5,240, vs 5,595 last\nmonth. Stocks, Aug 31, 1986, at 4,040, vs 4,040 last month.\n    Exports projected at 1,375, vs 1,250 last month. Exports in\n1985/86 at 1,241, vs 1,241 last month.\n    Domestic use at 5,680, vs 5,450 last month. Usage in the\n1985/86 s [...]
+'U.S. CITRUS CROP ESTIMATE -- USDA The U.S. Agriculture Department\nestimated 1986/87 citrus production, as follows (in boxes) --\n    Total U.S. orange crop (excluding Florida Temples) --\n190,050,000 boxes, vs 190,850,000 boxes last month and\n176,410,000 boxes in the 1985/86 crop.\n    Florida oranges (excluding Temples) -- 122,900,000 boxes,\nvs 124,000,000 last month and 119,000,000 boxes in 1985/86.\n    Florida Temples -- 3,400,000 boxes, vs 3,400,000 last month\nand 2,950,000 box [...]
+'USDA ORANGE JUICE YIELD ESTIMATE The U.S. Agriculture Department\nprojected an average yield of 1.50 gallons of frozen\nconcentrated orange juice per box (42.0 degree brix equivalent)\nfrom Florida\'s 1986/87 crop.\n    That compares with 1.47 gallons per box previously and 1.38\ngallons per box from the 1985/86 crop.\n    The crop reporting board said the estimates for the 1986/87\nseason are based on maturity and yields tests as of April 1.\n Reuter\n&#3;',0
+'USSR ADDS U.S. CORN TO COMMITMENTS - USDA The Soviet Union has added 175,600\ntonnes of U.S. corn to its previous commitments for delivery in\nthe fourth year of the U.S.-USSR Grain Supply Agreement, which\nbegan October 1, 1986, the U.S. Agriculture Department said.\n    According to the department\'s Export Sales Report, covering\ntransactions in the week ended April 2, corn transactions\nconsisted of 140,600 tonnes of new sales and changes in\ndestinations for 35,000 tonnes.\n    Tot [...]
+'USDA SPRING POTATO ESTIMATES The U.S. Agriculture Department\nestimated 1987 spring potato production, based on April 1\nconditions, at 19,267,000 cwts (100 lbs), vs 19,822,000 cwts\nindicated last year.\n    The department estimated spring potato area for harvest at\n79,100 acres, vs 76,700 acres estimated last month and 75,900\nacres harvested last year.\n    Spring potato yield per harvested acre is forecast at 244\ncwt per acre, vs 261 cwt per acre a year ago, USDA said.\n Reuter\n&#3;',0
+'USDA REVISES 1986 SUMMER POTATOES The U.S. Agriculture Department made\nthe following revisions for 1986 crop summer potatoes --\n    Production -- 21,003,000 cwt (100 lbs), vs 20,900,000 cwt\nestimated previously.\n    Acreage for harvest -- 95,700 acres, vs 95,800 acres\nestimated previously.\n    Yield per harvested acre -- 219 cwt per acre, vs 218 cwt\nper acre previously estimated, the department said.\n Reuter\n&#3;',0
+'USDA DETAILS FREE GRAIN STOCKS UNDER LOAN The U.S. Agriculture Department gave\nprojected carryover free stocks of feedgrains, corn and wheat\nunder loans, with comparisons, as follows, in mln bushels,\nexcept feedgrains, which is in mln tonnes --\n                1986/87            1985/86\n           04/09/87 03/09/87  04/09/87 03/09/87\n Under Regular Nine Month Loan --\n      WHEAT    225     300       678     678\n FEEDGRAINS   52.1    68.1      75.7    75.7\n       CORN  1,800   2 [...]
+'CLEVITE &lt;CLEV> AMENDS RIGHTS PLAN Clevite Industries Inc, which\nearlier received a 96 mln dlr takeover offer from J.P.\nIndustries Inc &lt;JPI>, said it amended its Shareholder Rights\nPlan so that certain provisions of the plan cannot occur until\nthe board determines that it is in the best interests of the\ncompany and stockholders.\n    The plan, adopted in December 1986, permits Clevite to\nissue shares at half price to existing stockholders and allows\nstockholders to buy share [...]
+'USDA ESTIMATES SOVIET WHEAT, COARSE GRAINS The U.S. Agriculture Department\nforecast the Soviet 1986/87 wheat crop at 92.30 mln tonnes, vs\n92.30 mln tonnes last month. It put the 1985/86 crop at 78.10\nmln tonnes, vs 78.10 mln tonnes last month.\n    Soviet 1986/87 coarse grain production is estimated at\n103.30 mln tonnes, vs 103.30 mln tonnes last month. Production\nin 1985/86 is projected at 99.99 mln tonnes, vs 100.00 mln\ntonnes last month.\n    USSR wheat imports are forecast at  [...]
+'WHEAT BY CLASS BREAKDOWN The U.S. Agriculture Department gave\nthe 1986/87 breakdown of supply and distribution for wheats by\nclasses, in mln bushels, with comparisons, as follows.\n    HARD WINTER --\n                1986/87           1985/86\n           04/09/87 03/09/87  04/09/87 03/09/87\n Start Stocks 1,009   1,009      717     717\n Production   1,018   1,018    1,230   1,230\n Ttl Supply-X 2,027   2,027    1,947   1,947\n Domestic Use   599     579      543     543\n Exports     [...]
+'USDA FORECASTS BRAZIL/ARGENTINE SOYBEAN CROPS The U.S. Agriculture Department\nforecast Brazil\'s 1986/87 soybean crop at 17.00 mln tonnes, vs\n17.00 estimated last month. It put the 1985/86 crop at 13.90\nmln tonnes, vs 13.70 mln last month.\n    The department forecast Argentina\'s 1986/87 soybean crop at\n7.70 mln tonnes, vs 7.70 mln last month. It projected the\n1985/86 crop at 7.30 mln tonnes, vs 7.30 mln last month.\n    Brazil\'s 1986/87 soybean exports were forecast at 2.50 mln\ [...]
+'USDA ESTIMATES ARGENTINE COARSE GRAIN, WHEAT The U.S. Agriculture Department\nforecast Argentina\'s 1986/87 coarse grain crop at 13.99 mln\ntonnes, vs 15.44 mln tonnes last month. It estimated the\n1985/86 crop at 17.06 mln tonnes, vs 17.14 mln last month.\n    USDA forecast Argentina\'s 1986/87 wheat crop at 9.00 mln\ntonnes, vs 9.00 mln tonnes last month, while the 1985/86 crop\nwas projected at 8.50 mln tonnes, vs 8.50 mln last month.\n    USDA forecast Argentine 1986/87 coarse grain [...]
+'STOP AND SHOP COS IN 2-FOR-1 SPLIT, HIKES DIVIDEND\n ',0
+'USDA ESTIMATES AUSTRALIA WHEAT CROP The U.S. Agriculture Department\nforecast Australia\'s 1986/87 wheat crop at 16.70 mln tonnes, vs\n17.30 mln tonnes last month. It estimated 1985/86 output at\n16.13 mln tonnes, vs 16.13 mln last month.\n    Australian wheat exports in 1986/87 are forecast at 14.50\nmln tonnes, vs 14.50 mln tonnes last month, while exports in\n1985/86 are estimated at 15.96 mln tonnes, vs 15.96 mln last\nmonth.\n Reuter\n&#3;',0
+'USDA ESTIMATES CHINA WHEAT The U.S. Agriculture Department\nprojected China\'s 1986/87 wheat crop at 90.30 mln tonnes, vs\n88.50 mln tonnes last month. It estimated the 1985/86 crop at\n85.81 mln tonnes, vs 85.81 mln last month.\n    USDA projected China\'s 1986/87 wheat imports at 7.00 mln\ntonnes, vs 7.00 mln tonnes last month, and estimated 1985/86\nimports at 6.60 mln tonnes, vs 6.60 mln last month.\n Reuter\n&#3;',0
+'USDA ESTIMATES CANADIAN CROPS The U.S. Agriculture Department\nestimated Canada\'s 1986/87 wheat crop at 31.85 mln tonnes, vs\n31.85 mln tonnes last month. It estimated 1985/86 output at\n24.25 mln tonnes, vs 24.25 mln last month.\n    Canadian 1986/87 coarse grain production is projected at\n27.62 mln tonnes, vs 27.62 mln tonnes last month. Production in\n1985/86 is estimated at 24.95 mln tonnes, vs 24.95 mln last\nmonth.\n    Canadian wheat exports in 1986/87 are forecast at 19.00 mln [...]
+'NET CHANGE IN EXPORT COMMITMENTS -- USDA The U.S. Agriculture Department gave\nthe net change in export commitments, including sales,\ncancellations, foreign purchases and cumulative exports, in the\ncurrent seasons through the week ended April 2, with\ncomparisons, as follows, in tonnes, except as noted --\n                        4/2/87   Prev Week\n            All Wheat   119,800    368,300\n                 Corn 1,001,900    927,000\n             Soybeans   240,500    300,900\n      [...]
+'HOUSE PANEL WANTS PENTAGON MANAGE U.S. STOCKPILE The House Armed Services Committee\nhas voted for a transfer in the management of stockpiled\nmaterials for national defense to the U.S. Defense Secretary.\n    The committee also voted for legally-binding quantity and\nquality requirements on the materials, mostly metals.\n    The measures are a part of the Defense Authorization Bill\nwhich will be voted on in the House next month.\n    The purpose of the measures, passed by the committe [...]
+'USDA ESTIMATES EUROPEAN COMMUNITY CROPS The U.S. Agriculture Department\nforecast the European Community\'s 1986/87 wheat crop at 71.60\nmln tonnes, vs 71.50 mln tonnes last month. It estimated\n1985/86 output at 71.70 mln tonnes, vs 71.71 mln last month.\n    E.C. 1986/87 coarse grain production is projected at 81.22\nmln tonnes, vs 81.19 mln tonnes last month. The 1985/86 crop is\nestimated at 88.21 mln tonnes, vs 88.28 mln last month.\n    E.C. wheat exports in 1986/87 are forecast a [...]
+'U.S. SUPPLY/DEMAND DETAILED BY USDA The U.S. Agriculture Department made\nthe following supply/demand projections for the 1986/87\nseasons, in mln bushels, with comparisons, unless noted --\n    CORN --     1986/87            1985/86\n           04/09/87 03/09/87  04/09/87 03/09/87\n Acreage (mln acres) --\n     Planted   76.7    76.7     83.4    83.4\n   Harvested   69.2    69.2     75.2    75.2\n  Yield (bu)  119.3   119.3    118.0   118.0\n Supply (mln bu) -- \n Start Stock  4,040    [...]
+'USDA ESTIMATES USSR COTTON CROP The U.S. Agriculture Department\nforecast the Soviet 1986/87 cotton crop at 11.20 mln bales\n(480-lbs net), vs 11.20 mln bales forecast last month.\n    The department also estimated the 1985/86 Soviet cotton\ncrop at 12.10 mln bales, vs 12.10 mln bales last month.\n Reuter\n&#3;',0
+'USDA ESTIMATES SOUTH AFRICA CORN CROP, EXPORTS The U.S. Agriculture Department\nforecast South Africa\'s 1986/87 corn crop at 8.50 mln tonnes,\nvs 9.50 mln tonnes last month. It estimated the 1985/86 crop at\n8.08 mln, vs 8.08 mln last month.\n    USDA forecast South African 1986/87 corn exports at 2.10\nmln tonnes, vs 3.00 mln tonnes last month, and 1985/86 exports\nat 2.75 mln tonnes, vs 2.75 mln tonnes last month.\n Reuter\n&#3;',1
+'STOP AND SHOP COS &lt;SHP> IN TWO-FOR-ONE SPLIT The Stop and Shop Cos Inc said its board\nvoted a two-for-one stock split payable July One, to\nstockholders of record May 29.\n    It also said it was raising its quarterly cash dividend 16\npct to 32 cts per share from 27.5 cts per share prior.\n    As a result of the split, the number of outstanding shares\nwill increase to 28 mln from 14 mln, the company said.\n    The dividend is payable July One to shareholders of record\nMay 29, it  [...]
+'NATIONAL BEVERAGE TO ACQUIRE FAYGO BEVERAGES &lt;National Beverage Corp>\nsaid it agreed to acquire &lt;Faygo Beverages Inc> for an\nundisclosed amount of cash.\n    Faygo has revenues in excess of of 100 mln dlrs, National\nBeverage said.\n    \n Reuter\n&#3;',0
+'AUDIO/VIDEO AFFILIATES &lt;AVA> 4TH QTR JAN 31 NET Shr 17 cts vs 28 cts\n    Net 2,668,000 vs 3,655,000\n    Revs 93.9 mln vs 83.8 mln\n    Avg shrs 15.7 mln vs 13.2 mln\n    12 mths\n    Shr 48 cts vs 58 cts\n    Net 7,510,000 vs 7,482,000\n    Revs 228.8 mln vs 181.9 mln\n    Avg shrs 15.7 mln vs 12.9 mln\n    NOTE: full name of company is audio/video affiliates Inc.\n Reuter\n&#3;',0
+'FLUOROCARBON &lt;FCBN> BUYS EATON &lt;ETN> DIVISION Fluorocarbon Co said it\nsigned a definitive agreement to acquire Eaton Corp\'s\nIndustrial Polymer division for an undisclosed price.\n    The polymer division, based in Aurora, Ohio, had 1986 sales\nof 86 mln dlrs, Fluorocarbon also said.\n Reuter\n&#3;',0
+'FIRST UNION CORP &lt;FUNC> 1ST QTR NET Shr 71 cts vs 61 cts\n    Net 78.5 mln vs 64.6 mln\n    NOTE: Current qtr includes gain of seven cts/shr from sale\nof securities. Year-ago restated.\n Reuter\n&#3;',0
+'FINANCIAL NEWS NETWORK INC &lt;FNNI> 2ND QTR NET Qtr ended February 28\n    Shr six cts vs three cts\n    Net 765,138 vs 311,388\n    Rev 8.3 mln vs 3.7 mln\n    Avg shares 12,272,265 vs 11,377,491\n    Six months\n    Shr 17 cts vs five cts\n    Net 2,073,057 vs 515,229\n    Rev 15.0 mln vs 7.4 mln\n    Avg shares 12,295,934 vs 11,200,000\n Reuter\n&#3;',0
+'FIRST COLONIAL BANKSHARES CORP &lt;FCOLA> 1ST QTR Shr 41 cts vs 35 cts\n    Net 2,362,000 vs 1,613,000\n    Avg shrs 5,567,300 vs 4,070,700\n Reuter\n&#3;',0
+'SEASONAL EXPORTS REPORTED BY U.S. EXPORTERS Exports of the following commodities\nbetween start of current seasons and April 2, with comparisons,\nas reported to USDA by exporters, in thousand tonnes, unless\nnoted --\n               4/2/87    Prev Wk   4/3/86\n Wheat        21,044.6  20,398.3  19,725.8\n Soybeans     14,334.2  14,063.5  14,698.4\n Corn         20,296.0  19,194.6  25,182.6-x\n Sorghum       3,222.5   3,149.7   3,168.9-x\n Soybean Oil     138.4     135.8     179.9\n Soyb [...]
+'HAWAIIAN ELECTRIC &lt;HE> TO BUY HAWAIIAN INSURANCE Hawaiian Electric Industries said it\nhas entered a letter of intent to buy the Hawaiian Insurance\nCompanies.\n    The transaction is subject to a definitive agreement, and\ngovernment and board approvals.\n    The Hawaiian Insurance Companies ad assets at the end of\n1986 of 137.4 mln dlrs and earned premiums of 46.1 mln dlrs.\n    Hawaiian Electric said it plans to operate the comapny,\nwhich has 226 employees, with current manageme [...]
+'SOVIET UNION TO IMPORT MORE GRAIN IN 86/87-USDA The U.S. Agriculture Department\nincreased its estimate of 1986/87 grain purchases by the Soviet\nUnion to 28 mln tonnes, up two mln tonnes from last month.\n    In its monthly report on the Soviet grain situation, the\nUSDA said imports will be higher than earlier estimated because\nSoviet grain buyers have been actively purchasing in the last\nmonth.\n    USDA said the increased purchasing is \"somewhat surprising\"\nbecause of recent hi [...]
+'DISNEY FAMILY MAKES BID FOR HOLLY SUGAR &lt;HLY> The Roy Disney family disclosed in a\nfiling with the Securities and Exchange Commission that it made\na bid to acquire Holly Sugar Corp for a package of cash and\nsecurities.\n    Shamrock Holdings of California Inc, a Disney family\ncompany, said it submitted the bid on April 8 to Salomon\nBrothers Inc, Holly Sugar\'s investment banker.\n    The offer was for 45 dlrs in cash, securities with a face\nvalue of 70 dlrs, and a \"contingent  [...]
+'U.S. EXPORTERS REPORT 200,000 TONNES WHEAT  SOLD TO JORDAN FOR 1987/88 DELIVERY\n ',0
+'UNIVERSAL HEALTH REALTY &lt;UHT> 1ST QTR NET Shr 26 cts vs nil\n    Net 2,244,000 vs nil\n    Rev 3.4 mln vs nil\n    NOTE: Company\'s full name is Universal Health Realty Income\nTrust. Quarter is company\'s first full quarter of earnings.\n Reuter\n&#3;',0
+'FROST AND SULLIVAN INC &lt;FRSL> INCREASES PAYOUT Semi-annual div seven cts vs six cts prior\n    Pay June One\n    Record May One\n.\n Reuter\n&#3;',0
+'C.O.M.B. &lt;CMCO> MAKES ACQUISITION C.O.M.B. Co said it acquired for 8.7\nmln dlrs the principal assets of National Tech Industries Inc\nand Telkon Corp.\n    The companies are engaged in servicing, sales and\ntelemarketing of consumer electronic merchandise.\n Reuter\n&#3;',0
+'RAI RESEARCH CORP &lt;RAC> 3RD QTR FEB 28 SHr one cts vs 14 cts\n    Net 17,806 vs 328,290\n    Revs 1.3 mln vs 2.2 mln\n    Nine months\n    Shr 27 cts vs 26 cts\n    Net 640,156 vs 622,251\n    Revs 5.6 mln vs 5.6 mln\n    NOTE:1986 net includes loss of 49,040 in nine months from\ndiscontinued and gain of 15,598 dlrs in 3rd qtr.\n Reuter\n&#3;',0
+'CENTEL &lt;CNT> COMPLETES ACQUISITION Centel Corp said it completed the\nacquisition of Welbac Cable Television Corp, which serves more\nthan 2,500 cable television subscribers in east central\nMichigan.\n    Terms were not disclosed.\n    With the addition of Welbac customers, Centel Cable\nTelevision Co of Michigan serves more than 83,000 customers.\nOverall, Centel has nearly 495,000 customers in seven states.\n Reuter\n&#3;',0
+'JAMES RIVER CORP &lt;JR> SETS REGULAR PAYOUT Qtrly div 10 cts vs 10 cts prior\n    Pay April 30\n    Record April 21\n Reuter\n&#3;',0
+'THREE D DEPARTMENTS INC &lt;TDD> SETS PAYOUT Class A qtly div 2-1/2 cts vs 2-1/2 cts prior\n    Class B qtly div 1-1/2 cts vs 1-1/2 cts prior\n    Pay May 8\n    Record April 24\n Reuter\n&#3;',0
+'U.S. EXPORTERS REPORT 300,000 TONNES  SOYBEAN MEAL TO IRAQ FOR SPLIT DELIVERY\n ',0
+'U.S. EXPORTERS REPORT 100,000 TONNES CORN  SOLD TO ALGERIA FOR 1986/87 DELIVERY\n ',1
+'WORLD SUPPLY/DEMAND ESTIMATES ISSUED BY USDA The U.S. Agriculture Department made\nthe following 1986/87 projections in its world Supply/Demand\nreport, with comparisons, in mln tonnes, except where noted --\n    Total World Grain\n               1986/87            1985/86\n         04/09/87  03/09/87  04/09/87  03/09/87\n Produc  1,682.31  1,686.11  1,663.69  1,663.70\n Total\n Supply  2,025.71  2,028.45  1,919.18  1,920.13\n Trade-X   212.15    211.89    204.42    203.92\n Usage   1,6 [...]
+'ADAMS EXPRESS CO &lt;ADX> MARCH 31 ASSETS Shr 22.50 dlrs vs 21.74 dlrs\n    Assets 546.9 mln vs 485.2 mln\n    Shrs out 24.3 mln vs 22.3 mln\n    NOTE: lastest assets after capital gain distributions of 28\ncts a share in February 1987 and 2.55 dlrs a share in December\n1986\n Reuter\n&#3;',0
+'PETROLEUM AND RESOURCES CORP &lt;PEO> MARCH 31 Shr 31.36 dlrs vs 25.23 dlrs\n    Assets 286.5 mln vs 253.0 mln\n    Shrs out 9,138,526 vs 8,839,695\n    NOTE: latest assets after capital gain distributions of 50\ncts a share in February 1987 and 83 cts a share in December\n1986, and with 29,955,000 stated value 1.676 dlr convertible\npreferred stock outstanding.\n Reuter\n&#3;',0
+'CORN SUPPLY/DEMAND BY COUNTRY -- USDA The U.S. Agriculture Department\ndetailed world supply/demand data for major importers and\nexporters of corn, by country, as follows in mln tonnes --\n    USSR CORN\n                1986/87            1985/86\n           04/09/87 03/09/87  04/09/87 03/09/87\n Start Stocks  N.A.    N.A.     N.A.    N.A.\n Production   12.50   12.50    14.40   14.40\n Imports       8.00    6.00    10.40   10.40\n Domes Use    20.50   19.50    24.40   24.40\n Exports  [...]
+'USDA REPORTS EXPORT SALES ACTIVITY The U.S. Agriculture Department said\nprivate U.S. exporters reported sales of 200,000 tonnes of\nwheat to Jordan, 300,000 tonnes of soybean meal to Iraq and\n100,000 tonnes of corn to Algeria.\n    The wheat for Jordan includes 165,000 tonnes of hard red\nwinter and 35,000 tonnes of soft red winter and is for delivery\nduring the 1987/88 marketing year.\n    The soybean meal sales to Iraq includes 180,000 tonnes for\ndelivery during the 1986/87 season [...]
+'INTERNATIONAL AMERICAN &lt;HOME> TO ACQUIRE COS International American Homes Inc\nsaid it entered into a conditional contract to acquire the\n&lt;Maione-Hirschberg Cos Inc> and affiliated entitles for 19 mln\ndlrs.\n    International American, whose stock was halted on Nasdaq\nearlier, said the purchase price is payable 12 mln dlrs in cash\nand the balance in its own common shares.\n    Selling shareholders may earn an additional amount up to a\nmaximum of eight mln dlrs payable in cash [...]
+'SONY CHAIRMAN FORECASTS LOWER PROFITS THIS YEAR Sony Corp &lt;SNE.T> chairman Akio\nMorita said Sony\'s profits would be sharply down in 1987 as a\nresult of the dollar\'s decline.\n    Sony Corp posted net consolidated income of 41.89 billion\nyen (290 million dollars) in 1986, 42.6 pct down on 1985\'s\n73.02 billion yen (506 million dollars).\n    But Morita added that Japan would benefit from the strong\nyen by saving on its energy import bill and he expected profits\nto recover from [...]
+'COARSE GRAIN SUPPLY/DEMAND BY COUNTRY -- USDA The U.S. Agriculture Department\ndetailed world supply/demand data for major importers and\nexporters of coarse grains, by country, as follows in mln\ntonnes --\n    USSR COARSE GRAIN\n               1986/87           1985/86\n          04/09/87 03/09/87  04/09/87 03/09/87\n Start Stcks  N.A.    N.A.      N.A.    N.A.\n Production 103.30  103.30     99.99   99.99\n Imports     12.00   10.00     13.70   13.70\n Domes Use  112.30  112.30    11 [...]
diff --git a/arff/src/test/resources/weka-data/ReutersCorn-train.arff b/arff/src/test/resources/weka-data/ReutersCorn-train.arff
new file mode 100644
index 0000000..5485fa4
--- /dev/null
+++ b/arff/src/test/resources/weka-data/ReutersCorn-train.arff
@@ -0,0 +1,1561 @@
+@relation 'Reuters-21578 Corn ModApte Train-weka.filters.unsupervised.attribute.NumericToBinary-weka.filters.unsupervised.instance.RemoveFolds-S0-N5-F1'
+
+@attribute Text string
+@attribute class-att {0,1}
+
+@data
+
+'BAHIA COCOA REVIEW Showers continued throughout the week in\nthe Bahia cocoa zone, alleviating the drought since early\nJanuary and improving prospects for the coming temporao,\nalthough normal humidity levels have not been restored,\nComissaria Smith said in its weekly review.\n    The dry period means the temporao will be late this year.\n    Arrivals for the week ended February 22 were 155,221 bags\nof 60 kilos making a cumulative total for the season of 5.93\nmln against 5.81 at the [...]
+'NATIONAL AVERAGE PRICES FOR FARMER-OWNED RESERVE The U.S. Agriculture Department\nreported the farmer-owned reserve national five-day average\nprice through February 25 as follows (Dlrs/Bu-Sorghum Cwt) -\n         Natl   Loan           Release   Call\n         Avge   Rate-X  Level    Price  Price\n Wheat   2.55   2.40       IV     4.65     --\n                            V     4.65     --\n                           VI     4.45     --\n Corn    1.35   1.92       IV     3.15   3.15\n     [...]
+'ARGENTINE 1986/87 GRAIN/OILSEED REGISTRATIONS Argentine grain board figures show\ncrop registrations of grains, oilseeds and their products to\nFebruary 11, in thousands of tonnes, showing those for futurE\nshipments month, 1986/87 total and 1985/86 total to February\n12, 1986, in brackets:\n    Bread wheat prev 1,655.8, Feb 872.0, March 164.6, total\n2,692.4 (4,161.0).\n    Maize Mar 48.0, total 48.0 (nil).\n    Sorghum nil (nil)\n    Oilseed export registrations were:\n    Sunflowerse [...]
+'CHAMPION PRODUCTS &lt;CH> APPROVES STOCK SPLIT Champion Products Inc said its\nboard of directors approved a two-for-one stock split of its\ncommon shares for shareholders of record as of April 1, 1987.\n    The company also said its board voted to recommend to\nshareholders at the annual meeting April 23 an increase in the\nauthorized capital stock from five mln to 25 mln shares.\n Reuter\n&#3;',0
+'COMPUTER TERMINAL SYSTEMS &lt;CPML> COMPLETES SALE Computer Terminal Systems Inc said\nit has completed the sale of 200,000 shares of its common\nstock, and warrants to acquire an additional one mln shares, to\n&lt;Sedio N.V.> of Lugano, Switzerland for 50,000 dlrs.\n    The company said the warrants are exercisable for five\nyears at a purchase price of .125 dlrs per share.\n    Computer Terminal said Sedio also has the right to buy\nadditional shares and increase its total holdings up [...]
+'COBANCO INC &lt;CBCO> YEAR NET Shr 34 cts vs 1.19 dlrs\n    Net 807,000 vs 2,858,000\n    Assets 510.2 mln vs 479.7 mln\n    Deposits 472.3 mln vs 440.3 mln\n    Loans 299.2 mln vs 327.2 mln\n    Note: 4th qtr not available. Year includes 1985\nextraordinary gain from tax carry forward of 132,000 dlrs, or\nfive cts per shr.\n Reuter\n&#3;',0
+'OHIO MATTRESS &lt;OMT> MAY HAVE LOWER 1ST QTR NET Ohio Mattress Co said its first\nquarter, ending February 28, profits may be below the 2.4 mln\ndlrs, or 15 cts a share, earned in the first quarter of fiscal\n1986.\n    The company said any decline would be due to expenses\nrelated to the acquisitions in the middle of the current\nquarter of seven licensees of Sealy Inc, as well as 82 pct of\nthe outstanding capital stock of Sealy.\n    Because of these acquisitions, it said, first qua [...]
+'AM INTERNATIONAL INC &lt;AM> 2ND QTR JAN 31 Oper shr loss two cts vs profit seven cts\n    Oper shr profit 442,000 vs profit 2,986,000\n    Revs 291.8 mln vs 151.1 mln\n    Avg shrs 51.7 mln vs 43.4 mln\n    Six mths\n    Oper shr profit nil vs profit 12 cts\n    Oper net profit 3,376,000 vs profit 5,086,000\n    Revs 569.3 mln vs 298.5 mln\n    Avg shrs 51.6 mln vs 41.1 mln\n    NOTE: Per shr calculated after payment of preferred\ndividends.\n    Results exclude credits of 2,227,000 or [...]
+'BROWN-FORMAN INC &lt;BFD> 4TH QTR NET Shr one dlr vs 73 cts\n    Net 12.6 mln vs 15.8 mln\n    Revs 337.3 mln vs 315.2 mln\n    Nine mths\n    Shr 3.07 dlrs vs 3.08 dlrs\n    Net 66 mln vs 66.2 mln\n    Revs 1.59 billion vs 997.1 mln\n Reuter\n&#3;',0
+'DEAN FOODS &lt;DF> SEES STRONG 4TH QTR EARNINGS Dean Foods Co expects earnings for the\nfourth quarter ending May 30 to exceed those of the same\nyear-ago period, Chairman Kenneth Douglas told analysts.\n    In the fiscal 1986 fourth quarter the food processor\nreported earnings of 40 cts a share.\n    Douglas also said the year\'s sales should exceed 1.4\nbillion dlrs, up from 1.27 billion dlrs the prior year.\n    He repeated an earlier projection that third-quarter\nearnings \"will p [...]
+'BONUS WHEAT FLOUR FOR NORTH YEMEN  -- USDA The Commodity Credit Corporation, CCC,\nhas accepted an export bonus offer to cover the sale of 37,000\nlong tons of wheat flour to North Yemen, the U.S. Agriculture\nDepartment said.\n    The wheat four is for shipment March-May and the bonus\nawarded was 119.05 dlrs per tonnes and will be paid in the form\nof commodities from the CCC inventory.\n    The bonus was awarded to the Pillsbury Company.\n    The wheat flour purchases complete the Ex [...]
+'MAGMA LOWERS COPPER 0.75 CENT TO 66 CTS Magma Copper Co, a subsidiary of Newmont\nMining Corp, said it is cutting its copper cathode price by\n0.75 cent to 66 cents a lb, effective immediately.\n Reuter\n&#3;',0
+'BROWN-FORMAN &lt;BFDB> SETS STOCK SPLIT, UPS PAYOUT Brown-Forman Inc said its board\nhas approved a three-for-two stock split and a 35 pct increase\nin the company cash dividend.\n    The company cited its improved earnings outlook and\ncontinued strong cash flow as reasons for raising the dividend.\n    Brown-Forman said the split of its Class A and Class B\ncommon shares would be effective March 13.\n    The company said directors declared a quarterly cash\ndividend on each new share  [...]
+'ESQUIRE RADIO AND ELECTRONICS INC &lt;EE> 4TH QTR Shr profit 15 cts vs profit four cts\n    Annual div 72 cts vs 72 cts prior yr\n    Net profit 72,000 vs profit 16,000\n    Revs 7,075,000 vs 2,330,000\n    12 mths\n    Shr profit 42 cts vs loss 11 cts\n    Net profit 203,000 vs loss 55,000\n    Revs 16.1 mln vs 3,971,000\n    NOTE: annual dividend payable April 10, 1987, to\nstockholders of record on March 27, 1987.\n Reuter\n&#3;',0
+'UNITED PRESIDENTIAL CORP &lt;UPCO> 4TH QTR NET Shr 39 cts vs 50 cts\n    Net 1,545,160 vs 2,188,933\n    Revs 25.2 mln vs 19.5 mln\n    Year\n    Shr 1.53 dlrs vs 1.21 dlrs\n    Net 6,635,318 vs 5,050,044\n    Revs 92.2 mln vs 77.4 mln\n    NOTE: Results include adjustment of 848,600 dlrs or 20 cts\nshr for 1986 year and both 1985 periods from improvement in\nresults of its universal life business than first estimated.\n Reuter\n&#3;',0
+'JANUARY HOUSING SALES DROP, REALTY GROUP SAYS Sales of previously owned homes\ndropped 14.5 pct in January to a seasonally adjusted annual\nrate of 3.47 mln units, the National Association of Realtors\n(NAR) said.\n    But the December rate of 4.06 mln units had been the\nhighest since the record 4.15 mln unit sales rate set in\nNovember 1978, the group said.\n    \"The drop in January is not surprising considering that a\nsignificant portion of December\'s near-record pace was made up\ [...]
+'ASSETS OF MONEY MARKET MUTUAL FUNDS ROSE 720.4 MLN DLRS IN LATEST WEEK\n ',0
+'OWENS AND MINOR INC &lt;OBOD> RAISES QTLY DIVIDEND Qtly div eights cts vs 7.5 cts prior\n    Pay March 31\n    Record March 13\n Reuter\n&#3;',0
+'COMPUTER LANGUAGE RESEARCH IN &lt;CLRI> 4TH QTR Shr loss 22 cts vs loss 18 cts\n    Net loss 3,035,000 vs loss 2,516,000\n    Revs 20.9 mln vs 19.6 mln\n    Qtly div three cts vs three cts prior\n    Year\n    Shr profit two cts vs profit 34 cts\n    Net profit 215,000 vs profit 4,647,000\n    Revs 93.4 mln vs 98.7 mln\n    NOTE: Dividend payable April one to shareholders of record\nMarch 17.\n Reuter\n&#3;',0
+'&lt;CINRAM LTD> 4TH QTR NET Shr 45 cts vs 58 cts\n    Net 1.1 mln vs 829,000\n    Sales 7.9 mln vs 9.4 mln\n    Avg shrs 2,332,397 vs 1,428,000\n    Year\n    Shr 1.22 dlrs vs 1.06 dlrs\n    Net 2.9 mln vs 1.5 mln\n    Sales 25.7 mln vs 22.2 mln\n    Avg shrs 2,332,397 vs 1,428,000\n Reuter\n&#3;',0
+'STANDARD TRUSTCO SEES BETTER YEAR Standard Trustco said it expects earnings\nin 1987 to increase at least 15 to 20 pct from the 9,140,000\ndlrs, or 2.52 dlrs per share, recorded in 1986.\n    \"Stable interest rates and a growing economy are expected to\nprovide favorable conditions for further growth in 1987,\"\npresident Brian O\'Malley told shareholders at the annual\nmeeting.\n    Standard Trustco previously reported assets of 1.28 billion\ndlrs in 1986, up from 1.10 billion dlrs in [...]
+'HANDY AND HARMAN &lt;HNH> 4TH QTR LOSS Shr loss 51 cts vs loss three cts\n    Net loss 7,041,000 vs loss 467,000\n    Rev 138.9 mln vs 131.4 mln\n    12 months\n    Shr loss 64 cts vs profit 46 cts\n    Net loss 8,843,000 vs profit 6,306,0000\n    Rev 558.9 mln vs 556.7 mln\n    NOTE: Net loss for 4th qtr 1986 includes charge for\nrestructuring of 2.6 mln dlrs after tax, or 19 cts a share.\n    1986 net loss includes after tax special charge of 2.7 mln\ndlrs, or 20 cts a share.\n   \n R [...]
+'ICO PRODUCERS TO PRESENT NEW COFFEE PROPOSAL International Coffee Organization, ICO,\nproducing countries will present a proposal for reintroducing\nexport quotas for 12 months from April 1 with a firm\nundertaking to try to negotiate up to September 30 any future\nquota distribution on a new basis, ICO delegates said.\n    Distribution from April 1 would be on an unchanged basis as\nin an earlier producer proposal, which includes shortfall\nredistributions totalling 1.22 mln bags, they [...]
+'MCLEAN\'S &lt;MII> U.S. LINES SETS ASSET TRANSFER McLean Industries Inc\'s United\nStates Lines Inc subsidiary said it has agreed in principle to\ntransfer its South American service by arranging for the\ntransfer of certain charters and assets to &lt;Crowley Mariotime\nCorp>\'s American Transport Lines Inc subsidiary.\n    U.S. Lines said negotiations on the contract are expected\nto be completed within the next week. Terms and conditions of\nthe contract would be subject to approval o [...]
+'CHEMLAWN &lt;CHEM> RISES ON HOPES FOR HIGHER BIDS ChemLawn Corp &lt;CHEM> could attract a\nhigher bid than the 27 dlrs per share offered by Waste\nManagement Inc &lt;WNX>, Wall Street arbitrageurs said.\n    Shares of ChemLawn shot up 11-5/8 to 29-3/8 in\nover-the-counter- trading with 3.8 mln of the company\'s 10.1\nmln shares changing hands by late afternoon.\n    \"This company could go for 10 times cash flow or 30 dlrs,\nmaybe 32 dollars depending on whether there is a competing\nbi [...]
+'U.S. SUGAR IMPORTS DOWN IN WEEK - USDA Sugar imports subject to the U.S.\nsugar import quota during the week ended January 9, the initial\nweek of the 1987 sugar quota year, totaled 5,988 short tons\nversus 46,254 tons the previous week, the Agriculture\nDepartment said.\n    The sugar import quota for the 1987 quota year\n(January-December) has been set at 1,001,430 short tons\ncompared with 1,850,000 tons in the 1986 quota year, which was\nextended three months to December 31.\n    Th [...]
+'BRAZIL ANTI-INFLATION PLAN LIMPS TO ANNIVERSARY inflation\nplan, initially hailed at home and abroad as the saviour of the\neconomy, is limping towards its first anniversary amid soaring\nprices, widespread shortages and a foreign payments crisis.\n    Announced last February 28 the plan froze prices, fixed the\nvalue of the new Cruzado currency and ended widespread\nindexation of the economy in a bid to halt the country\'s 250\npct inflation rate.\n    But within a year the plan has al [...]
+'N.Z. OFFICIAL FOREIGN RESERVES FALL IN JANUARY New Zealand\'s official foreign\nreserves fell to 7.15 billion N.Z. Dlrs in January from 7.20\nbillion dlrs in December and compared with 3.03 billion a year\nago period, the Reserve Bank said in its weekly statistical\nbulletin.\n Reuter\n&#3;',0
+'AGENCY REPORTS 39 SHIPS WAITING AT PANAMA CANAL The Panama Canal Commission, a U.S.\ngovernment agency, said in its daily operations report that\nthere was a backlog of 39 ships waiting to enter the canal\nearly today. Over the next two days it expects --              \n             2/26  2/27\n                       Due: 27    35\n      Scheduled to Transit: 35    41\n           End-Day Backlog: 31    25\n    Average waiting time tomorrow --\n         Super Tankers  Regular Vessels\n N [...]
+'AMERICA FIRST MORTGAGE SETS SPECIAL PAYOUT &lt;America First Federally Guaranteed\nMortgage Fund Two> said it is making a special distribution of\n71.6 cts per exchangeable unit, which includes 67.62 cts from\nreturn on capital and 3.98 cts from income gains.\n Reuter\n&#3;',0
+'EMHART CORP &lt;EMH> QTLY DIVIDEND Qtly div 35 cts vs 35 cts prior\n    Payable March 31\n    Record March nine\n\n Reuter\n&#3;',0
+'AM INTERNATIONAL &lt;AM> CITES STRONG PROSPECTS AM International Inc, reporting an\noperating loss for the January 31 second quarter, said\nprospects for the balance of the fiscal year remain good.\n    It said orders at its Harris Graphics subsidiary, acquired\nin June 1986, \"continue to run at a strong pace.\" For the six\nmonths, orders rose 35 pct over the corresponding prior-year\nperiod, or on an annualized basis are running at about 630 mln\ndlrs.\n    The backlog at Harris is u [...]
+'CCC CREDITS FOR HONDURAS SWITCHED TO WHITE CORN The Commodity Credit Corporation (CCC)\nannounced 1.5 mln dlrs in credit guarantees previously\nearmarked to cover sales of dry edible beans to Honduras have\nbeen switched to cover sales of white corn, the U.S.\nAgriculture Department said.\n    The department said the action reduces coverage for sales\nof dry edible beans to 500,000 dlrs and creates the new line of\n1.5 mln dlrs for sales of white corn.\n    All sales under the credit gu [...]
+'ASSETS OF U.S. MONEY FUNDS ROSE IN WEEK Assets of money market mutual funds\nincreased 720.4 mln dlrs in the week ended yesterday to 236.90\nbillion dlrs, the Investment Company Institute said.\n    Assets of 91 institutional funds rose 356 mln dlrs to 66.19\nbillion dlrs, 198 general purpose funds rose 212.5 mln dlrs to\n62.94 billion dlrs and 92 broker-dealer funds rose 151.9 mln\ndlrs to 107.77 billion dlrs.\n Reuter\n&#3;',0
+'GULF BARGE FREIGHT RATES UP FURTHER ON CALL Gulf barge freight rates firmed again on\nthe outlook for steady vessel loadings at the Gulf, increasing\nthe demand for barges to supply those ships, dealers said.\n    No barges traded today on the St Louis Merchants\' Exchange\ncall session, versus 29 yesterday.\n    Quotes included -\n - Delivery this week on the Illinois River (Joliet) 135 pct of\ntariff bid/140 offered, with next week same river (ex Chicago)\nquoted the same - both up 2- [...]
+'GULF APPLIED &lt;GATS> SELLS UNITS, SEES GAIN Gulf Applied Technologies Inc said it\nsold its pipeline and terminal operations units for 12.2 mln\ndlrs and will record a gain of 2.9 mln dlrs in the first\nquarter.\n    It added that any federal taxes owed on the transaction\nwill be offset by operating loss carryovers.\n Reuter\n&#3;',0
+'FARMERS GROUP INC &lt;FGRP> 4TH QTR NET Shr 80 cts vs 72 cts\n    Net 55,513,000 vs 48,741,000\n    Revs 290.9 mln vs 264.2 mln\n    Year\n    Shr 3.09 dlrs vs 2.72 dlrs\n    Net 213,470,000 vs 184,649,000\n    Revs 1.12 billion vs 992.9 mln\n    Avg shrs 69,127,000 vs 68,004,000\n Reuter\n&#3;',0
+'POTOMAC ELECTRIC POWER CO &lt;POM> JAN NET Shr 27 cts vs 29 cts\n    Net 13,555,000 vs 14,635,000\n    Revs 104,606,000 vs 110,311,000\n    Avg shrs 47.2 mln vs 47.1 mln\n    12 mths\n    Shr 4.10 dlrs vs 3.66 dlrs\n    Net 226,653,000 vs 186,790,000\n    Revs 1.4 billion vs 1.3 billion\n    Avg shr 47.1 mln vs 47.1 mln\n   \n    NOTE: latest 12 mths net includes gain 46 cts per share for\nsale of Virginia service territory to Dominion Resources Inc\n&lt;D>.\n Reuter\n&#3;',0
+'&lt;COFAB INC> BUYS GULFEX FOR UNDISCLOSED AMOUNT CoFAB Inc said it acquired &lt;Gulfex Inc>,\na Houston-based fabricator of custom high-pressure process\nvessels for the energy and petrochemical industries.\n    CoFAB said its group of companies manufacture specialized\ncooling and lubricating systems for the oil and gas,\npetrochemical, utility, pulp and paper and marine industries.\n Reuter\n&#3;',0
+'U.S. WEEKLY SOYBEAN CRUSH 21,782,929 BUSHELS Reporting members of the National\nSoybean Processors Association (NSPA) crushed 21,782,929\nbushels of soybeans in the week ended Feb 25 compared with\n22,345,718 bushels in the previous week and 16,568,000 in the\nyear-ago week, the association said.\n    It said total crushing capacity for members was 25,873,904\nbushels vs 25,873,904 last week and 25,459,238 bushels last\nyear.\n    NSPA also said U.S. soybean meal exports in the week wer [...]
+'TULTEX CORP &lt;TTX> SETS QUARTERLY DIVIDEND Qtly div eights cts vs eight cts prior\n    Pay April one\n    Record March 13\n Reuter\n&#3;',0
+'ATICO FINANCIAL CORP &lt;ATFC> 4TH QTR NET Shr 30 cts vs 5.92 dlrs\n    Net 1,142,000 vs 16.0 mln\n    Revs 10.6 mln vs 24.2 mln\n    Year\n    Shr 90 cts vs 6.20 dlrs\n    Net 3,320,000 vs 16.9 mln\n    Revs 45.00 mln vs 26.2 mln\n    NOTE: 1986 4th qtr and yr amounts include acquisition of\n98.8 pct of common of Atico, formerly Peninsula Federal Savings\nand Loan Association, on January 24, 1986.\n    1985 4th qtr and yr net include net gain of 15.9 mln dlrs\nor 5.86 dlrs per share on [...]
+'ICO EXPORTERS TO MODIFY NEW PROPOSAL International Coffee Organization (ICO)\nexporters will modify their new proposal on quota resumption\nbefore presenting it to importers tomorrow, ICO delegates said.\n    The change, which will be discussed tonight informally\namong producers, follows talks after the formal producer\nsession with the eight-member producer splinter group and will\naffect the proposed quota distribution for 12 months from April\none, they said.\n    The proposed share [...]
+'U.S. COMMERCIAL PAPER FALLS 375 MLN DLRS IN FEB 18 WEEK, FED SAYS\n ',0
+'N.Y. BUSINESS LOANS FALL 195 MLN DLRS IN FEB 18 WEEK, FED SAYS\n ',0
+'NEW YORK BANK DISCOUNT WINDOW BORROWINGS 64 MLN DLRS IN FEB 25 WEEK\n ',0
+'NEW YORK BUSINESS LOANS FALL 195 MLN DLRS Commercial and industrial loans on the\nbooks of the 10 major New York banks, excluding acceptances,\nfell 195 mln dlrs to 65.06 billion in the week ended February\n18, the Federal Reserve Bank of New York said.\n    Including acceptances, loans declined 114 mln dlrs to 65.89\nbillion.\n    Commercial paper outstanding nationally dropped 375 mln\ndlrs to 336.63 billion.\n    National business loan data are scheduled to be released on\nFriday.\n  [...]
+'N.Y. BANK DISCOUNT BORROWINGS 64 MLN DLRS The eight major New York City banks had\n64 mln dlrs in average borrowings from the Federal Reserve in\nthe week to Wednesday February 25, a Fed spokesman said.\n    The week marked the second half of the two-week bank\nstatement period that ended on Wednesday. The banks had no\nborrowings in the prior week.\n    Commenting on the latest week, a Fed spokesman said that\nall of the borrowing occurred yesterday and was done by fewer\nthan half of  [...]
+'PHILIPPINE LONG DISTANCE &lt;PHI> YEAR NET Shr primary 95.30 pesos vs 29.71 pesos\n    Shr diluted 61.11 pesos vs 18.49 pesos\n    Qtly div 1.25 pesos vs 1.25 pesos\n    Net 1.9 billion vs 779 mln\n    Revs 6.1 billion vs 4.7 billion\n    NOTE: Full name Philippine Long Distance Telephone Co.\n    Figures quoted in Philippine Pesos.\n    Dividend payable April 15 to holders or record March 13.\nExchange rate on day of dividend declaration was 20.792 pesos\nper dollar.\n Reuter\n&#3;',0
+'LIBERTY ALL-STAR EQUITY FUND INITIAL DIV Qtly div five cts vs N.A.\n    Payable April two\n    Record March 20\n    NOTE:1986 dividend includes special two cts per share for\nthe period beginning with the fund\'s commencement of operations\non Novebmer three through December 31, 1986.\n Reuter\n&#3;',0
+'COMBUSTION ENGINEERING INC &lt;CSP> REGULAR DIV Qtly div 25 cts vs 25 cts prior\n    Pay April 30\n    Record April 16\n Reuter\n&#3;',0
+'TONKA CORP &lt;TKA> RAISES DIVIDEND Qtly div two cts vs 1.7 cts\n    Pay March 26\n    Record March 12\n Reuter\n&#3;',0
+'BDM INTERNATIONAL &lt;BDM> INCREASES QTRLY DIVS Annual div Class A 14 cts vs 12 cts prior\n    Annual div Class B 12.1 cts vs 10.4 cts prior\n    Payable April one\n    Record March 20\n    NOTE: full name is BDM International Inc.\n Reuter\n&#3;',0
+'SYSTEMATICS INC &lt;SYST> REGULAR PAYOUT Qtly div three cts vs three cts prior\n    Pay March 13\n    Record February 27\n Reuter\n&#3;',0
+'U.S. M-1 MONEY SUPPLY RISES 2.1 BILLION DLRS IN FEB 16 WEEK, FED SAYS\n ',0
+'&lt;IVACO INC> YEAR NET Shr 1.11 dlrs vs 1.04 dlrs\n    Net 44,092,000 vs 35,145,000\n    Revs 1.94 billion vs 1.34 billion\n    Note: 1986 results include extraordinary gain of 1,035,000\ndlrs or six cts a share from secondary share offering of Canron\nunit.\n Reuter\n&#3;',0
+'U.S. BANK DISCOUNT BORROWINGS AVERAGE 310 MLN DLRS IN FEB 25 WEEK, FED SAYS\n ',0
+'U.S. BANK NET FREE RESERVES 644 MLN DLRS IN TWO WEEKS TO FEB 25, FED SAYS\n ',0
+'INVESTMENT FIRMS CUT CYCLOPS &lt;CYL> STAKE A group of affiliated New York\ninvestment firms said they lowered their stake in Cyclops Corp\nto 260,500 shares, or 6.4 pct of the total outstanding common\nstock, from 370,500 shares, or 9.2 pct.\n    In a filing with the Securities and Exchange Commission,\nthe group, led by Mutual Shares Corp, said it sold 110,000\nCyclops common shares on Feb 17 and 19 for 10.0 mln dlrs.\n Reuter\n&#3;',0
+'ASCS TERMINAL MARKET VALUES FOR PIK GRAIN The Agricultural Stabilization and\nConservation Service (ASCS) has established these unit values\nfor commodities offered from government stocks through\nredemption of Commodity Credit Corporation commodity\ncertificates, effective through the next business day.\n    Price per bushel is in U.S. dollars. Sorghum is priced per\nCWT, corn yellow grade only.\n     WHEAT     HRW   HRS    SRW   SWW   DURUM\n Chicago       --    3.04   2.98  --    --\ [...]
+'CORADIAN CORP &lt;CDIN> 4TH QTR NET Shr profit three cts vs loss three cts\n    Net profit 363,000 vs loss 197,000\n    Revs 3,761,000 vs 2,666,000\n    Year\n    Shr profit one cent vs loss 37 cts\n    Net profit 129,000 vs loss 1,715,000\n    Revs 11.4 mln vs 10.9 mln\n    Avg shrs 10,694,081 vs 4,673,253\n Reuter\n&#3;',0
+' &#2;\nFEDERAL RESERVE WEEKLY REPORT 1 - FEB 26\n    Two weeks ended Feb 25      daily avgs-mlns\n Net free reserves.............644 vs.....1,337\n Bank borrowings...............680 vs.......425\n Including seasonal loans.......81 vs........56\n Including extended loans......299 vs.......265\n Excess reserves.............1,025 vs.....1,497\n Required reserves (adj)....55,250 vs....55,366\n Required reserves............N.A. vs......N.A.\n Total reserves...............N.A. vs......N.A.\n  [...]
+'N.Z. TRADING BANK DEPOSIT GROWTH RISES SLIGHTLY New Zealand\'s trading bank seasonally\nadjusted deposit growth rose 2.6 pct in January compared with a\nrise of 9.4 pct in December, the Reserve Bank said.\n    Year-on-year total deposits rose 30.6 pct compared with a\n26.3 pct increase in the December year and 34.5 pct rise a year\nago period, it said in its weekly statistical release.\n    Total deposits rose to 17.18 billion N.Z. Dlrs in January\ncompared with 16.74 billion in Decembe [...]
+' &#2;\nFEDERAL RESERVE MONEY SUPPLY REPORT - FEB 26\n    One Week Ended Feb 16\n M-1.........................736.7 up.......2.1\n Previous week revised to....734.6 From...734.2\n Avge  4 Weeks (Vs Week Ago).735.0 Vs.....733.5\n Avge 13 Weeks (Vs week Ago).731.8 Vs.....729.8\n Monthly aggregates (Adjusted avgs in billions)\n M-1 (Jan vs Dec)............737.6 Vs.....730.5\n M-2 (Jan vs Dec)..........2,820.1 Vs...2,798.4\n M-3 (Jan vs Dec)..........3,513.6 Vs...3,488.1\n L...(Dec vs Nov).. [...]
+' &#2;\nFEDERAL RESERVE WEEKLY REPORT 3 - FEB 26\n    One week ended Feb 25       daily avgs-mlns\n Govts bought outright....193,374 down....1,342\n Govts repurchases............nil unch.........\n Agencies bought outright...7,719 unch.........\n Agencies repurchases.........nil unch.........\n Acceptances repurchases......nil unch.........\n Matched sales..............4,920 vs......3,788\n Including sales with cust..4,369 vs......3,788\n Other Fed assets..........16,806 down....1,161\n  [...]
+' &#2;\nFEDERAL RESERVE WEEKLY REPORT 4 - FEB 26\n    One week ended Feb 25       Daily avgs-Mlns\n Foreign deposits.............219 down.......29\n Gold stock................11,059 unch.........\n Custody holdings.........168,348 down......366\n Federal funds rate avg......5.95 vs.......6.21\n    Factors on Wednesday, Feb 25\n Bank borrowings............1,239 vs........446\n Including extended credits....92 vs........298\n Matched sales..............8,250 vs......2,998\n Including sales [...]
+'WORLD MARKET PRICE FOR UPLAND COTTON - USDA The U.S. Agriculture Department\nannounced the prevailing world market price, adjusted to U.S.\nquality and location, for Strict Low Middling, 1-1/16 inch\nupland cotton at 52.69 cts per lb, to be in effect through\nmidnight March 5.\n    The adjusted world price is at average U.S. producing\nlocations (near Lubbock, Texas) and will be further adjusted\nfor other qualities and locations. The price will be used in\ndetermining First Handler Cot [...]
+'SUGAR QUOTA IMPORTS DETAILED -- USDA The U.S. Agriculture Department said\ncumulative sugar imports from individual countries during the\n1987 quota year, which began January 1, 1987 and ends December\n31, 1987 were as follows, with quota allocations for the quota\nyear in short tons, raw value --\n            CUMULATIVE     QUOTA 1987\n              IMPORTS     ALLOCATIONS\n ARGENTINA        nil          39,130\n AUSTRALIA        nil          75,530\n BARBADOS         nil           7,5 [...]
+'GRAIN SHIPS LOADING AT PORTLAND There were seven grain ships loading and\nsix ships were waiting to load at Portland, according to the\nPortland Merchants Exchange.\n Reuter\n&#3;',0
+'MERIDIAN BANCORP INC &lt;MRDN> SETS REGULAR PAYOUT Qtly div 25 cts vs 25 cts prior\n    Pay April one\n    Record March 15\n Reuter\n&#3;',0
+'U.S. BANK DISCOUNT BORROWINGS 310 MLN DLRS U.S. bank discount window borrowings\nless extended credits averaged 310 mln dlrs in the week to\nWednesday February 25, the Federal Reserve said.\n    The Fed said that overall borrowings in the week fell 131\nmln dlrs to 614 mln dlrs, with extended credits up 10 mln dlrs\nat 304 mln dlrs. The week was the second half of a two-week\nstatement period. Net borrowings in the prior week averaged 451\nmln dlrs.\n    Commenting on the two-week state [...]
+'AMERICAN EXPRESS &lt;AXP> SEEN IN POSSIBLE SPINNOFF American Express Co remained silent on\nmarket rumors it would spinoff all or part of its Shearson\nLehman Brothers Inc, but some analysts said the company may be\nconsidering such a move because it is unhappy with the market\nvalue of its stock.\n    American Express stock got a lift from the rumor, as the\nmarket calculated a partially public Shearson may command a\ngood market value, thereby boosting the total value of American\nExp [...]
+'U.S. M-1 MONEY SUPPLY ROSE 2.1 BILLION DLRS U.S. M-1 money supply rose 2.1 billion\ndlrs to a seasonally adjusted 736.7 billion dlrs in the\nFebruary 16 week, the Federal Reserve said.\n    The previous week\'s M-1 level was revised to 734.6 billion\ndlrs from 734.2 billion dlrs, while the four-week moving\naverage of M-1 rose to 735.0 billion dlrs from 733.5 billion.\n    Economists polled by Reuters said that M-1 should be\nanywhere from down four billion dlrs to up 2.3 billion dlrs.\ [...]
+'LIBERTY ALL-STAR &lt;USA> SETS INITIAL PAYOUT Liberty All-Star Equity Fund said\nit declared an initial dividend of five cts per share, payable\nApril two to shareholders of record March 20.\n    It said the dividend includes a quarterly dividend of three\ncts a share and a special payout of two cts a share, which\ncovers the period from November three, 1986, when the fund\nbegan operations, to December 31, 1986.\n    The fund said its quarterly dividend rate may fluctuate in\nthe futur [...]
+'CHINESE PORK OUTPUT SEEN LOWER -- USDA High feed prices will cause the\nChinese to reduce hog herd growth and pork production this\nyear, the U.S. Agriculture Department said.\n    In its World Production and Trade Report, the department\nsaid hog numbers at the start of 1987 were estimated at 331.6\nmln head, up slightly from 1986, and 10 mln head above earlier\nprojections for 1987.\n    Pork production in 1986 was up 4.2 pct to 17.25 mln tonnes,\nslightly below earlier estimates, it  [...]
+'IVACO SEES MINIMAL FIRST QUARTER EARNINGS (Ivaco Inc) said price pressure on steel\nproducts, particularly in the U.S., and the recent increase in\nthe value of the Canadian dollar is expected to result in\n\"minimal\" first quarter earnings.\n    It said subsequent quarters should show substantial\nimprovement from first quarter levels but 1987 earnings will\nnot reach 1986 levels as long as those conditions continue.\n     Ivaco earlier reported 1986 profit rose to 44.1 mln dlrs,\naft [...]
+'U.S. GRAIN CARLOADINGS FALL IN WEEK U.S. grain carloadings totaled 26,108\ncars in the week ended February 21, down 2.2 pct from the\nprevious week but 22.8 pct above the corresponding week a year\nago, the Association of American Railroads reported.\n    Grain mill product loadings in the week totalled 11,382\ncars, down 1.8 pct from the previous week but 7.6 pct above the\nsame week a year earlier, the association said.\n Reuter\n&#3;',0
+'HONG KONG FIRM UPS WRATHER&lt;WCO> STAKE TO 11 PCT Industrial Equity (Pacific) Ltd, a\nHong Kong investment firm, said it raised its stake in Wrather\nCorp to 816,000 shares, or 11.3 pct of the total outstanding\ncommon stock, from 453,300 shares, or 6.3 pct.\n    In a filing with the Securities and Exchange Commission,\nIndustrial Equity, which is principally owned by Brierley\nInvestments Ltd, a publicly held New Zealand company, said it\nbought 362,700 Wrather common shares between F [...]
+'COLECO INDUSTRIES INC &lt;CLO> 4TH QTR Shr loss 6.48 DLS VS PROFIT 23 CTS\n    Net loss 110.6 mln vs profit 4.1 mln\n    Revs 74.0 mln vs 152.0 mln\n    Year\n    Shr loss 6.52 dlrs vs profit 3.87 dlrs\n    net loss 111.2 mln vs profit 64.2 mln\n    Revs 501.0 mln vs 776.0 mln\n Reuter\n&#3;',0
+'DIAMOND SHAMROCK (DIA) CUTS CRUDE PRICES Diamond Shamrock Corp said that\neffective today it had cut its contract prices for crude oil by\n1.50 dlrs a barrel.\n    The reduction brings its posted price for West Texas\nIntermediate to 16.00 dlrs a barrel, the copany said.\n    \"The price reduction today was made in the light of falling\noil product prices and a weak crude oil market,\" a company\nspokeswoman said.\n    Diamond is the latest in a line of U.S. oil companies that\nhave cut [...]
+'LIEBERT CORP &lt;LIEB> APPROVES MERGER Liebert Corp said its shareholders\napproved the merger of a wholly-owned subsidiary of Emerson\nElectric Co &lt;EMR>.\n    Under the terms of the merger, each Liebert shareholder\nwill receive .3322 shares of Emerson stock for each Liebert\nshare.\n Reuter\n&#3;',0
+'NORTHERN TELECOM PROPOSES TWO-FOR-ONE STOCK SPLIT\n ',0
+'COLECO INDUSTRIES &lt;CLC> SEES PROFIT IN 1987 Coleco Industries Inc said\nit expects to return to profitability in 1987.\n    Earlier, Coleco reported a net loss of 111.2 mln dlrs for\nthe year ended December 31 compared to a profit of 64.2 mln\ndlrs in the year earlier.\n    In a prepared statement, the company said the dramatic\nswing in operating results was due primarily to the steep\ndecline in sales of Cabbage Patch Kids products from 600 mln\ndlrs to 230 mln dlrs.\n    Coleco sa [...]
+' &#2;\nFEDERAL RESERVE WEEKLY REPORT 1 - FEB 26\n    Two weeks ended Feb 25      daily avgs-mlns\n Net free reserves.............644 vs.....1,337\n Bank borrowings...............680 vs.......425\n Including seasonal loans.......81 vs........56\n Including extended loans......299 vs.......265\n Excess reserves.............1,025 vs.....1,497\n Required reserves (adj)....55,250 vs....55,366\n Required reserves..........55,513 vs....56,208\n Total reserves.............56,538 vs....57,705\n  [...]
+' &#2;\nFEDERAL RESERVE WEEKLY REPORT 2 - FEB 26\n     Two weeks ended Feb 25                    \n Total vault cash...........25,237 vs....27,327\n Inc cash equal to req res..22,834 vs....24,680\n     One week ended Feb 25      Daily avgs-Mlns\n Bank borrowings...............614 down.....131\n Including seasonal loans.......88 up........14\n Including extended loans......304 up........10\n Float.........................511 down.....320\n Balances/adjustments........2,101 down......67\n  [...]
+'GULF APPLIED TECHNOLOGIES &lt;GATS> SELLS UNITS Gulf Applied Technologies Inc said it\nsold its subsidiaries engaged in pipeline and terminal\noperations for 12.2 mln dlrs.\n    The company said the sale is subject to certain post\nclosing adjustments, which it did not explain.\n Reuter\n&#3;',0
+'INVESTMENT GROUP RAISES ROBESON &lt;RBSN> STAKE A group of affiliated Miami-based\ninvestment firms led by Fundamental Management Corp said it\nraised its stake in Robeson Industries Corp to 238,000 shares,\nor 14.6 pct of the total, from 205,000 or 12.8 pct.\n    In a filing with the Securities and Exchange Commission,\nthe group said it bought 32,800 Robeson common shares between\nJan 26 and Feb 9 for 175,691 dlrs.\n    The group said it may buy more shares and plans to study\nRobeson [...]
+'GAO LIKELY TO SHOW CERTS MORE COSTLY THAN CASH A study on grain certificates due out\nshortly from the Government Accounting Office (GAO) could show\nthat certificates cost the government 10 to 15 pct more than\ncash outlays, administration and industry sources said.\n    Analysis that the GAO has obtained from the Agriculture\nDepartment and the Office of Management and Budget suggests\nthat certificates cost more than cash payments, a GAO official\ntold Reuters.\n    GAO is preparing  [...]
+'DAHLBERG INC &lt;DAHL> 4TH QTR NET Shr profit 10 cts vs loss seven cts\n    Net profit 286,870 vs loss 156,124\n    Revs 10.0 mln vs 7,577,207\n    Year\n    Shr profit five cts vs profit 42 cts\n    Net profit 160,109 vs profit 906,034\n    Revs 38.1 mln vs 31.2 mln\n    Avg shrs 2.9 mln vs 2.2 mln\n    NOTE: 1986 year includes 53 weeks.\n Reuter\n&#3;',0
+'CITY NATIONAL CORP &lt;CTYN> RAISES DIVIDEND Shr 16 cts vs 13 cts\n    Pay April 15\n    Record March 31\n Reuter\n&#3;',0
+'&lt;PAGE PETROLEUM LTD> YEAR LOSS Shr loss 1.98 dlrs vs loss 5.24 dlrs\n    Net loss 23.3 mln vs loss 44.8 mln\n    Revs 13.6 mln vs 29.6 mln\n    Note: 1986 net includes nine mln dlr extraordinary loss for\noil and gas writedowns and unrealized foreign exchange losses\nvs yr-ago loss of 32.5 mln dlrs.\n Reuter\n&#3;',0
+'IDB COMMUNICATIONS GROUP INC &lt;IDBX> YEAR NET Period ended December 31.\n    Shr 25 cts vs 20 cts\n    Net 801,000 vs 703,000\n    Revs 6,318,000 vs 3,926,000\n Reuter\n&#3;',0
+'ARMOR ALL PRODUCTS CORP &lt;ARMR> QUARTERLY DIV Qtly div ten cts vs ten cts\n    Pay April 1\n    Record March 9\n Reuter\n&#3;',0
+'OPEC MAY HAVE TO MEET TO FIRM PRICES - ANALYSTS OPEC may be forced to meet before a\nscheduled June session to readdress its production cutting\nagreement if the organization wants to halt the current slide\nin oil prices, oil industry analysts said.\n    \"The movement to higher oil prices was never to be as easy\nas OPEC thought. They may need an emergency meeting to sort out\nthe problems,\" said Daniel Yergin, director of Cambridge Energy\nResearch Associates, CERA.\n    Analysts an [...]
+'CENERGY &lt;CRG> REPORTS 4TH QTR NET PROFIT Cenergy Corp reported fourth quarter net\nincome of 790,000 dlrs or seven cts per share on revenues of\n7.7 mln dlrs.\n    For the year it reported a net loss of 6.5 mln dlrs or 70\ncts per share as a result of writedowns in the book value of\nits oil and gas properties in the first two quarters. Revenues\nwere 37 mln dlrs.\n    Following the company\'s fiscal year ended March 31, 1985,\nit changed to a calender year end.\n    For the nine mon [...]
+'NORTHERN TELECOM LTD &lt;NT> DECLARES STOCK SPLIT Two-for-one stock split\n    Pay May 12\n    Note: split is subject to approval of shareholders at April\n23 annual meeting.\n    Company also said it will increase dividend on post-split\nshares to six cts from five cts.\n Reuter\n&#3;',0
+'TORCHMARK &lt;TMK> AUTHORIZES STOCK REPURCHASE Torchmark Corp said its board\nauthorized the purchase from time to time of a significant\nportion of its 7-3/4 pct convertible subordinated debentures.\nAs of February 25, it said there were outstanding 150 mln dlrs\nof the principal amount of debenures.\n    The company also said it plans to redeem the debentures on\nJune eight.\n    It also declared a regular quarterly dividend of 25 cts per\nshare on its common payable May one to shareh [...]
+'TECHAMERICA GROUP INC &lt;TCH> 4TH QTR LOSS Shr loss six cts vs not available\n    Net loss 562,231 vs profit 10,253\n    Revs 8,871,874 vs 9,549,308\n    Year\n    Shr loss 60 cts vs loss nine cts\n    Net loss 5,058,145 vs loss 766,185\n    Revs 34.3 mln vs 35.5 mln\n   \n Reuter\n&#3;',0
+'WILFRED AMERICAN EDUCATIONAL &lt;WAE> REGULAR DIV Qtly div three cts vs three cts prior\n    Pay April three\n    Record March 13\n Reuter\n&#3;',0
+'DREXEL OFFICIAL HAS STAKE IN EPSILON DATA &lt;EPSI> A senior official of Drexel Burnham\nLambert Inc and his father told the Securities and Exchange\nCommission they have acquired 258,591 shares of Epsilon Data\nManagement Inc, or 9.4 pct of the total outstanding.\n    Kenneth Thomas, senior vice president-investments at\nDrexel\'s Los Angeles office, and his father, retired university\nprofessor C.A. Thomas, said they bought the stake for 2.1 mln\ndlrs primarily for investment purposes [...]
+'&lt;NOVA> WINS GOVERNMENT OKAY FOR HUSKY &lt;HYO> DEAL Nova, the Canadian company that\nowns 56 pct of Husky Oil Ltd, said it received government\napproval for a transaction under which &lt;Union Faith Canada\nHolding Ltd> would buy a 43 pct stake in Husky.\n    Nova said the Minister of Regional and Industrial\nExpansion, Michel Cote, ruled that Union Faith\'s purchase of\nthe Husky stake would not result in Husky ceding control to a\nnon-Canadian company. It said this ruling was a key [...]
+'POTOMAC ELECTRIC POWER CO &lt;POM> JANUARY NET Oper shr 27 cts vs 29 cts\n    Oper net 13.5 mln vs 14.6 mln\n    Revs 104.6 mln vs 110.3 mln\n    12 mths\n    Oper shr 4.10 dlrs vs 3.66 dlrs\n    Oper net 205 mln vs 186.8 mln\n    Revs 1.4 billion vs 1.3 billion\n    NOTE: 1986 12 mths oper net excludes extraordinary gain of\n21.7 mln dlrs or 46 cts per share from sale of Virginia service\nterritory to Virginia Power.\n Reuter\n&#3;',0
+'SUFFIELD FINANCIAL &lt;SSBK> GETS FED APPROVAL Suffield Financial Corp said the\nFederal Reserve Board approved its application to acquire\nCoastal Bancorp &lt;CSBK>, Portland, Me.\n    Suffield said it still needs the approval of the\nsuperintendent of Maine\'s banking department.\n Reuter\n&#3;',0
+'AFG INDUSTRIES INC &lt;AFG> QUARTERLY DIVIDEND Qtly div four cts vs four cts\n    Pay April 3\n    Record March 23\n Reuter\n&#3;',0
+'&lt;GSW INC> YEAR NET Oper shr 2.16 dlrs vs 2.07 dlrs\n    Oper net 8,037,000 vs 7,710,000\n    Revs 136.4 mln vs 133.3 mln\n    Note: 1986 net excludes extraordinary gain of 13 mln dlrs\nor 3.50 dlrs shr from sale of &lt;Camco Inc> shares vs yr-ago loss\nof 4.3 mln dlrs or 1.14 dlrs shr.\n Reuter\n&#3;',0
+'SANTA ANITA REALTY &lt;SAR> QUARTERLY DIVIDEND Qtly div 51 cts vs 51 cts\n    Pay April 9\n    Record March 25\n    (Santa Anita Realty Enterprises Inc)\n Reuter\n&#3;',0
+'LIQUID AIR CORP &lt;LANA> QUARTERLY DIVIDEND Qtly div 40 cts vs 40 cts\n    Pay March 31\n    Record March 16\n Reuter\n&#3;',0
+'(MARSHALL STEEL LTD) YEAR NET Oper shr five cts vs 36 cts\n    Oper net 508,000 vs 3,450,000\n    Revs 296.7 mln vs 298.0 mln\n    Note: former name Marshall Drummond McCall Inc.\n    Results include extraordinary gains of 952,000 dlrs or 11\ncts per share in 1986 and 2,569,000 dlrs or 29 cts in 1985 from\nincome tax reduction.              \n Reuter\n&#3;',0
+'MARSHALL STEEL DETAILS GAIN FROM UNIT SALE (Marshall Steel Ltd), formerly Marshall\nDrummond McCall Inc, said it will report a 17 mln dlr net gain\nbefore taxes this year from the sale of its Drummond McCall\ndivision, which was sold effective January one.                \n   \n Reuter\n&#3;',0
+'MAYFAIR INDUSTRIES INC &lt;MAYF> 4TH QTR NET Oper shr 21 cts vs 18 cts\n    Oper net 659,000 vs 523,000\n    Revs 7,866,000 vs 5,503,000\n    Avg shrs 3,141,217 vs 2,925,294\n    12 mths\n    Oper shr 70 cts vs 46 cts\n    Oper net 2,075,000 vs 1,358,000\n    Revs 25.9 mln vs 19.3 mln\n    Avg shrs 2,980,247 vs 2,925,294\n    Note: Excludes tax gain of 295,000 dlrs for qtr and year.\n Reuter\n&#3;',0
+'LNG IMPORTS FROM ALGERIA UNLIKELY IN 1987 Liquefied natural gas imports from\nAlgeria are unlikely to happen in 1987 even though its\neconomically feasible, U.S. industry analysts sources said.\n    Youcef Yousfi, director-general of Sonatrach, the Algerian\nstate petroleum agency, indicated in a television interview in\nAlgiers that such imports would be made this year.\n    \"Contract negotiations, filing with the U.S. government and\nthe time required to restart mothballed terminals  [...]
+'SWISS ECONOMY IN EXCELLENT CONDITION, OECD SAYS Switzerland\'s economy, combining low\nunemployment, financial stability and a large external payments\nsurplus, is in excellent condition and faces a satisfactory\nfuture, the Organisation for Economic Cooperation and\nDevelopment, OECD, said.\n    This reflected the success of stable and relatively tight\nfiscal and monetary policies followed by the government, it\nsaid.\n    The OECD, in its annual report on Switzerland, picked out\nsom [...]
+'U.S. WHEAT BONUS TO SOVIET CALLED DORMANT The U.S. Agriculture Department is not\nactively considering offering subsidized wheat to the Soviet\nUnion under the export enhancement program (EEP), senior USDA\nofficials said.\n    However, grain trade analysts said the proposal has not\nbeen ruled out and that an offer might be made, though not in\nthe very near future.\n    \"The grain companies are trying to get this fired up again,\"\nan aide to Agriculture Secretary Richard Lyng said.  [...]
+'ALATENN RESOURCES INC &lt;ATNG> 4TH QTR NET Shr 75 cts vs 52 cts\n    Net 1,699,124 vs 1,177,786\n    Revs 45.6 mln vs 31.6 mln\n    12 mths\n    Shr 2.22 dlrs vs 2.20 dlrs\n    Net 5,057,292 vs 4,961,085\n    Revs 130.2 mln vs 126.7 mln\n Reuter\n&#3;',0
+'VERSATILE TO SELL UNIT TO VICON &lt;Versatile Corp> said\nit agreed in principle to sell its Alberta-based Versatile\nNoble Cultivators Co division to Vicon Inc, of Ontario, for\nundisclosed terms.\n    The division manufactures tillage and spraying equipment.\n Reuter\n&#3;',0
+'VIDEOTRON BUYS INTO EXHIBIT COMPANY (Groupe Videotron Ltd) said it agreed to\nbuy 50 pct of (Groupe Promexpo Inc), a company which\nspecializes in product exhibits, for three mln dlrs.           \n  \n Reuter\n&#3;',0
+'&lt;MEMOTEC DATA INC> YEAR NET Shr 81 cts vs 66 cts\n    Net 5,011,000 vs 2,314,000\n    Revs 57.3 mln vs 17.6 mln\n    Note: results include extraordinary gains of 1,593,000 dlrs\nor 26 cts a share in 1986 and 451,000 dlrs or 13 cts a share in\n1985.\n Reuter\n&#3;',0
+'TEXACO CANADA CUTS CRUDE PRICES 64 CANADIAN CTS/BBL, PAR GRADE TO 22.26 CANADIAN DLRS\n ',0
+'TEXACO CANADA &lt;TXC> LOWERS CRUDE POSTINGS Texaco Canada said it lowered the\ncontract price it will pay for crude oil 64 Canadian cts a\nbarrel, effective today.\n    The decrease brings the company\'s posted price for the\nbenchmark grade, Edmonton/Swann Hills Light Sweet, to 22.26\nCanadian dlrs a bbl.\n    Texaco Canada last changed its crude oil postings on Feb\n19.\n Reuter\n&#3;',0
+'USDA SAID UNLIKELY TO BROADEN CORN BONUS OFFER The U.S. Agriculture Department\nprobably will not offer a two dlr per bushel bonus payment to\ncorn farmers for any erodible cropland they enrolled in the\nconservation reserve program last year, an aide to USDA\nSecretary Richard Lyng said.\n    Sen. Charles Grassley (R-Iowa) said yesterday that Lyng had\nindicated he would consider giving those farmers the same two\ndlr bonus offered corn farmers who are signing up for the 1987\nprogram  [...]
+'MARATHON PETROLEUM REDUCES CRUDE POSTINGS Marathon Petroleum Co said it reduced\nthe contract price it will pay for all grades of crude oil one\ndlr a barrel, effective today.\n    The decrease brings Marathon\'s posted price for both West\nTexas Intermediate and West Texas Sour to 16.50 dlrs a bbl. The\nSouth Louisiana Sweet grade of crude was reduced to 16.85 dlrs\na bbl.\n    The company last changed its crude postings on Jan 12.\n Reuter\n&#3;',0
+'&lt;GEORGE WESTON LTD> YEAR NET Shr 2.31 dlrs vs 1.96 dlrs\n    Net 119.0 mln vs 101.0 mln\n    Revs 10.03 billion vs 8.88 billion\n Reuter\n&#3;',0
+'RELIEF TO U.S. CORN/OATS GROWERS SAID LIKELY U.S. farmers who in the past have\ngrown oats for their own use but failed to certify to the\ngovernment that they had done so probably will be allowed to\ncontinue planting that crop and be eligible for corn program\nbenefits, an aide to Agriculture Secretary Richard Lyng said.\n    Currently a farmer, to be eligible for corn program\nbenefits, must restrict his plantings of other program crops to\nthe acreage base for that crop.\n    Severa [...]
+'N.Z. MONEY SUPPLY RISES 3.6 PCT IN DECEMBER New Zealand\'s broadly defined,\nseasonally adjusted M-3 money supply grew an estimated 3.6 pct\nin December after rising a revised 2.4 pct in November and 4.04\npct in December last year, the Reserve Bank said in a\nstatement.\n    It said unadjusted M-3 increased to an estimated 30.07\nbillion N.Z. Dlrs from a revised 28.30 billion in November and\n25.53 billion in December 1985.\n    Year-on-year M-3 rose 17.77 pct from a revised 15.34 pct  [...]
+'CIRCUIT SYSTEMS &lt;CSYI> BUYS BOARD MAKER Circuit Systems Inc said it has\nbought all of the stock of (Ionic Industries Inc) in exchange\nfor 3,677,272 shares of its common.\n    Following the exchange there will be 4,969,643 shares of\nCircuit Systems stock outstanding. Ionic holders will own about\n74 pct of the outstanding stock of Circuit Systems, it said.\n    Ionic, a maker of circuit boards, had revenues of 8.4 mln\ndlrs and pretax profits of 232,000 dlrs in 1986, up from\nreven [...]
+'FALLING SOYBEAN CRUSH RATIOS CUT OUTPUT The sharp decline in soybean crush ratios\nseen in the last few weeks, accelerating in recent days, has\npushed margins below the cost of production at most soybean\nprocessing plants and prompted many to cut output of soybean\nmeal and oil.\n    The weekly U.S. soybean crush rate was reported by the\nNational Soybean Processors Association this afternoon at 21.78\nmln bushels, down from the 22 mln bushel plus rate seen over\nthe past two months w [...]
+'MAIL BOXES ETC &lt;MAIL> 3RD QTR JAN 31 NET Shr 23 cts vs 18 cts\n    Net 509,144 vs 277,834\n    Revs 2,258,341 vs 1,328,634\n    Avg shrs 2,177,553 vs 1,564,605\n    Nine mths\n    Shr 55 cts vs 42 cts\n    Net 1,150,633 vs 649,914\n    Revs 6,169,168 vs 3,178,115\n Reuter\n&#3;',0
+'MUNSINGWEAR INC &lt;MUN> 4TH QTR JAN 3 LOSS Shr loss 32 cts vs loss seven cts\n    Net loss 1,566,000 vs loss 292,000\n    Revs 39.4 mln vs 34.7 mln\n    Year\n    Shr profit 79 cts vs profit 74 cts\n    Net profit 3,651,000 vs profit 3,020,000\n    Revs 147.9 mln vs 114.2 mln\n    Avg shrs 4,639,000 vs 4,059,000\n    Note: Per shr adjusted for 3-for-2 stock split July 1986\nand 2-for-1 split May 1985.\n Reuter\n&#3;',0
+'FED DATA SUGGEST STABLE U.S. MONETARY POLICY Latest Federal Reserve data suggest that\nthe central bank voted to maintain the existing degree of\npressure on banking reserves at its regular policy-making\nmeeting two weeks ago, money market economists said.\n    \"The numbers were a little disappointing, but I think we\ncan take Mr Volcker at his word when he said that nothing had\nchanged,\" said Bob Bannon of Security Pacific National Bank.\n    Fed Chairman Paul Volcker told a Congre [...]
+'FRANCE FACES PRESSUE TO CHANGE POLICIES France\'s right wing government is facing\ngrowing pressure to modify its economic policies after revising\ndown its 1987 growth targets and revising up its inflation\nforecasts for this year.\n    Moving reluctantly into line with most private sector\nforecasts the government yesterday raised its 1987 inflation\nestimate a half percentage point to 2.5 per cent and cut its\neconomic growth estimate to between two and 2.8 per cent from a\n2.8 per c [...]
+'GTI CORP &lt;GTI> 4TH QTR OPER NET Oper shr profit six cts vs loss two cts\n    Oper net profit 225,000 vs loss 91,000\n    Revs 4,814,000 vs 3,339,000\n    Year\n    Oper shr profit 12 cts vs loss two cts\n    Oper net profit 415,000 vs loss 73,000\n    Revs 16.4 mln vs 16.9 mln\n    Note: data does not include from discontinued operations,\n4th qtr 1986 gain of 632,000 dlrs, or 19 cts per shr; 4th qtr\n1985 loss of 250,000 dlrs, or seven cts per shr; 1986 year loss\nof 4,054,000 dlrs, [...]
+'HOUSTON OIL &lt;HO> RESERVES STUDY COMPLETED Houston Oil Trust said that independent\npetroleum engineers completed an annual study that estimates\nthe trust\'s future net revenues from total proved reserves at\n88 mln dlrs and its discounted present value of the reserves at\n64 mln dlrs.\n    Based on the estimate, the trust said there may be no money\navailable for cash distributions to unitholders for the\nremainder of the year.\n    It said the estimates reflect a decrease of about  [...]
+'FAMOUS RESTAURANTS INC &lt;FAMS> 4TH QTR LOSS Shr loss 2.07 dlrs vs loss eight cts\n    Net loss 11,445,000 vs loss 501,000\n    Revs 14.5 mln vs 11.0 mln\n    Year\n    Shr loss 1.91 dlrs vs profit four cts\n    Net loss 12,427,000 vs profit 211,000\n    Revs 60.8 mln vs 51.5 mln\n    Note: includes non-recurring charges of 12,131,000 dlrs in\nthe 4th qtr and 12,500,000 dlrs in the year for reserve for\nunderperforming restaurants.\n Reuter\n&#3;',0
+'JAPAN CONSUMER PRICES FALL 0.4 PCT IN JANUARY Japan\'s unadjusted consumer price index\n(base 1985) fell 0.4 pct to 99.7 in January from the previous\nmonth, the government\'s Management and Coodination Agency said.\n    The fall compares with a decline of 0.2 pct in December.\n    The January index compared with a year earlier was down 1.1\npct, the first drop larger than 1.0 pct since it fell 1.3 pct\nin September 1958.\n    Food costs rose in January from December but prices fell\nfo [...]
+'AVERY &lt;AVY> SETS TWO FOR ONE STOCK SPLIT Avery said its board authorizerd\na two for one stock split, an increased in the quarterly\ndividend and plans to offer four mln shares of common stock.\n    The company said the stock split is effective March 16 with\na distribution of one additional share to each shareholder of\nrecord March 9.\n    It said the quarterly cash dividend of 10.5 cts per share\non the split shares, a 10.5 pct increase from the 19 cts per\nshare before the split. [...]
+' &#2;\nFEDERAL RESERVE WEEKLY M-2 COMPONENTS - FEB 26\n    Week Feb 16 vs Feb 9 (DAILY AVG BILLIONS)\n          Seasonally Adjusted      Unadjusted\n Currency......186.9 vs 186.8....185.6 vs 185.7\n Demand Depos..300.3 vs 300.0....291.5 vs 295.6\n Other Check...242.9 vs 241.2....240.0 vs 242.7\n Savings.......164.3 vs 163.2....162.8 vs 161.9\n Small Time....362.2 vs 362.9....361.9 vs 362.7\n MMDAs...(Commercial Bank Only)..378.2 vs 379.1\n O/N Repos........................58.9 vs  59.0\ [...]
+'N.Z. CENTRAL BANK SEES SLOWER MONEY, CREDIT GROWTH Monetary and credit growth rates in\nNew Zealand are not expected to continue at current levels\nfollowing the Reserve Bank\'s move to tighten liquidity late\nlast year, Reserve Bank Governor Spencer Russell said.\n    The monetary and credit growth figures for the December\nquarter were probably artifically inflated by unusually high\ngrowth in inter-institutional lending activity on the short\nterm money market, Russell said in a stat [...]
+'AVERAGE YEN CD RATES FALL IN LATEST WEEK Average interest rates on yen certificates\nof deposit, CD, fell to 4.27 pct in the week ended February 25\nfrom 4.32 pct the previous week, the Bank of Japan said.\n    New rates (previous in brackets), were -\n    Average CD rates all banks 4.27 pct (4.32)\n    Money Market Certificate, MMC, ceiling rates for the week\nstarting from March 2          3.52 pct (3.57)\n    Average CD rates of city, trust and long-term banks\n    Less than 60 days  [...]
+'JAPAN EXPECTED TO CUT BASE RATE FOR STATE BODIES Japan is expected to cut the base lending\nrate for state financial institutions to 5.5 pct from 6.2 as\npart of the recent pact by major industrial nations in Paris,\nFinance Ministry sources said.\n    They said the cut is based on a revision of the Trust Fund\nBureau Law, which should be approved by parliament on March 3,\nabolishing the 6.05 pct minimum interest rate on deposits with\nthe bureau.\n    The bureau channels funds to gove [...]
+'AUSTRALIA\'S KEATING CHANGES ECONOMIC FORECASTS Domestic demand is now expected to make\nno contribution to Australian economic growth in fiscal\n1986/87, ending June 30, while net exports will account for all\nof the overall increase, Treasurer Paul Keating said here.\n    However, he did not say in his speech to the Economic\nPlanning Advisory Council (EPAC) if the forecast 2.25 pct rise\nin gross domestic product (gdp) had been revised.\n    But Keating said domestic demand could fal [...]
+'THAI RICE EXPORTS RISE IN WEEK ENDED FEBRUARY 24 Thailand exported 84,960 tonnes of rice\nin the week ended February 24, up from 80,498 the previous\nweek, the Commerce Ministry said.\n    It said government and private exporters shipped 27,510 and\n57,450 tonnes respectively.\n    Private exporters concluded advance weekly sales for 79,448\ntonnes against 79,014 the previous week.\n    Thailand exported 689,038 tonnes of rice between the\nbeginning of January and February 24, up from 5 [...]
+'TOKYO GRAIN EXCHANGE TO RAISE MARGIN REQUIREMENTS The Tokyo Grain Exchange said it will raise\nthe margin requirement on the spot and nearby month for U.S.\nAnd Chinese soybeans and red beans, effective March 2.\n    Spot April U.S. Soybean contracts will increase to 90,000\nyen per 15 tonne lot from 70,000 now. Other months will stay\nunchanged at 70,000, except the new distant February\nrequirement, which will be set at 70,000 from March 2.\n    Chinese spot March will be set at 110,0 [...]
+'PRODUCER SPLIT HEATS UP COFFEE QUOTA TALKS Talks on the possibility of reintroducing\nglobal coffee export quotas have been extended into today, with\nsparks flying yesterday when a dissident group of exporters was\nnot included in a key negotiating forum.\n    The special meeting of the International Coffee\nOrganization (ICO) council was called to find a way to stop a\nprolonged slide in coffee prices.\n    However, delegates said no solution to the question of how\nto implement quota [...]
+'ITALIAN TREASURY CUTS INTEREST ON CERTIFICATES The Italian treasury said annual coupon\nrates payable March 1988 on two issues of long-term treasury\ncertificates (CCTs) would be cut by about four percentage\npoints compared with rates this March.\n    Coupon rates on 10-year certificates maturing March 1995\nwill fall to 9.80 pct from 13.65 pct and rates on 10-year\nissues maturing in March 1996 would fall to 10.05 pct from\n14.30 pct.\n    The Treasury also cut by 0.60 point six-month [...]
+'INDONESIAN AGRICULTURE GROWTH EXPECTED TO SLOW Indonesia\"s agriculture sector will grow\nby just 1.0 pct in calendar 1987, against an estimated 2.4 pct\nin 1986 as the production of some commodities stagnates or\ndeclines, the U.S. Embassy said in a report.\n    Production of Indonesia\"s staple food, rice, is forecast to\nfall to around 26.3 mln tonnes from an embassy estimate of\n26.58 mln tonnes in 1986, according to the annual report on\nIndonesia\"s agricultural performance.\n     [...]
+'KUWAIT SAYS NO PLANS FOR EMERGENCY OPEC TALKS Kuwait\"s Oil Minister, in remarks\npublished today, said there were no plans for an emergency OPEC\nmeeting to review oil policies after recent weakness in world\noil prices.\n    Sheikh Ali al-Khalifa al-Sabah was quoted by the local\ndaily al-Qabas as saying: \"None of the OPEC members has asked\nfor such a meeting.\"\n    He denied Kuwait was pumping above its quota of 948,000\nbarrels of crude daily (bpd) set under self-imposed producti [...]
+'INDONESIA SEEN AT CROSSROADS OVER ECONOMIC CHANGE Indonesia appears to be nearing a\npolitical crossroads over measures to deregulate its protected\neconomy, the U.S. Embassy says in a new report.\n    To counter falling oil revenues, the government has\nlaunched a series of measures over the past nine months to\nboost exports outside the oil sector and attract new\ninvestment.\n    Indonesia, the only Asian member of OPEC and a leading\nprimary commodity producer, has been severely hit [...]
+'CHINESE WHEAT CROP THREATENED BY PESTS, DISEASE China\'s wheat crop this year is seriously\nthreatened by plant pests and diseases, the New China News\nAgency said.\n    More than 5 mln hectares of wheat-producing land in North\nChina could be affected because relatively warm and dry weather\nhad allowed bacteria and insect eggs to survive the winter, the\nagency added.\n    China\"s Ministry of Agriculture, Animal Husbandry and\nFisheries has called for measures including the timely su [...]
+'SAUDI RIYAL DEPOSIT RATES REMAIN FIRM Saudi riyal interbank deposits were\nsteady at yesterday\'s higher levels in a quiet market.\n    Traders said they were reluctant to take out new positions\namidst uncertainty over whether OPEC will succeed in halting\nthe current decline in oil prices.\n    Oil industry sources said yesterday several Gulf Arab\nproducers had had difficulty selling oil at official OPEC\nprices but Kuwait has said there are no plans for an emergency\nmeeting of the  [...]
+'QATAR UNVEILS BUDGET FOR FISCAL 1987/88 The Gulf oil state of Qatar, recovering\nslightly from last year\'s decline in world oil prices,\nannounced its first budget since early 1985 and projected a\ndeficit of 5.472 billion riyals.\n    The deficit compared with a shortfall of 7.3 billion riyals\nin the last published budget for 1985/86.\n    In a statement outlining the budget for the fiscal year\n1987/88 beginning today, Finance and Petroleum Minister Sheikh\nAbdul-Aziz bin Khalifa al [...]
+'GULF BOND, STOCK MARKETS LAG BEHIND, GIB SAYS Gulf money markets have grown reasonably\nwell during the past decade, but bond and stock markets remain\nto a large extent fragmented and lag behind, &lt;Gulf\nInternational Bank BSC> (GIB) said.\n    The bank\'s economist Henry Azzam said in a review of Gulf\ncapital markets that investors have to relinquish traditional\ninvestment vehicles such as real estate, foreign currency bank\naccounts and precious metals.\n    \"Greater financial s [...]
+'SAUDI ARABIA REITERATES COMMITMENT TO OPEC PACT Saudi Arabian Oil Minister Hisham Nazer\nreiterated the kingdom\'s commitment to last December\'s OPEC\naccord to boost world oil prices and stabilise the market, the\nofficial Saudi Press Agency SPA said.\n    Asked by the agency about the recent fall in free market\noil prices, Nazer said Saudi Arabia \"is fully adhering by the\n... Accord and it will never sell its oil at prices below the\npronounced prices under any circumstance.\"\n   [...]
+'COFFEE QUOTA TALKS CONTINUE, NO ACCORD SEEN LIKELY The International Coffee Organization\n(ICO ) council talks on reintroducing export quotas continued\nwith an extended session lasting late into Sunday night, but\ndelegates said prospects for an accord between producers and\nconsumers were diminishing by the minute.\n    The special meeting, called to stop the prolonged slide in\ncoffee prices, was likely to adjourn sometime tonight without\nagreement, delegates said.\n    The council  [...]
+'CANADA-EGYPT WHEAT NEGOTIATIONS TO CONTINUE Canadian and Egyptian wheat negotiators\nfailed to conclude an agreement on Canadian wheat exports to\nEgypt during talks last week, but the Canadian team will return\nto Cairo for further negotiations, Canadian embassy officials\nsaid.\n    An embassy official declined to identify which issues\nremained to be resolved and when the talks would resume.\n    In a five-year protocol signed in 1985, Cairo agreed to\npurchase 500,000 tonnes of Cana [...]
+'INDONESIAN WHEAT IMPORTS EXPECTED TO FALL IN 1987 Indonesia\'s wheat imports are expected\nto fall to 1.5 mln tonnes in calendar 1987 from 1.69 mln in\n1986, the U.S. Embassy\'s annual agriculture report said.\n    It said the drop was expected, because there will be a\ndrawdown on stocks built up near the end of 1986.\n    It said wheat stocks at the end of 1986 were 390,000\ntonnes, up from 223,000 at end-1985. It forecast end-1987\nstocks at around 290,000 tonnes.\n    The main suppl [...]
+'ZAMBIA TO RETAIN CURRENCY AUCTION, SAYS KAUNDA Zambia will retain its foreign-exchange\nauction system despite the suspension of weekly auctions since\nJanuary 24, President Kenneth Kaunda said.\n    \"We have not run away from the auction. It hasn\'t been\nabolished at all,\" he told Reuters in an interview.\n    He said the system would be reintroduced after current\ntalks with the World Bank and the International Monetary Fund\nand, he hoped, would be backed by fresh foreign aid fund [...]
+'INDONESIAN SUGAR OUTPUT SEEN SHORT OF TARGET Indonesia\'s raw sugar output is likely\nto be 1.8 mln tonnes in calendar 1987, unchanged from 1986 and\nbelow the government\'s 1987 forecast of 2.5 mln, the U.S.\nEmbassy said in its agricultural outlook for 1987.\n    Indonesia bought 162,500 tonnes of raw sugar on world\nmarkets in late 1986, the report said.\n    The embassy estimated Indonesia\'s calendar 1986 raw sugar\nproduction at 1.8 mln tonnes, against a government estimate of\n1. [...]
+'NIPPON KOKAN STEEL AFFILIATES CONSIDERING MERGER Toshin Steel Co Ltd &lt;TOSS.T> and &lt;Azuma\nSteel Co Ltd>, affiliates of Nippon Kokan KK &lt;NKKT.T>, are\nconsidering a merger, company spokesmen said.\n    Toshin Steel, owned 41.9 pct by Nippon Kokan, and Azuma\nSteel, owned 41.3 pct by Nippon Kokan, are expected to decide\nby the end of March, they said. Both firms have been struggling\nwith losses caused by the recession in the steel industry and\nthe yen\'s appreciation.\n    Azu [...]
+'INDONESIA UNLIKELY TO IMPORT PHILIPPINES COPRA Indonesia is unlikely to import copra\nfrom the Philippines in 1987 after importing 30,000 tonnes in\n1986, the U.S. Embassy\'s annual agriculture report said.\n    The report said the 31 pct devaluation of the Indonesian\nrupiah, an increase in import duties on copra and increases in\nthe price of Philippines copra have reduced the margin between\nprices in the two countries.\n    Indonesia\'s copra production is forecast at 1.32 mln tonne [...]
+'JAPAN FEBRUARY INTERIM TRADE SURPLUS JUMPS Japan\'s customs-cleared trade surplus in\nthe first 20 days of February jumped to 3.58 billion dlrs from\n1.94 billion a year earlier, the Finance Ministry said.\n    The February interim surplus was sharply up from a 965.04\nmln dlr surplus in the same January period.\n    FOB exports rose 14.6 pct from a year earlier in the first\n20 days of February to 10.91 billion, while CIF imports fell\n3.2 pct to 7.33 billion.\n    The average dollar/y [...]
+'NIPPON LIGHT METAL CONTINUES ALUMINIUM OUTPUT CUT Nippon Light Metal Co Ltd &lt;NLGT.T>, which\nhas annual capacity of 63,000 tonnes, will continue primary\naluminium production at a rate of 35,000 tonnes owing to low\ndomestic and world prices and low water supplies at its\nhydroelectric power plant, a company official said.\n    Nippon, which has no plans to restore output to the 48,000\ntonnes a year at which it was working until late 1986, will\nbecome Japan\'s only smelter.\n    &l [...]
+'SAUDI FEBRUARY CRUDE OUTPUT PUT AT 3.5 MLN BPD Saudi crude oil output last month fell\nto an average of 3.5 mln barrels per day (bpd) from 3.8 mln bpd\nin January, Gulf oil sources said.\n    They said exports from the Ras Tanurah and Ju\'aymah\nterminals in the Gulf fell to an average 1.9 mln bpd last month\nfrom 2.2 mln in January because of lower liftings by some\ncustomers.\n    But the drop was much smaller than expected after Gulf\nexports rallied in the fourth week of February to [...]
+'INDONESIAN PALM OIL OUTPUT EXPECTED TO RISE Indonesia\'s palm oil output is expected\nto rise and exports to increase, the U.S. Embassy said in its\nannual report on Indonesia\'s agriculture sector.\n    The Indonesian government said crude palm oil (CPO) output\nis expected to rise to 1.56 mln tonnes in 1987 and 2.11 mln in\n1988, up from a projected 1.45 mln tonnes in 1986 and 1.26 mln\nin 1985.\n    The 1986 projection of 1.45 mln tonnes is up from a\nprovisional figure of 1.3 mln to [...]
+'INDONESIAN TEA, COCOA EXPORTS SEEN UP, COFFEE DOWN Indonesia\'s exports of tea and cocoa\nwill continue to rise in calendar 1987 but coffee exports are\nforecast to dip slightly in 1987/88 (April-March) as the\ngovernment tries to improve quality, the U.S. Embassy said.\n    The embassy\'s annual report on Indonesian agriculture\nforecast coffee output in 1986/87 would be 5.77 mln bags of 60\nkilograms each. That is slightly less than the 5.8 mln bags\nproduced in 1985/86.\n    In 1987/ [...]
+'JAPAN\'S NTT FORECASTS PROFITS FALL IN 1987/88 &lt;Nippon Telegraph and Telephone Corp>\n(NTT) expects its profits to fall to 328 billion yen in the\nyear ending March 31, 1988 from a projected 348 billion this\nyear, the company said.\n    Total sales for the same period are expected to rise to\n5,506 billion yen from a projected 5,328 billion this year, NTT\nsaid in a business operations plan submitted to the Post and\nTelecommunications Ministry.\n    NTT said it plans to make capita [...]
+'CHINA SIGNS WORLD BANK LOAN FOR TIANJIN PORT China has signed a 130 mln dlr loan\nagreement with the World Bank to partly finance 12 new berths\nwith an annual capacity of 6.28 mln tonnes at the 20 mln tonne\na year capacity Tianjin port, the New China News Agency said.\n    China will provide 370 mln yuan for the project and a\nChinese company won a bid against 12 other firms from seven\ncountries to do the foundation work, it said.\n    It said 11 of the new berths will be able to han [...]
+'Japan February external reserves record 51.73 billion dlrs (January 51.46 billion)\n ',0
+'JAPAN FEBRUARY RESERVES RECORD 51.73 BILLION DLRS Japan\'s external reserves rose to a record\n51.73 billion dlrs at the end of February from the previous\nrecord of 51.46 billion at end-January, the Finance Ministry\nsaid.\n    End-February reserves last year were 27.58 billion dlrs.\n    In January, the nation\'s foreign reserves showed the\nlargest-ever monthly increase at 9.22 billion dlrs due to\nmassive Bank of Japan dollar buying intervention during the\nmonth as the dollar fell  [...]
+'ICO TALKS ON COFFEE QUOTAS TO RESUME AT NOON Talks on coffee export quotas at the\nInternational Coffee Organization (ICO) special council session\nwill resume at noon gmt today, following a last minute decision\ntaken early this morning to extend the meeting 24 hours, ICO\nofficials said.\n    An 18 member contact group will meet at midday to examine\nnew ideas, and the full council is to convene at 1900gmt, they\nsaid.\n    The extension resulted from a last ditch effort by Colombia\n [...]
+'INDIAN SUGAR OUTPUT RISES IN FIRST FOUR MONTHS India\'s sugar output to January 31 in\nthe 1986/87 season (October/September) rose to 3.66 mln tonnes\nfrom 3.46 mln in the same 1985/86 period, the Indian Sugar\nMills Association said.\n    Total offtake in the first four months of the current year\nwas 2.71 mln tonnes (including 241,000 tonnes imported) for\ndomestic use and 4,000 tonnes for export, against 2.81 mln\ntonnes (including 993,000 imported) for domestic use and 3,000\ntonnes [...]
+'NEW DUTCH ADVANCES TOTAL 4.8 BILLION GUILDERS The Dutch Central Bank said it has\naccepted bids totalling 4.8 billion guilders at tender for new\nseven-day special advances at 5.3 pct covering the period March\n2 to 9 aimed at relieving money market tightness.\n    Subscriptions to 300 mln guilders were met in full, amounts\nabove 300 mln at 50 pct.\n    The new facility replaces old five-day advances worth 8.0\nbillion guilders at the same rate.\n    Dealers expect this week\'s money m [...]
+'JAPAN BUYS SOME 95,000 TONNES SOYBEANS FROM CHINA Japanese importers bought some 95,000\ntonnes of Chinese soybeans late last month for May to September\nshipment, under the semi-annual trade accords, trade sources\nsaid.\n    The FOB premium rose to 13.50 dlrs per tonne, up 2.50 dlrs\nfrom the premium for the November to April shipment, but down\nfrom 13.80 for the last May to September shipment.\n    Flat prices for Chinese beans are based on futures prices\nin Chicago plus the FOB pr [...]
+'SHV SAYS IT MAKING TENDER OFFER FOR UP TO 33 MLN SHARES IN IC GAS\n ',0
+'CHEUNG KONG (HOLDINGS) LTD &lt;CKGH.HK> YEAR 1986 Shr 3.25 H.K. Dlrs vs 1.40\n    Final div 52 cents vs 38, making 75 cents vs 57\n    Net 1.28 billion dlrs vs 551.7 mln\n    Note - Earnings excluded extraordinary gains of 983.6 mln\ndlrs vs 81.3 mln. Bonus issue one-for-four vs nil. Share split\nfour-for-one. Dividend payable June 3, books close May 11-21.\n REUTER\n&#3;',0
+'WALLENBERGS FIGHT BID FOR SWEDISH MATCH STAKE Sweden\'s Wallenberg group fought back\na bid by the London-based Swedish financier Erik Penser to\nsecure a large stake in Swedish Match &lt;SMBS ST>, one of the\ncompanies at the core of their business empire.\n    A statement issued by the Wallenberg holding companies AB\nInvestor and Forvaltnings AB Providentia said they had taken\nover an option held by Nobel Industrier Sweden AB to acquire 33\npct of the voting rights in Swedish Match. [...]
+'INDONESIAN SOYBEAN IMPORTS FORECAST TO RISE Soybean imports are forecast to rise to\n425,000 tonnes in 1987/88 (October/September) from an estimated\n300,000 in 1986/87 and 375,000 in 1985/86, the U.S. Embassy\nsaid in its annual report on Indonesia\'s agriculture.\n    It said Indonesia did not achieve its goal of\nself-sufficiency in soybean output in calendar 1986 because it\ndid not meet a planned increase in area planted and because\nyields have remained below target.\n    Soybean  [...]
+'SHV SAYS IT MAKING TENDER OFFER FOR IC GAS &lt;SHV (United Kingdom) Holding Co Ltd>\nsaid it was making a tender offer for up to 33 mln ordinary\nshares in Imperial Continental Gas Association.&lt;ICGS.L>.\n    It said in a statement the offer was on the basis of 700p\nfor each IC Gas ordinary and 252p for every one stg nominal of\nIC Gas loan stock.\n    SHV already holds 6.8 mln IC Gas ordinary stock units\nrepresenting around 4.9 pct of the current issued share\ncapital.\n    Success [...]
+'U.K. MONEY MARKET DEFICIT FORECAST AT 800 MLN STG The Bank of England said it forecast a\nshortage of around 800 mln stg in the money market today.\n    Among the main factors affecting liquidity, bills maturing\nin official hands and the take-up of treasury bills will drain\nsome 1.61 billion stg.\n    Partly offsetting this outflow, exchequer transactions and\na fall in note circulation will add around 425 mln stg and 360\nmln stg respectively. In addition, bankers\' balances above\nt [...]
+'BLACK MINERS SUPPORT S. AFRICAN MINES TAKEOVER Thousands of black\nmineworkers roared support for a union proposal to seize\ncontrol of South Africa\'s gold, uranium, platinum and coal\nmines if the owners refuse to improve conditions for migrant\nblack workers.\n    About 15,000 miners attended a rally here to endorse moves\nproposed by last week\'s annual meeting of the 200,000 strong\nNational Union of Mineworkers (NUM).\n    They also supported a proposal for a national strike at th [...]
+'THAILAND ANNOUNCES THIRD TAPIOCA QUOTA FOR EC Thailand\'s Commerce Ministry announced a\nnew tapioca export quota of 737,987 tonnes for the European\nCommunity against 762,860 tonnes for the previous allocation.\n    The ministry said the fresh allocation, for the February\n27-July 7 shipment period, is the third under a maximum 5.5 mln\ntonne overall quota that Thailand obtained from the EC for\ncalendar 1987.\n    It said the quota allocation was based on a national\ntapioca pellet st [...]
+'ATPC MEMBERS FIND WAYS TO CURB TIN EXPORTS Mine and industry officials from\nmost member states of the Association of Tin Producing\nCountries (ATPC) say they have found ways to limit group\nexports to 96,000 tonnes in the year started March 1, according\nto views polled by Reuter correspondents.\n    The plan to curb exports, agreed in January, is aimed at\ncutting the world surplus to 50,000 tonnes from 70,000 now and\nboosting prices to about 19 ringgit a kilo from just over 16.\n    [...]
+'SOUTH KOREA TO HOLD CURRENT ACCOUNT SURPLUS DOWN South Korea plans to take steps to keep\nits 1987 current account surplus below five billion dlrs,\nEconomic Planning Board Minister Kim Mahn-je said.\n    Kim told reporters the government would repay loans ahead\nof schedule and encourage firms to increase imports and\ninvestment abroad to prevent the current account surplus from\nrising too quickly.\n    Last year South Korea\'s current account surplus was 4.65\nbillion dlrs. It widene [...]
+'DUTCH OILSEEDS/FATS IMPORTS ROSE IN 1986 and oil-bearing\nraw materials, fats and oils rose to 2.16 mln tonnes on a\nfat/oil basis in 1986 from 2.12 mln tonnes in 1985, the\nCommodity Board for Margarine, Fats and Oils said.\n    Exports of the same commodities fell to 1.35 mln tonnes\nfrom 1.38 mln on a fat-oil basis.\n    Fat- and oil-bearing raw materials imports rose to 760,000\nfrom 709,200 tonnes on a fat/oil basis and to 3.47 mln tonnes\nactual weight from 3.32 mln.\n    Soyabean [...]
+'CHINA\'S HEILONGJIANG PROVINCE BOOSTS GOLD OUTPUT Gold output in the northeast China\nprovince of Heilongjiang rose 22.7 pct in 1986 from 1985\'s\nlevel, the New China News Agency said. It gave no figures.\n    It said the province, China\'s second largest gold producer\nafter Shandong, plans to double gold output by 1990 from the\n1986 level. China does not publish gold production figures.\n    However, industry sources estimate output at about 65\ntonnes a year, with exports put betwe [...]
+'SALE TILNEY BUYS STAKE IN U.S. INSURANCE BROKER &lt;Sale Tilney Plc> said it has purchased\n80 pct of the ordinary share capital of &lt;B and R International\nInc.>, a U.S. Insurance broker, for 5.6 mln dlrs.\n    Sale is paying 3.6 mln dlrs in cash on completion, with the\nbalance plus interest to be paid in equal instalments over the\nnext six years.\n    B and R posted pretax profit of 855,000 dlrs in the year to\nDec 31, 1986 when it had net tangible assets of 563,000 dlrs.\n REUTER [...]
+'ESTIMATED DROP IN JAPAN CORPORATE PROFITS TRIMMED The combined profits of Japan\'s major\ncorporations, excluding financial institutions, are forecast to\nfall 19.2 pct in the 1986/87 year ending March 31, compared to\nthe 19.9 pct decline projected in late November, Wako Research\nInstitute of Economics said.\n    The private research body also said in a statement that 437\nof the 1,084 firms listed on the first section of the Tokyo\nStock Exchange foresee an 11.6 pct fall in sales in  [...]
+'INDIA BUYS 46,000 TONNES OF VEGETABLE OILS The Indian State Trading Corporation\npurchased 46,000 tonnes of vegetable oils at its import tender\non Friday, market sources said.\n    The business was for April shipments and comprised 20,000\ntonnes of European rapeseed oil at 318 dlrs, 20,000 tonnes of\nsoyoil, believed South American origin, at 314, and 6,000\ntonnes of Malaysian rbd palm olein at 347 dlrs, all per tonne\ncif.\n    Palm oil sellers were disappointed at the light purchas [...]
+'JAPAN TO PROMOTE INTEREST RATE LIBERALISATION The Bank of Japan decided at a policy\nboard meeting to promote further interest rate liberalisation\nby lowering the minimum denomination of regulation-free large\ndeposits and by raising the interest rate ceiling on money\nmarket certificates (MMCs), a central bank official said.\n    The new guideline will go into effect on April 6, the bank\nsaid.\n    Under the guideline, the minimum denomination of\nregulation-free large deposits will  [...]
+'TAIWAN POWER FIRM PLANS MORE FOREIGN DEBT CUTS State-owned (Taiwan Power co) will boost\nits domestic borrowings to further cut its foreign debt in line\nwith a government policy to trim the island\'s huge foreign\nexchange reserves, a company official said.\n    The company\'s foreign debt, mainly from the Japanese and\nU.S. Banks, was cut nearly by half to 66.2 billion taiwan dlrs\nequivalent in calendar 1986 from 124.6 billion in 1985, he\nsaid.\n    Its domestic borrowings however r [...]
+'DUTCH ANIMAL FEED USAGE DOWN IN FIRST HALF SEASON Dutch animal feed usage in the first\nhalf of the current season from July through December 1986 fell\n7.6 pct to 6.5 mln tonnes from 7.1 mln in the same period of\n1985, figures in the latest newsletter from the co-operative\nCebeco-Handelsraad show.\n    Tapioca usage fell 9.1 pct to 1.4 mln tonnes from 1.6 mln\nin the first half of the 1985/86 season.\n    Grain usage fell 6.1 pct to 1.1 mln tonnes from 1.2 mln,\nwhile soymeal usage f [...]
+'U.K. CONFIRMS JANUARY STERLING M3 RISE The Bank of England said the broad\nmeasure of U.K. Money supply, Sterling M3, rose a seasonally\nadjusted 1.1 pct in January after a 0.2 pct rise in December.\n    The unadjusted year-on-year rise was 17.6 pct after 18.1\npct in the year to December.\n    The narrow measure of money supply, M0, fell by a\nseasonally adjusted 0.6 pct in January, and rose by a\nnon-adjusted 4.1 pct year-on-year, the Bank said.\n    The figures confirm provisional da [...]
+'EXCO BUYS U.S. GOVERNMENT SECURITIES BROKER &lt;Exco International Plc>, a subsidiary of\nBritish and Commonwealth Shipping Co Plc &lt;BCOM.L>, said it had\nagreed in principle to buy an 80 pct stake in &lt;RMJ Holdings\nCorp> for about 79 mln dlrs.\n    Exco Chairman Richard Lacy told Reuters the acquisition was\nbeing made from Bank of New York Co Inc &lt;BK.N>, which currently\nholds a 50.1 pct, and from RMJ partners who hold the remainder.\n    Bank of New York and the partners will [...]
+'PAKISTAN TO TENDER FOR RBD PALM OIL Pakistan will hold an import tender\ntomorrow for 6,000 tonnes of refined bleached deodorised palm\noil for second half March shipments, traders said.\n REUTER\n&#3;',0
+'COLOROLL AGREES TO BUY U.S. WALLCOVERINGS COMPANY &lt;Coloroll Group Plc> said it has entered\ninto a conditional agreement to acquire the business and assets\nof &lt;Wallco Inc> and related companies for 14.5 mln dlrs.\n    Miami-based Wallco manufactures and distributes\nwallcoverings and showed a pretax profit of 1.5 mln dlrs on\nturnover of 37 mln in the year ending June 1986. The total U.S.\nMarket was estimated to be worth 840 mln dlrs in 1986, having\ngrown by 47 pct in the previ [...]
+'U.K. MONEY MARKET SHORTAGE FORECAST REVISED DOWN The Bank of England said it revised its\nforecast of the shortage in the money market down to around 700\nmln stg from its original estimate of 800 mln.\n REUTER\n&#3;',0
+'SWEDEN TO GO AHEAD WITH S. AFRICAN TRADE SANCTIONS Sweden\'s ruling Social Democratic\nParty gave full power to the government to decree unilateral\ntrade sanctions against South Africa, Prime Minister Ingvar\nCalrsson said.\n    Carlsson told a news conference the party decided the fight\nagainst apartheid took priority over Sweden\'s traditional\npolicy of only adopting sanctions with the backing of the U.N.\nSecurity Council.\n    The government will decide later what form the trade\ [...]
+'U.K. MONEY MARKET RECEIVES 37 MLN STG ASSISTANCE The Bank of England said it had provided\nthe money market with 37 mln stg assistance in the morning\nsession. This compares with the Bank\'s downward revised\nestimate of the shortfall in the system today of around 700 mln\nstg.\n    The central bank purchased bank bills outright comprising\nfour mln stg in band one at 10-7/8 pct and 33 mln stg in band\ntwo at 10-13/16 pct.\n REUTER\n&#3;',0
+'JAPAN, U.S. SET TO BEGIN HIGH-LEVEL TRADE TALKS Japan and the U.S. Kick off top-level\ntrade talks tomorrow amid signs officials from both sides are\ngrowing increasingly irritated with each other.\n    The talks, held annually at sub-cabinet level to review the\nwhole gamut of U.S./Japan economic relations, will pave the way\nfor American Secretary of State George Schultz\'s one day\nstop-over here at end-week on his way home from China.\n    Faced with growing Congressional protection [...]
+'INDIA TO HOLD WHITE SUGAR BUYING TENDER India will hold a buying tender on\nWednesday, March 4, for two to three cargoes of white sugar for\nMarch/April shipment, traders said.\n REUTER\n&#3;',0
+'CARLTON COMMUNICATIONS OPTIMISTIC FOR 1987 &lt;Carlton Communications Plc> has started\nthe current financial year well, with accounts for the first\nfour months showing a healthy increase on the same period last\nyear, and Chairman M.P. Green told the annual meeting he looked\nforward to 1987 with optimism.\n    The issue of 4.6 mln shares in ADR form had now been\nsuccessfully completed, he added.\n    Carlton intended to increase its presence in the U.S. Which\nrepresented 50 pct of  [...]
+'EC OPENS ANTI-DUMPING ENQUIRY INTO SOVIET MERCURY The European Community Commission said\nit has opened an enquiry into allegations that the Soviet Union\nis dumping mercury on the European market at below-cost prices.\n    The Commission said its decision follows a complaint from\nEC non-ferrous metals producers that the sales of Soviet\nmercury were harming their business and threatening jobs in the\nEuropean industry.\n    According to the complaint, Soviet mercury sales in the EC\nh [...]
+'GULF ARAB DEPUTY OIL MINISTERS TO MEET IN BAHRAIN Deputy oil ministers from six Gulf\nArab states will meet in Bahrain today to discuss coordination\nof crude oil marketing, the official Emirates news agency WAM\nreported.\n    WAM said the officials would be discussing implementation\nof last Sunday\'s agreement in Doha by Gulf Cooperation Council\n(GCC) oil ministers to help each other market their crude oil.\n    Four of the GCC states - Saudi Arabia, the United Arab\nEmirates (UAE), [...]
+'SAUDI ARABIA REITERATES COMMITMENT TO OPEC ACCORD Saudi Arabian Oil Minister Hisham Nazer\nreiterated the kingdom\'s commitment to last December\'s OPEC\naccord to boost world oil prices and stabilize the market, the\nofficial Saudi Press Agency SPA said.\n    Asked by the agency about the recent fall in free market\noil prices, Nazer said Saudi Arabia \"is fully adhering by the\n... accord and it will never sell its oil at prices below the\npronounced prices under any circumstance.\"\n [...]
+'KUWAIT MINISTER SAYS NO EMERGENCY OPEC TALKS SET Kuwait\'s oil minister said in a newspaper\ninterview that there were no plans for an emergency OPEC\nmeeting after the recent weakness in world oil prices.\n    Sheikh Ali al-Khalifa al-Sabah was quoted by the local\ndaily al-Qabas as saying that \"none of the OPEC members has\nasked for such a meeting.\"\n    He also denied that Kuwait was pumping above its OPEC quota\nof 948,000 barrels of crude daily (bpd).\n    Crude oil prices fell  [...]
+'TAIWAN PLANS NEW TARIFF CUTS Taiwan plans another round of deep tariff\ncuts this year to help narrow its trade surplus with the U.S.,\nA senior economic planner said.\n    Wang Chao-Ming, vice-chairman of the council for economic\nplanning and development, told Reuters Taiwan would further\nreduce import tariffs on 1,700 products sometime in the second\nhalf of this year.\n    Cuts of up to 50 pct on those items were made last year and\nWang said further cuts would go much deeper.\n    [...]
+'HUTCHISON SEES HIGHER PAYOUT, SATISFACTORY PROFITS Hutchison Whampoa Ltd &lt;HWHH.HK>\nexpects satisfactory profits in 1987 and will pay a higher\ndividend for the year, chairman Li Ka-shing said.\n    He did not make any specific projections for the company\'s\nearnings this year but he said the firm will pay a dividend of\nnot less than 32.5 cents per share after a proposed\nfour-for-one stock split and a one-for-four bonus issue.\n    It paid total dividends of 1.30 dlrs per share la [...]
+'SCIENTIFIC MICRO SYSTEMS &lt;SMSI> ACUIRES SUPERMAC Scientific Micro Systems Inc said it\nhas acquired Supermac Technology, a rapidly growing supplier of\nenhancement products and disc drive subsystems for the Apple\npersonal computer market.\n    Scientific Micro said it acquired all the common stock of\nSupermac in exchange for 1.05 mln shares of its own common\nstock. The stock closed at 5.50 dlrs bid on Friday.\n    Supermac, a privately held firm based in Mountain View,\nCalifornia [...]
+'AMERICAN EXPRESS &lt;AXP> VIEWING SHEARSON OPTIONS American Express Co, rumored to be\nconsidering a spinoff of part of Shearson Lehman Brothers Inc,\nsaid it is studying a range of options for its brokerage unit\nthat could improve Shearon\'s access to capital and help it meet\nbroadening international competition.\n    In a joint statement, American Express and Shearson said\nthe actions under consideration are an integral part of\nAmerican Express\' worldwide financial services strat [...]
+'ROPAK &lt;ROPK> HAS 34 PCT OF BUCKHORN &lt;BKN> Ropak Corp said it received\nand accepted about 456,968 common shares and 527,035 Series A\nconvertible preferred shares of Buckhorn Inc at four dlrs and\n5.75 dlrs each respectively in response to its tender offer\nthat expired Friday, and it now owns 34.4 pct of Buckhorn\nvoting power.\n    The company had owned 63,000 common and 25,100 preferred\nshares before starting the hostile tender.  Ropak said it is\nborrowing the funds needed to [...]
+'PHILADELPHIA PORT CLOSED BY TANKER CRASH The port of Philadelphia was closed\nwhen a Cypriot oil tanker, Seapride II, ran aground after\nhitting a 200-foot tower supporting power lines across the\nriver, a Coast Guard spokesman said.\n    He said there was no oil spill but the ship is lodged on\nrocks opposite the Hope Creek nuclear power plant in New\nJersey.\n    He said the port would be closed until today when they\nhoped to refloat the ship on the high tide.\n    After delivering o [...]
+'PENRIL &lt;PNL> SEEKS TO SELL TWO UNITS Penril Corp said it is seeking to\nsell its Triplett Electrical Instrument Corp subsidiary in\nBluffton, Ohio, and Triplett\'s Alltest division in Hoffman\nEstates, Ill., as part of a plan to concentrate on its three\nprofitable division and reduce its debt load.\n    The company also said it is evaluating a plan to satisfy\nits obligations under its 10-7/8 pct subordinated notes but\ngave no details.  Interest on the notes is due today.\n    Penr [...]
+'&lt;DALE BURDETT INC> FACES DAMAGE CLAIM Dale Burdett Inc said it\nfaces damages claims totalling about 420,000 dlrs from the\nformer owners of Burdett Publications Inc.\n    The company said on February 20, 1986, its predecessor\nNolex Development Inc acquired Burdett Publications Inc in an\nexchange of 17 mln common shares for all Burdett Publications\nshares, but the transaction was not qualified with the\nCalifornia Department of Corporations.\n    As a result, it said, the former B [...]
+'PUROLATOR &lt;PCC> IN BUYOUT WITH HUTTON &lt;EFH> New Jersey-based overnight messenger\nPurolator Courier Corp said it has agreed to be acquired for\nabout 265 mln dlrs by a company formed by E.F. Hutton LBO Inc\nand certain managers of Purolator\'s U.S. courier business.\n    Analysts have said that Purolator has been for sale for\nsome time. Purolator announced earlier it was mulling a\ntakeover bid, but analysts wrongly predicted the offer was from\nanother courier company.\n    Hutt [...]
+'PAKISTAN COTTON OUTPUT REACHES 7.7 MLN BALES Pakistan cotton production during the\ncurrent crop season (Sept/March) reached 7.7 mln bales of 375\npounds each, up 500,000 from last season, Shafi Niaz, Chairman\nof the Agricultural Prices Commission, said.\n    Official sources said Pakistan was likely to use 3.4 mln\nbales of cotton during the current financial year ending June\nafter 2.96 mln in 1985/86 and 2.70 mln in 1984/85.\n    They said consumption would increase due to a rise in [...]
+'FINANCIAL SANTA BARBARA &lt;FSB> TO MAKE PURCHASE Financial Corp of Santa\nBarbara said it has signed a definitive agreement to purchase\nStanwell Financial, the lending operations unit of mortgage\nbanking company &lt;Stanwell Mortgage>, for undisclosed terms.\n Reuter\n&#3;',0
+'ALCAN TO CLOSE WEST GERMAN ALUMINIUM SMELTER &lt;Alcan Aluminiumwerke\nGmbH>, a subsidiary of Alcan Aluminium Ltd &lt;AL.N> of Canada,\nsaid it plans to close its aluminium smelter in Ludwigshafen at\nthe end of June.\n    A spokesman said Alcan was closing the smelter, with annual\ncapacity of 44,000 tonnes and 320 employees, because of high\nelectricity costs and the low world market price of aluminium.\n    Alkan had said earlier this year it would close half the\nplant\'s capacity b [...]
+'BBC AG BROWN BOVERI UND CIE &lt;BBCZ.Z> 1986 YEAR Parent Company net profit 12.8 mln Swiss francs vs 7.5 mln.\n    Orders received 2.21 billion francs vs 2.61 billion.\n    Sales 2.25 billion francs vs 2.49 billion.\n    Group sales 13.83 billion francs vs 13.88 billion.\n    Group orders 11.03 billion francs vs 13.00 billion.\n REUTE\n&#3;',0
+'MARRIOTT &lt;MHS> TO SELL HOTEL &lt;Four Seasons Hotels> said it and &lt;VMS\nRealty Partners> of Chicago have agreed to purchase the Santa\nBarbara Biltmore Hotel from Marriott Corp for an undisclosed\namount.\n    It said the venture will rename the hotel the Four Seasons\nBiltmore at Santa Barbara and invest over 13 mln dlrs in\nimprovements on the 228-room property.\n Reuter\n&#3;',0
+'BROWN BOVERI OMITS DIVIDEND, PLANS WARRANT BOND BBC AG Brown Boveri und Cie\n&lt;BBCZ.Z> said it will omit dividend in 1986 for the second\nconsecutive year.\n    It said it planned to invite shareholders and non-voting\nstockholders to subscribe to a warrant bond issue of around 150\nmln Swiss francs to be made after the June 2 annual meeting.\n    The value of the stock subscription rights should\ncorrespond roughly to the dividend of 30 francs per share paid\nin 1984. The company als [...]
+'VIACOM SAID IT HAS NEW NATIONAL AMUSEMENTS, MCV HOLDINGS BIDS\n ',0
+'LAROCHE STARTS BID FOR NECO &lt;NPT> SHARES Investor David F. La Roche of North\nKingstown, R.I., said he is offering to purchase 170,000 common\nshares of NECO Enterprises Inc at 26 dlrs each.\n    He said the successful completion of the offer, plus shares\nhe already owns, would give him 50.5 pct of NECO\'s 962,016\ncommon shares.\n    La Roche said he may buy more, and possible all NECO\nshares. He said the offer and withdrawal rights will expire at\n1630 EST/2130 gmt, March 30, 198 [...]
+'&lt;SDC SYDNEY DEVELOPMENT CORP> NINE MTHS LOSS Period ended December 31, 1986\n    Oper shr loss 1.08 dlrs vs loss 84 cts\n    Oper loss 7,700,000 vs loss 1,700,000\n    Revs 11,800,000 vs 9,800,000\n    Note: Current shr and net exclude extraordinary gain of\n300,000 dlrs or five cts shr, versus extraordinary gain of\n200,000 dlrs or four cts shr\n Reuter\n&#3;',0
+'SENIOR ENGINEERING MAKES 12.5 MLN DLR US PURCHASE &lt;Senior Engineering Group Plc> said it\nreached agreement with &lt;Cronus Industries Inc> to acquire the\nwhole share capital of &lt;South Western Engineering Co> for 12.5\nmln dlrs cash. This sum is being financed by a term loan.\n    South Western is one of the U.S.\'s leading manufacturers of\nheat transfer equipment, with a turnover of 54.86 mln dlrs and\npre-tax profits of 1.72 mln in 1986.\n    Completion of the deal is conditio [...]
+'CHEUNG KONG CHAIRMAN SEES STRONG RESULTS IN 1987 Cheung Kong (Holdings) Ltd &lt;CKGH.HK>\nis expecting strong results this year after reporting better\nthan expected profits in 1986, chairman Li Ka-shing said.\n    He did not give a specific earnings projection but he told\nreporters the firm will pay total dividends of not less than 19\ncents a share this year after a one-for-four bonus issue and a\nfour-for-one stock split.\n    The company earlier declared total dividends equal to 15 [...]
+'WHITTAKER CORP 1ST QTR OPER SHR 17 CTS VS 25 CTS\n ',0
+'VIACOM &lt;VIA> RECEIVES TWO REVISED OFFERS Viacom International Inc said it\nreceived revised merger offers from &lt;National Amusements Inc>\nand &lt;MCV Holdings Inc>.\n    The company said the special committee plans to meet later\ntoday to review both offers.\n    Viacom said National Amusements\' Arsenal Holdings Inc\nraised the value of its offer for the Viacom shares not held by\nNational Amusements in three areas. National Amusements holds\n19.6 pct of Viacom\'s stock.\n    The [...]
+'FRENCH ESTIMATE 86/87 WHEAT DELIVERIES UNCHANGED The French Cereals Intervention Board,\nONIC, left its estimate of French 1986/87 (July/June) soft\nwheat deliveries unchanged from its last forecast at 21.98 mln\ntonnes.\n    This compared with deliveries of 24.38 mln tonnes in\n1985/86 (August/July).\n    Estimated 1986/87 maize deliveries were also left unchanged\nfrom ONIC\'s previous forecast at the beginning of February at\n9.91 mln tonnes against 10.77 mln the previous season.\n   [...]
+'WASTE MANAGEMENT CORP VOTES TWO FOR ONE STOCK SPLIT AND BOOSTS QTLY DIVIDEND TO 18 CTS\n ',0
+'PITTSTON AGREES TO ACQUIRE WTC INTERNATIONAL IN EXCHANGE OF STOCK\n ',0
+'TUESDAY MORNING INC &lt;TUES> 4TH QTR NET Shr 1.19 dlrs vs 1.46 dlrs\n    Net 3,150,185 vs 2,665,284\n    Revs 27.9 mln vs 24.1 mln\n    Avg shrs 2,653,646 vs 1,826,858\n    Year\n    Shr 1.45 dlrs vs 1.37 dlrs\n    Net 3,611,802 vs 2,502,443\n    Sales 62.2 mln vs 52.8 mln\n    Avg shrs 2,489,978 vs 1,826,858\n Reuter\n&#3;',0
+'DIAGNOSTIC/RETRIEVAL SYSTEMS INC MAKES 53 MLN DLR BID FOR ROSPATCH CORP\n ',0
+'MILLER TABAK HAS 91.8 PCT OF PENN TRAFFIC &lt;PNF> &lt;Miller Tabak Hirsch and Co> said it\nhas received an accepted 3,424,729 common shares of Penn\nTraffic Co in response to its 31.60 dlr per share tender offer\nthat expired Friday, and together with the 380,728 shares it\nalready owned, it now has about 91.8 pct of Penn Traffic.\n    The company said Penn Traffic is expected to hold a special\nshareholders\' meeting later this month to approve a merger into\nMiller Tabak at the tende [...]
+'COFFEE QUOTA TALKS CONTINUE BUT NO AGREEMENT YET Coffee quota talks at the International\nCoffee Organization council meeting here continued this\nafternoon, but producers and consumers still had not reached\ncommon ground on the key issue of how to estimate export\nquotas, delegates said.\n    The 54 member contact group was examining a Colombian\nproposal to resume quotas April 1 under the ad hoc system used\nhistorically, with a pledge to meet again in September to\ndiscuss how quota [...]
+'WASTE MANAGEMENT &lt;WMX> VOTES SPLIT, UPS PAYOUT Waste Management Corp said its\nboard voted a two-for-one stock split payable April 21, record\nMarch 30.\n    In other action, Waste Management directors approved an\nincrease in the quarterly dividend to 18 cts from 14 cts,\npayable April three, record March 18.\n Reuter\n&#3;',0
+'POREX TECHNOLOGIES &lt;PORX> SETS INITIAL DIVIDEND Porex Technologies Corp said its\nboard declared an initial annual dividend of 10 cts per share,\nits first payout, payable March 26 to holders of record March\n12.\n Reuter\n&#3;',0
+'DAVIS WATER &lt;DWWS> DECLARES STOCK DIVIDEND Davis Water and Waste\nIndustries Inc said its board declared a 33-1/3 pct stock\ndividend, payable March 23 to holders of record March 12.\n Reuter\n&#3;',0
+'MEDCO CONTAINMENT &lt;MCCS> SETS INITIAL PAYOUT Medco Containment Services\nInc said its board declared an initial annual dividend of 10\ncts per share, its first payout, payable March 19 to holders of\nrecord March 12.\n Reuter\n&#3;',0
+'PITTSTON &lt;PCO> AGREES TO ACQUIRE WTC &lt;WAF> Pittston Co said it has\ntentatively agreed to acquire WTC International N.V. in a\ntax-free exchange of stock.\n    Pittston said it agreed to exchange 0.523 common share for\neach of the about 8,612,000 WTC common shares outstanding.\n    Pittston said WTC\'s three principal shareholders, who own\n62 pct of its stock, are parties to this agreement. They have\ngranted Pittston the right of first refusal to their shares.\n    WTC has gran [...]
+'SDC SYDNEY COST REVIEW MAY ELIMINATE PRODUCTS &lt;SDC Sydney\nDevelopment Corp>, earlier reporting an increased nine month\noperating loss, said a cost control review now underway may\nresult in cost reduction and elimination of unprofitable and\nnon-strategic products and services.\n    The company\'s operating loss for the nine months ended\nDecember 31, 1986 increased to 7.7 mln dlrs from a loss of 1.7\nmln dlrs in the prior year, it said earlier.\n    Revenues increased by 20 pct to [...]
+'&lt;MULTI-STEP PRODUCTS INC> SIX MTHS DEC 31 LOSS Shr loss 11 cts\n    Loss 739,146\n    Revs 11,754,251\n    Note: initial public listing December, 1986\n Reuter\n&#3;',0
+'U.K. MONEY MARKET OFFERED BORROWING FACILTIES The Bank of England said it had offered\nborrowing facilities to those discount houses wishing to use\nthem at 1430 GMT.\n    The Bank also said it provided the money market 456 mln stg\nassistance in the afternoon session bringing its total help so\nfar today to 493 mln stg. This compares with its forecast of a\nshortage in the system today of around 700 mln stg.\n    The central bank purchased bank bills outright comprising\n41 mln stg in  [...]
+'SWISS SIGHT DEPOSITS RISE 3.10 BILLION FRANCS Sight deposits by commercial banks at the\nSwiss National Bank rose by 3.10 billion Swiss francs to 10.53\nbillion in the last 10 days of February, the National Bank\nsaid.\n    Foreign exchange reserves fell 3.06 billion francs to 30.64\nbillion.\n    Sight deposits are an important measure of Swiss money\nmarket liquidity.\n    The decline in foreign exchange reserves reflected the\ndismantling of swap arrangements, the National Bank said. [...]
+' &#2;\nUSDA LIFTS CROSS-COMPLIANCE FOR 1987 CROP OATS\n    REPEAT FROM LATE FRIDAY\n    WASHINGTON, Feb 27 - The USDA said it is lifting the\nlimited cross-compliance requirement for 1987 crop oats.\n    Deputy Secretary Peter Myers said the action was being\ntaken to help alleviate the short supply of oats.\n    Under limited cross compliance, the plantings of other\nprogram crops on the farm may not exceed the crop acreage bases\nof those crops.\n    The lifting of the cross-complianc [...]
+'CONSOLIDATED TVX SAYS IT WILL ISSUE SHARES TO BUY STAKES IN THREE BRAZIL MINING FIRMS\n ',0
+'WHITTAKER CORP &lt;WKR> 1ST QTR JAN 31 NET Oper shr 17 cts vs 25 cts\n    Qtly div 15 cts vs 15 cts prior\n    Oper net 1,522,000 vs 3,501,000\n    Sales 98.0 mln vs 86.3 mln\n    NOTE: Prior year net excludes loss from discontinued\noperations of 1,817,000 dlrs.\n    Company said common shares outstanding down significantly\nto 7,814,000, reflecting retirement of about 5,200,000 shares\nsince start of restructurining in August 1986.\n    Dividend pay April 30, record April 16.\n Reuter [...]
+'STOP AND SHOP COS INC &lt;SHP> 4TH QTR JAN 31 NET Oper shr 1.80 dlrs vs 1.46 dlrs\n    Oper net 25.0 mln vs 20.2 mln\n    Sales 1.09 billion vs 996.4 mln\n    Avg shrs 13.9 mln vs 13.8 mln\n    Year\n    Oper shr 3.20 dlrs vs 2.57 dlrs\n    Oper net 44.4 mln vs 35.4 mln\n    Sales 3.87 billion vs 3.43 billion\n    Avg shrs 13.9 mln vs 13.8 mln\n    NOTES: Operating net excludes losses of 12.1 mln dlrs, or\n87 cts a share, vs 321,000 dlrs, or two cts a share, in quarter\nand 6.0 mln dlrs [...]
+'JIM WALTER CORP &lt;JWC> REGULAR DIVIDEND Qtly div 35 cts vs 35 cts in prior qtr\n    Payable April one\n    Record March 14\n Reuter\n&#3;',0
+'DIAGNOSTIC &lt;DRS> MAKES A BID FOR ROSPATCH &lt;RPCH> Diagnostic Retrieval Systems Inc\nsaid it has made an offer to acquire, through a wholly owned\nunit, all outstanding shares of Rospatch Corp\'s common stock\nfor 22 dlrs a share cash, or about 53 mln dlrs.\n    DRS, a warfare systems producer, said it would make the\ntransaction through a cash tender offer for all, but not less\nthan 51 pct, of Rospatch\'s outstanding common stock followed by\na merger with Rospatch, a labels, high [...]
+'RECORD N.Z. FUTURES VOLUMES TRADED IN FEBRUARY The volume of contracts traded on the\nNew Zealand Futures Exchange (NZFE) reached a record 25,559\ncontracts in February, the International Commodities Clearing\nHouse (ICCH) said.\n    The previous high was 22,583 contracts in December 1986.\n    The ICCH said the value of the contracts traded in February\nwas 2.90 billion N.Z. Dlrs.\n    The seven contracts currently traded on the NZFE are:\nfive-year government bonds, the share price in [...]
+'WHITTAKER &lt;WKR> TO HAVE GAINS FROM SALES Whittaker Corp said it will have a\ngain on the sale of discontinued businesses after any operating\nlosses from the businesses up until the dates of disposition,\nbut it will defer reporting the gain until its restructuring\nprogram hsa been substantially completed.\n    The company said in the first quarter ended January 31,m it\ncompleted the divestiture of its health maintenance\norganization operations to Travelers Corp &lt;TIC> , sold it [...]
+'THE JAPAN FUND &lt;JPN> GETS BUYOUT OFFER The Japan Fund Inc said it has received\nan unsolicited offer from &lt;Sterling Grace Capital Management\nLP>, acting together with certain other persons and entities,\nto purchase all the assets of the fund at five pct below its\naggregate net asset value.\n    The Japan Find said tne deal is subject to obtaining\nsatisfactory financing and a due diligence review.\n    It added that the proposal has been referred to its Board\nof Directors for  [...]
+'&lt;SAMSUNG CO> CALENDAR 1986 Div 50 won vs 50 won\n    Net profit 6.91 billion won vs 6.10 billion\n    Sales 4,275.4 billion vs 3,801,7 billion\n    Note - Company has set 1987 sales target of 4,800 billion\nwon.\n Reuter\n&#3;',0
+'&lt;DAEWOO CORP> CALENDAR 1986 Div 50 won vs 50 won\n    Net profit 35.4 billion won vs 34.2 billion\n    Sales 4,214.9 billion won vs 3,779.2 bilion\n    Note - company has set 1987 sales target of 5,200 billion.\n REUTER\n&#3;',0
+'CORNING TO OFFER 0.5165 SHARE FOR EACH HAZLETON SHARE UNDER EARLIER AGREEMENT\n ',0
+'BANK OF NEW YORK &lt;BK> TO HAVE GAIN ON UNIT SALE Bank of New York Co said it and the\nmanagement of RMJ Securities Corp have agreed to sell 80 pct of\ntheir interests in RMJ Holding Corp to &lt;British and\nCommonwealth Holdings PLC> and Bank of New York expects to\nrealize a substantial gain on the transaction.\n    RMJ Holding is the holding company for RMJ Securities, a\nlarge broker of U.S. government securities and agency\nobligations  Bank of New York owns a majority interest in [...]
+'CORNING &lt;GLW>, HAZLETON &lt;HLC> SET EXCAHNGE RATIO Corning Glass Works said the\nexchange ratio for its previously announced acquisition of\nHazleton Laboratories Corp has been established at 0.5165\nCorning common share for each Hazleton common share.\n    Corning said the prospectus regarding the merger is\nexpected to be mailed tomorrow to all Hazleton holders of\nrecord February 18. Hazleton shareholders will vote on the\nproposed merger at a special meeting on March 31.\n Reute [...]
+'HEALTH EXPERTS URGE ERADICATION OF RINDERPEST World animal health experts called for a\ncampaign to eradicate the lethal cattle disease Rinderpest in\nBangladesh, Bhutan, India, Nepal and Pakistan, a statement from\na Food and Agriculture Organization (FAO) meeting here said.\n    Some 230 mln dlrs is needed over two years to vaccinate the\nentire susceptible cattle population in Bangladesh and Pakistan\nand high-risk areas of the other three countries. In India some\n240 mln cattle are [...]
+'TURKISH RETAIL PRICES RISE 2.7 PCT IN FEBRUARY Turkish retail prices rose 2.7 pct in\nFebruary after 2.9 pct in January and 1.7 pct in February 1986,\nthe State Statistics Institute said.\n    Prices in the year to February rose 31.6 pct, compared with\n30.3 pct in the year to January and 38.8 pct in the 12 months\nto February 1986.\n    The index (base 1978/79), covering 14 towns and five\nregions, was 1,886.8 in February, 1,837.2 in January and\n1,434.0 in February 1986.\n REUTER\n&#3;',0
+'BALLY &lt;BLY> COMPLETES PURCHASE OF GOLDEN NUGGET Bally Manufacturing Corp said it\ncompleted the acquisition of the Golden Nugget Casino Hotel in\nAtlantic City, New Jersey from Golden Nugget Inc.\n    Bally also acquired from Golden Nugget various parcels of\nreal estate in Atlantic City, it noted.\n    The transaction included 140 mln dlrs in cash and stock and\nthe assumption of a 299 mln dlrs mortgage.\n Reuter\n&#3;',0
+'CONSOLIDATED TVX TO BUY BRAZIL GOLD MINE STAKES &lt;Consolidated TVX Mining Corp> said it\nagreed to issue 7.8 mln treasury shares to acquire interests in\nthree gold mining companies in Brazil and an option to increase\nthe company\'s interest in a platinum property.\n    The company said the transactions will bring immediate\nproduction and earnings to Consolidated TVX, enhance its\nprecious metal potential and is expected to improve cash flow\nand earnings on a per share basis. The c [...]
+'WARWICK INSURANCE MANAGERS INC &lt;WIMI> 4TH QTR Oper shr 17 cts vs 19 cts\n    Oper net 636,000 vs 358,000\n    Revs 10.6 mln vs 7,024,000\n    Avg shrs 3,808,000 vs 1,924,000\n    Year\n    Oper shr 73 cts vs 65 cts\n    Oper net 2,467,000 vs 1,199,000\n    Revs 31.5 mln vs 22.9 mln\n    Avg shrs 3,372,000 vs 1,785,000\n    NOTE: Net excludes investment gains 20,000 dlrs vs 86,000\ndlrs in quarter and 586,000 dlrs vs 195,000 dlrs in year.\n    1985 year net excludes 304,000 dlr tax cr [...]
+'CANADA INDUSTRIAL PRICES UP 0.2 PCT IN MONTH Canada\'s industrial product price index\nrose 0.2 pct in January after falling 0.2 pct in each of the\ntwo previous months, Statistics Canada said.\n    The rise was led by price gains for papers, pharmaceuticals\nand petroleum and coal products. Price declines were recorded\nfor meat products, lumber and motor vehicles.\n    On a year over year basis, the federal agency said the\nindex fell 0.9 pct in January, the largest yearly decline on\ [...]
+'GELCO CORP 2ND QTR SHR 67 CTS VS 23 CTS\n ',0
+'STROBER ORGANIZATION INC &lt;STRB> 4TH QTR NET Shr 22 cts vs 17 cts\n    Net 1,232,000 vs 834,000\n    Sales 24.1 mln vs 20.9 mln\n    Avg shrs 5,609,000 vs five mln\n    Year\n    Shr 97 cts vs 69 cts\n    Net 4,985,000 vs 3,426,000\n    Sales 92.4 mln vs 77.9 mln\n    Avg shrs 5,153,000 vs five mln\n Reuter\n&#3;',0
+'SHELL CANADA CUTS CRUDE OIL PRICES BY UP TO 1.27 CANADIAN DLRS/BBL EFFECTIVE MARCH ONE\n ',0
+'BRENCO INC &lt;BREN> DECLARES QTLY DIVIDEND Qtly div three cts vs three cts prior\n    Pay April six\n    Record March 20\n Reuter\n&#3;',0
+'MASSACHUSETTS INVESTORS GROWTH STOCK FUND PAYOUT Qtly div from income 5.1 cts vs 3.035 dlrs in prior qtr\nincluding capital gains of 2.978 dlrs\n    Payable March 27\n    Record February 27\n Reuter\n&#3;',0
+'&lt;PREMDOR INC> 4TH QTR NET Shr 35 cts vs 25 cts\n    Net 1,590,000 vs 1,140,000\n    Revs 32.2 mln vs 23.0 mln\n    YEAR\n    Shr 1.16 dlrs vs 68 cts\n    Net 5,300,000 vs 3,100,000\n    Revs 110.0 mln vs 85.4 mln\n Reuter\n&#3;',0
+'AMERICAN NURSERY &lt;ANSY> BUYS FLORIDA NURSERY American Nursery Products Inc\nsaid it purchased Miami-based Heinl\'s Nursery Inc, for\nundisclosed terms.\n    Heinl\'s Nursery has sales of about 4.5 mln dlrs and owns\n100 acres, of which 75 are in shade houses and about 58,300\nsquare feet cover greenhouses, shipping and office facilities.\n Reuter\n&#3;',0
+'MFS MANAGED SECTORS TRUST DIVIDEND INCREASED Semi-annual div from income of 7.3 cts vs 1.0 cent in prior\nperiod\n    Payable March 27\n    Record February 27\n Reuter\n&#3;',0
+'MULTI-STEP TO SELL LADDER UNIT, CANCEL SHARES &lt;Multi-Step Products Inc>, earlier\nreporting an initial six month loss, said it agreed to sell\nwholly owned Multi-Step Manufacturing Inc for 100,000 dlrs\ncash, subject to shareholder and regulatory approval.\n    Multi-Step also said it will pay 900,000 dlrs to cancel\n711,192 of its own shares, which will be acquired from Michael\nPenhale and his benficiaries. Penhale will control and manage\nMulti-Step Manufacturing, following the tr [...]
+'ESSELTE BUSINESS &lt;ESB> UNIT BUYS ANTONSON UNIT Esselte Business Systems Inc\'s\nEsselte Meto division said it has acquired the Antonson America\nCo, a subsidiary of &lt;Antonson Machines AB>, of Sweden.\n    Esselte said the Antonson unit, based in LaPorte, Indiana,\nmanufactures scales and label printers. The company said the\npurchase is part of a plan to increase the range of retail\nelectronic scales being offered by Esselte in the U.S.\n    It said the acquisition will enble Ess [...]
+'FED EXPECTED TO ADD TEMPORARY RESERVES The Federal Reserve is expected to\nenter the U.S. Government securities market to add temporary\nreserves, economists said.\n    They expect it to supply the reserves indirectly by\narranging a fairly large round, two billion dlrs or more, of\ncustomer repurchase agreements. The Fed may add the reserves\ndirectly instead via System repurchases.\n    Federal funds, which averaged 6.02 pct on Friday, opened at\n6-1/8 pct and traded between there and [...]
+'FOUR SEASONS BUYING MARRIOTT &lt;MHS> HOTEL &lt;Four Seasons Hotels Inc> and VMS Realty\nPartners said they agreed to acquire the Santa Barbara Biltmore\nHotel in California from Marriott Corp, for undisclosed terms.\n    Closing was expected by March 31, they added.\n    The companies said they would jointly own the hotel and\nrename it the Four Seasons Biltmore at Santa Barbara. They said\nthey would spend more than 13 mln U.S. dlrs \"to enhance the\nBiltmore\'s position as one of the [...]
+'STONE &lt;STO> SPLITS STOCK, RAISES PAYOUT Stone Container Corp said it is\nsplitting its common stock 2-for-1 and increasing its dividend\n33-1/3 pct.\n    The dividend of 20 cts a share, an increase of five cts\nover the prior 15 cts a share on pre-split shares, is payable\nJune 12 to holders of record May 22.\n    The stock split also is payable June 12 to holders of\nrecord May 22.\n Reuter\n&#3;',0
+'S-K-I LTD &lt;SKII> 2ND QTR JAN 25 NET Shr 81 cts vs 57 cts\n    Net 3,660,273 vs 2,437,914\n    Rev 28.5 mln vs 23.1 mln\n    Six months\n    Shr 29 cts vs 12 cts\n    Net 1,325,755 vs 483,559\n    Rev 31.7 mln vs 26.4 mln\n Reuter\n&#3;',0
+'KAPOK CORP &lt;KPK> YEAR SEPT 30 LOSS Shr loss 20 cts vs profit 96 cts\n    Net loss 499,000 vs profit 2,369,000\n    Revs 11.5 mln vs 10.3 mln\n    NOTE: Prior year net includes gain on sale of property of\n4,557,000 dlrs.\n Reuter\n&#3;',0
+'CARGILL U.K. STRIKE TALKS POSTPONED Talks due today between management and\nunions to try to end the strike at Cargill U.K. Ltd\'s Seaforth\noilseed crushing plant have been rescheduled for Thursday, a\ncompany spokesman said.\n    Oilseed processing at the plant has been halted since\nDecember 19 when mill workers walked out in protest at new\ncontract manning levels.\n Reuter\n&#3;',0
+'AMAX &lt;AMX> IN GOLD, SILVER FIND AMAX Incx said it has identified\nadditional gold and silver ore reserves at its AMAX Sleeper\nMine near Winnemucca, Nev..\n    It said as a result of recent drilling, reserves at thhe\nmine are now estimated at 2,470,000 short tons of ore grading\n0.24 ounce of gold and 0.50 ounce of silver per ton that is\ntreatable by conventional milling techniques.\n    AMAX said additional reserves amenable to heap leaching are\nestimated at 38.3 mln tons averagi [...]
+'STUDY GROUP URGES INCREASED U.S. OIL RESERVES A study group said the United States\nshould increase its strategic petroleum reserve to one mln\nbarrels as one way to deal with the present and future impact\nof low oil prices on the domestic oil industry.\n    U.S. policy now is to raise the strategic reserve to 750\nmln barrels, from its present 500 mln, to help protect the\neconomy from an overseas embargo or a sharp price rise.\n    The Aspen Institute for Humanistic Studies, a privat [...]
+'K-TRON INTERNATIONAL INC &lt;KTII> 4TH QTR NET Oper shr profit 36 cts vs loss 1.48 dlrs\n    Oper net profit 1,353,000 vs loss 5,551,000\n    Revs 11.3 mln vs 8,142,000\n    Year\n    Oper shr profit 31 cts vs loss 1.58 dlrs\n    Oper net profit 1,165,000 vs loss 5,919,000\n    Revs 38.0 mln vs 31.6 mln\n    NOTE: Net includes pretax unusual gain 64,000 dlrs vs loss\n4,744,000 dlrs in quarter and losses 3,0077,000 dlrs vs\n4,744,000 dlrs in year.  1986 items include settlement of\npaten [...]
+'PRESIDENTIAL REALTY CORP &lt;PDO> ANNUAL NET Shr 1.65 dlrs vs 1.50 dlrs\n    Net 5,370,000 vs 4,901,000\n    Rev 8.4 mln vs 7.8 mln\n    NOTE: 1986 net gain from property investments 717,000 dlrs,\nor 22 cts per share, vs 721,000 dlrs, or 22 cts per share.\n Reuter\n&#3;',0
+'REDSTONE DETAILS SWEETENED VIACOM &lt;VIA> OFFER Investor Sumner Redstone, who leads\none of the two groups vying for control of Viacom International\nInc, offered to sweeten his bid for the company by 1.50 dlrs a\nshare cash and 1.50 dlrs in securities.\n    In a filing with the Securities and Exchange Commission,\nRedstone, who controls Dedham, Mass.,-based National Amusements\nInc, a theater chain operator, offered to raise the cash\nportion of its Viacom offer to 42 dlrs a share fro [...]
+'MONTEDISON CONCLUDES TALKS WITH ANTIBIOTICOS Montedison Spa &lt;MONI.MI> said it has\nconcluded its negotiations with Spanish pharmaceuticals company\n&lt;Antibioticos SA>.\n    A company spokesman told Reuters \"We have concluded the\ntalks and we are now awaiting authorization from Spanish\nauthorities.\" He declined to comment further.\n    Earlier today the Italian company postponed a scheduled\npress conference on its talks with Antibioticos. An Italian\npress report today said Mon [...]
+'UTILICORP &lt;UCU> COMPLETES ACQUISITION UtiliCorp United Inc said it\ncompleted the acquisition of West Virginia Power from Dominion\nResources for about 21 mln dlrs.\n    The sale was approved by the West Virginia Public Service\nCommission in January and became effective March one. West\nVirginia\'s management will continue to be responsible for\noperating the utility, it said.\n Reuter\n&#3;',0
+'TRADERS DETAIL FRENCH CEREAL EXPORT REQUESTS French operators last Friday requested\nlicences to export 10,500 tonnes of free market maize, 11,950\ntonnes of free market barley and 13,000 of soft wheat flour to\nnon-EC countries, at prefixed daily (droit commun) rebates,\nFrench trade sources said.\n    The latest requests for the maize were for export to\nSwitzerland, Austria and Lichtenstein at a maximum daily rebate\nprefixed last Friday at 141 Ecus a tonne against a previous 20\nEcu [...]
+'STUDY GROUP URGES INCREASED U.S. OIL RESERVES A study group said the United States\nshould increase its strategic petroleum reserve to one mln\nbarrels as one way to deal with the present and future impact\nof low oil prices on the domestic oil industry.\n    U.S. policy now is to raise the strategic reserve to 750\nmln barrels, from its present 500 mln, to help protect the\neconomy from an overseas embargo or a sharp price rise.\n    The Aspen Institute for Humanistic Studies, a privat [...]
+'CARBIDE &lt;UK> LOOKS TO ACQUISITIONS FOR GROWTH Union Carbide Corp is looking to\nacquisitions and joint ventures to aid its chemicals and\nplastics growth, according the H.W. Lichtenberger, president of\nChemicals and Plastics.\n    Describing this as a major departure in the company\'s\napproach to commercial development, he told the annual new\nbusiness forum of the Commercial Development Association \"We\nare looking to acquisitions and joint ventures when they look\nlike the faste [...]
+'CORRECTED - BANKAMERICA NEGOTIATING SALE OF UNITS Bank of America NT and SA\'s\n&lt;BAC.N> West German branch said it is negotiating the sale of\nBankhaus Centrale Credit AG, a small local West German bank it\nacquired in 1965, and of its West German Visa credit card\noperation.\n    Michael Seibel, Bank of America vice-president and regional\nmanager, said the negotiations were proceeding well. He\ndeclined to give further details.\n    Bank of America\'s West German branch lost some 3 [...]
+'&lt;FRANKLIN GOLD FUND> CUTS DIVIDEND Semi div 13 cts vs 18 cts prior\n    Pay March 13\n    Record March Two\n Reuter\n&#3;',0
+'&lt;FRANKLIN CALIFORNIA TAX-FREE INCOME FUND>PAYOUT Mthly div 4.5 cts vs 4.5 cts prior\n    Pay March 13\n    Record March Two\n Reuter\n&#3;',0
+'&lt;FRANKLIN AGE HIGH INCOME FUND> SETS PAYOUT Mthly div 3.6 cts vs 3.6 cts prior\n    Pay March 13\n    Record March Two\n Reuter\n&#3;',0
+'PETRO-CANADA CUT CRUDE PRICES BY 1.43 CANADIAN DLRS/BBL EFFECTIVE MARCH ONE\n ',0
+'&lt;FRANKLIN FEDERAL TAX-FREE INCOME FUND> PAYOUT Mthly div 7.7 cts vs 7.7 cts prior\n    Pay March 13\n    Record March Two\n Reuter\n&#3;',0
+'&lt;FRANKLIN NEW YORK TAX-FREE INCOME FUND> PAYOUT Mthly div 7.3 cts vs 7.3 cts prior\n    Pay March 13\n    Record March Two\n Reuter\n&#3;',0
+'&lt;FRANKLIN U.S. GOVERNMENT SECURITIES FUND>PAYOUT Mthly div six cts vs six cts prior\n    Pay March 13\n    Record March Two\n Reuter\n&#3;',0
+'CANADA RULING ON U.S. CORN INJURY DUE THIS WEEK The Canadian government is expected\nto announce later this week its final ruling whether U.S. corn\nexports to Canada have injured Ontario corn growers, U.S.\ngovernment and farm group representatives said.\n    The deadline for a final determination is March 7.\n    U.S. officials said they are encouraged by the outcome in a\nsimilar case covering European pasta imports. In that case,\nCanada decided pasta imports, which take about ten p [...]
+'FIRST MISSISSIPPI CORP &lt;FRM> SETS PAYOUT Qtly div six cts vs six cts prior\n    Pay April 28\n    Record March 31\n Reuter\n&#3;',0
+'ROTTERDAM PORT UNION AND EMPLOYERS TO MEET Dutch port and transport union, FNV,\nagreed to an employers\' request to reconvene abandoned peace\ntalks tonight to try to end strikes that have disrupted\nRotterdam\'s general cargo sector for the past six weeks, a\nunion spokesman said.\n    Talks broke down Thursday when the union walked out after\nemployers tabled their final offer to end the strikes which\nstarted January 19 in protest at planned redundancies of 800\nfrom the sector\'s 4 [...]
+'FED SETS 1.5 BILLION DLR CUSTOMER REPURCHASE, FED SAYS\n ',0
+'JIM WALTER CORP &lt;JWC> SETS PAYOUT Qtly div 35 cts vs 35 cts prior\n    Pay April One\n    Record March 14\n Reuter\n&#3;',0
+'FED ADDS RESERVES VIA CUSTOMER REPURCHASES The Federal Reserve entered the U.S.\nGovernment securities market to arrange 1.5 billion dlrs of\ncustomer repurchase agreements, a Fed spokesman said.\n    Dealers said Federal funds were trading at 6-3/16 pct when\nthe Fed began its temporary and indirect supply of reserves to\nthe banking system.\n Reuter\n&#3;',0
+'JAPAN\'S NTT FORECASTS PROFITS FALL IN 1987/88 &lt;Nippon Telegraph and Telephone Corp>\n(NTT) expects its profits to fall to 328 billion yen in the\nyear ending March 31, 1988 from a projected 348 billion this\nyear, the company said.\n    Total sales for the same period are expected to rise to\n5,506 billion yen from a projected 5,328 billion this year, NTT\nsaid in a business operations plan submitted to the Post and\nTelecommunications Ministry.\n    NTT said it plans to make capita [...]
+'EC COMMISSION GIVEN PLAN TO SAVE STEEL INDUSTRY European Community steelmakers\npresented the Executive Commission with a controversial plan\nfor the future of the industry which diplomats say it may be\nforced reluctantly to accept.\n    Under the plan steel output would remain subject to\nrestrictive quotas and imports would be firmly controlled for\nyears to come while steel firms undertook a massive\nslimming-down operation to adjust capacity to lower demand.\n    Industry Commissio [...]
+'DURO-TEST CORP &lt;DUR> 2ND QTR JAN 31 NET Shr 10 cts vs 14 cts\n    Net 531,896 vs 727,781\n    Revs 16.0 mln 16.8 mln\n    Six mths\n    Shr 30 cts vs 39 cts\n    Net 1,532,431 vs 2,000,732\n    Revs 32.7 mln vs 34.5 mln\n Reuter\n&#3;',0
+'&lt;FRANKLIN UTILITIES FUND> SETS PAYOUT Qtly div 14 cts vs 14 cts prior\n    Pay March 13\n    Record March Two\n Reuter\n&#3;',0
+'GELCO CORP &lt;GEL> 2ND QTR JAN 31 NET Shr 67 cts vs 23 cts\n    Net 5,220,000 vs 3,143,000\n    Revs 236.1 mln vs 256.2 mln\n    Avg shrs 7.8 mln vs 13.7 mln\n    Six Mths\n    Shr 85 cts vs 59 cs\n    Net 8,919,000 vs 8,158,000\n    Revs 483.8 mln vs 515.5 mln\n    Avg shrs 10.4 mln vs 13.7 mln\n    NOTE: Fiscal 1987 second quarter and first half earnings\ninclude a gain of 3.4 mln dlrs and exclude preferred dividend\nrequirements of five mln dlrs in the quarter and 5.6 mln dlrs\nin t [...]
+'INTERNCHANGE FINANCIAL SERVICES &lt;ISBJ> PAYOUT UP Qtly div 10 cts vs 8-1/3 cts prior\n    Pay April 21\n    Record March 20\n    NOTE: Interchange Financial Services Corp.\n Reuter\n&#3;',0
+'KAPOK CORP &lt;KPK> IN TECHNICAL DEFAULT Kapok Corp said it is in\ntechical default of its loans from Southeast Banking Corp &lt;STB>\nand Murray Steinfeld but is negotiating with the lenders.\n    It said neither has declared the loans due.\n    The company said it has agreed to sell the Peter Pan\nRestaurant in Urbana, Md., for 1,100,000 dlrs, or one mln dlrs\nafter the payment of expenses.\n Reuter\n&#3;',0
+'NEWPORT CORP &lt;NESP> 2ND QTR JAN 31 NET Shr 11 cts vs 13 cts\n    Net 1,037,690 vs 1,270,460\n    Sales 10.1 mln vs 9,215,836\n    Six Mths\n    Shr 25 cts vs 31 cts\n    Net 2,319,376 vs 2,930,507\n    Sales 21.2 mln vs 18.9 mln\n Reuter\n&#3;',0
+'KAPOK CORP &lt;KPK> 1ST QTR DEC 31 LOSS Shr loss 14 cts vs loss 21 cts\n    Net loss 353,000 vs loss 541,000\n    Revs 2,668,000 vs 2,525,000\n    Avg shrs 2,452,3000 vs 2,552,300\n Reuter\n&#3;',0
+'PREFERRED HEALTHCARE LTD &lt;PHCC> 4TH QTR NET Shr six cts vs four cts\n    Net 383,189 vs 241,857\n    Revs 1,506,756 vs 793,459\n    12 mths\n    Shr 24 cts vs 15 cts\n    Net 1,520,797 vs 929,017\n    Revs 5,268,486 vs 2,617,995\n Reuter\n&#3;',0
+'TRANZONIC COS &lt;TNZ> SETS QUARTERLY Qtly div 11 cts vs 11 cts prior\n    Pay April 17\n    Record March 20\n Reuter\n&#3;',0
+'CRONUS INDUSTRIES INC &lt;CRNS> 4TH QTR LOSS Oper Shr loss 40 cts vs loss 10 cts\n    Oper net loss 2,136,000 vs loss 467,000\n    Revs 21.9 mln vs 12.9 mln\n    12 mths\n    Oper shr loss 63 cts vs loss 30 cts\n    Oper net loss 3,499,000 vs loss 1,756,000\n    Revs 82.0 mln vs 54.5 mln\n    NOTE: Excludes income from discontinued operations of\n1,478,000 vs 952,000 for qtr, and 31.2 mln vs 6,500,000 for\nyear.\n    Excludes extraordinary charge of 2,503,000 for current qtr,\nand 4,744 [...]
+'MERCURY ENTERTAINMENT CORP &lt;MCRY> YEAR NOV 30 Shr loss four cts vs loss one ct\n    Net loss 413,021 vs loss 163,932\n    Revs 600,971 vs 665,800\n Reuter\n&#3;',0
+'BENGUET CORP &lt;BE> CALENDAR 1986 Net income 154.7 mln pesos vs 127.5 mln\n    Operating revenues 4.42 billion vs 3.3 billion\n    Operating profit 621.2 mln vs 203.4 mln\n    Earnings per share 4.80 vs 3.95\n    NOTE: Company statement said gold operations contributed 74\npct of consolidated earnings.\n Reuter\n&#3;',0
+'UNOCAL &lt;UCL> UNIT CUTS CRUDE OIL POSTED PRICES Unocal Corp\'s Union Oil Co said it\nlowered its posted prices for crude oil one to 1.50 dlrs a\nbarrel in the eastern region of the U.S., effective Feb 26.\n    Union said a 1.50 dlrs cut brings its posted price for the\nU.S. benchmark grade, West Texas Intermediate, to 16 dlrs.\nLouisiana Sweet also was lowered 1.50 dlrs to 16.35 dlrs, the\ncompany said.\n    No changes were made in Union\'s posted prices for West\nCoast grades of crud [...]
+'PANHANDLE\'S &lt;PEL> TRUNKLINE REDUCES GAS RATES Panhandle Eastern Corp\'s Trunkline Gas\nCo pipeline subsidiary said it is reducing the commodity\ncomponent of its wholesale natural gas rate four pct, effective\nimmediately.\n    In a filing with the Federal Energy Regulatory Commission,\nTrunkline said, it is reducing its commodity rate -- the\nportion of the total rate based on the price of gas -- to 2.58\ndlrs per mln Btu from 2.69 dlrs per mln Btu.\n    The company said the lower  [...]
+'INVESTOR GROUP HAS TALKS WITH PESCH ON AMI &lt;AMI> WEDGE Group Inc, a Houston investment\nfirm with a 5.5 pct stake in American Medical International\nInc, said it has had talks with Pesch and Co, which is seeking\ncontrol of the company.\n    In a filing with the Securities and Exchange Commission,\nWEDGE, which is owned by Issam Fares, a Lebanese citizen living\nin Switzerland, also said it discussed the possibility of\njoining with others in its own bid to seek control of AMI.\n     [...]
+'I.M.S. INTERNATIONAL INC &lt;IMSI> SETS QUARTERLY Qtly div four cts vs four cts prior\n    Pay March 27\n    Record March 13\n Reuter\n&#3;',0
+'BANNER &lt;BNR> COMPLETES TENDER FOR REXNORD &lt;REX> Banner Industries Inc said 19.8 mln of\nthe outstanding 20 mln shares in Rexnord Inc were tendered\npursuant to its 26.25 dlr a share offer that closed at midnight\nEST Feb 27.\n    Together with the five mln Rexnard shares it already owns,\nthe company said it now holds a 97 pct stake in the company.\n    It said the completion of the deal is subject to approval\nby Rexnard holders and to other closing conditions. It expects\nthe de [...]
+'MUTUAL OF OMAHA INTEREST SHARES &lt;MUO> QTLY DIV Qtly div 36 cts vs 36 cts prior\n    Pay April one\n    Record March 13\n Reuter\n&#3;',0
+'CORRECTED - BANKAMERICA NEGOTIATING UNITS SALE Bank of America NT and SA\'s &lt;BAC.N>\nWest German branch said it is negotiating the sale of Bankhaus\nCentrale Credit AG, a small local West German bank it acquired\nin 1965, and of its West German Visa credit card operation.\n    Michael Seibel, Bank of America vice-president and regional\nmanager, said the negotiations were proceeding well. He\ndeclined to give further details.\n    Bank of America\'s West German branch lost some 32 ml [...]
+'OSR &lt;OSRC> TO MAKE ACQUISITION OSR Corp said it has agreed\nto acquire the properties and assets of Telcom International\nGroup for 10.5 mln common shares, which would give former\nTelcom owners an 84 pct interest in the combined company.\n    Telcom is an international film and television distributor.\n The assets being acquired consist mostly of distribution\nrights to films valued at over one mln dlrs, the company said.\n    OSR said as part of the acquisition agreement is is\nreq [...]
+'MERCURY ENTERTAINMENT &lt;MCRY> SEES BETTER RESULTS Mercury Entertainment Corp said it\nexpects improved results in 1987.\n    The company today reported a loss for the year ended\nNovember 30 of 413,021 dlrs on revenues of 600,971 dlrs,\ncompared with a loss of 163,932 dlrs on revenues of 665,800\ndlrs a year before.\n Reuter\n&#3;',0
+'CRONUS INDUSTRIES INC &lt;CRNS> SELLS UNIT Cronus Industries Inc said it agreed to\nsell its heat transfer equipment business, Southwestern\nEngineering Co, for a slight premium over book value, plus a\nrelease of Cronus from liability on approximately three mln\ndlrs of subsidiary indebtedness.\n    The company said the sale to a subsidiary of Senior\nEngineering Group PLC, a British company, will take place this\nmonth.\n Reuter\n&#3;',0
+'UNISYS CORP &lt;UIS> SETS QUARTERLY Qtly div 65 cts vs 65 cts prior\n    Pay May Seven\n    Record April Seven\n Reuter\n&#3;',0
+'JACOBSON &lt;JCBS> VOTES SPLIT, INCREASES PAYOUT Jacobson Stores Inc said its\nboard voted a three-for-two stock split, payble March 30,\nrecord March 13.\n    In other action, Jacobson\'s directors approved an increase\nin its quarterly dividend to 11 cts on a post split basis\npayable April 14, record March 30.\n    The new dividend rate represents a 32 pct increase over the\n12-1/2 cts paid quarterly on a pre-split basis.\n Reuter\n&#3;',0
+'HARLEY-DAVIDSON INC &lt;HDI> 4TH QTR NET Oper shr 18 cts vs 51 cts\n    Oper net 1,048,000 vs 1,870,000\n    Revs 72.2 mln vs 73.5 mln\n    Avg shrs 5,910,000 vs 3,680,000\n    Year\n    Oper shr 82 cts vs 72 cts\n    Oper net 4,307,000 vs 2,637,000\n    Revs 295.3 mln vs 287.5 mln\n    Avg shrs 5,235,000 vs 3,680,000\n    NOTE: Results exclude one-time gains of 223,000 or four cts\nand 564,000 or 11 cts for 1986 qtr and year vs gains of\n6,359,000 or 1.73 dlrs and 7,318,000 or 1.99 dlr [...]
+'&lt;HOECHST AG> COMPLETES CELANESE &lt;CZ> ACQUISITION Hoechst AG of West Germany said\nit has completed the acquisition of Celanese Corp.\n    Hoechst acquired a majority of Celanese shares in a recent\ntender offer at 245 dlrs per common share.\n Reuter\n&#3;',0
+'AMERICUS TRUST &lt;HPU> EXTENDS DEADLINE Americus Trust for American Home\nProducts Shares said it extended its deadline for accepting\ntendered shares until November 26, an extension of nine months.\n    The trust, which will accept up to 7.5 mln shares of\nAmerican Home Products &lt;AHP>, said it has already received\ntenders for about four mln shares.\n    The trust is managed by Alex. Brown and Sons Inc &lt;ABSB> and\nwas formed November 26, 1986.\n Reuter\n&#3;',0
+'MORSE SHOE INC &lt;MRS> 4TH QTR NET Shr 59 cts vs 48 cts\n    Net 3,244,000 vs 2,584,000\n    Revs 169.3 mln vs 156.0 mln\n    12 mths\n    Shr 1.78 dlrs vs 1.32 dlrs\n    Net 9,733,000 vs 7,164,000\n    Revs 585.6 mln vs 541.0\n Reuter\n&#3;',0
+'ICO QUOTA TALKS CONTINUE, OUTCOME HARD TO GAUGE Talks at the extended special meeting of\nthe International Coffee Organization (ICO) on the\nreintroduction of export quotas continued, but chances of\nsuccess were still almost impossible to gauge, delegates said.\n    Producer delegates were meeting to examine a Colombian\nproposal to resume historical quotas from April 1 to September,\nwith a promise to define specific new criteria by which a new\nquota system would be calculated in Se [...]
+'VERSATILE TO BUILD POLAR ICE BREAKER Versatile Corp\'s shipbuilding subsidiary\nhas a letter of intent to build a 320 mln dlr polar icebreaker\nfor the Canadian coast guard, Transport Minister John Crosbie\nsaid.\n    In a Vancouver address, Crosbie said Versatile Pacific\nShipyards Inc was the low bidder to build the Arctic Class 8\nicebreaker, but the company must meet certain financial and\nengineering conditions before the contract is awarded.\n    The government also announced it w [...]
+'&lt;PANTRY INC> INB TALKS ON BEING ACQUIRED Privately-held Pantry Inc, which\noperates 477 convenience stores in five Southeastern states,\nsaid it has engaged Alex. Brown and Sons Inc &lt;ABSB> to explore\na possbile sale of the company.\n    It said it expects to start talks with prospective\nacquirers shortly. The company said it has been approached by a\nnumber of parties in recent months.\n Reuter\n&#3;',0
+'CONGRESS VIDEO GROUP INC &lt;CVGI> 3RD QTR NET Qtr ends Dec 31\n    Shr profit three cts vs loss three cts\n    Net profit 129,000 vs loss 85,000\n    Revs 4,001,000 vs 4,347,000\n    Avg shrs 3,994,347 vs 3,769,347\n    Nine mths\n    Shr loss 75 cts vs profit 39 cts\n    Net loss 2,900,000 vs profit 1,753,000\n    Revs 7,472,000 vs 15.3 mln\n    Avg shrs 3,845,438 vs 4,470,275\n    NOTE: net 1986 includes tax gain carryforward from\ndiscontinued operations of Master\'s Merchandise Gro [...]
+'&lt;RENOUF CORP> TO PROCEED WITH BENEQUITY &lt;BH> BID Renouf Corp of New Zealand said it\nhas decided to proceed with its offer for all outstanding units\nof Benequity Holdings at 31 dlrs per unit.\n    The company had been required to redice by March Two\nwhether to proceed with the offer or terminate it, based on its\nability to obtain financing and on its review of Benequity\noperations.  The offer is to expire March 13.\n Reuter\n&#3;',0
+'CUBA TELLS TRADERS SUGAR EXPORTS MAY BE DELAYED Cuba has told international sugar\noperators who have bought its sugar for shipment in March that\nthese contracts will take second place to Cuba\'s direct\nshipments to its export markets, dealers here said.\n    Some traders who have received telexes from Cuba said the\nlanguage of the message was not totally clear and some believed\nshipments would be honoured if the traders declare the Soviet\nUnion as the destination of their contract [...]
+'GOODRICH &lt;GR> TO PHASE OUT SOME BUSINESSES B.F. Goodrich Co said it will phase\nout the production of aircraft tires, missile and marine\nproducts and molded rubber products in Akron, Ohio, by the end\nof 1987, laying off about 790 salaried, production, maintenance\nand support services employees.\n    The company said layoffs will start within the next few\nweeks.\n    Goodrich said it will continue to make chemicals and\nadhesives in Akron, employing about 356.  Another 5000 salari [...]
+'THUNANDER CORP &lt;THDR> YEAR NET Shr 73 cts vs 58 cts\n    Net 1,101,000 vs 901,000\n    Sales 32.9 mln vs 29.1 mln\n    Note: Results include operations of BMD of New England Inc,\nacquired Sept. 1, 1986.\n Reuter\n&#3;',0
+'FINAL TRUST FOR THRIFT INSTITUTIONS PAYOUT SET &lt;Massachusetts Financial Services Co>\nsaid it has set the final income and capital gain distributions\nfor &lt;Trust for Thrift Institutions High Yield Series> of 1.069\ndlrs and 7.645 dlrs, respectively, payable today.\n Reuter\n&#3;',0
+'(RPT) U.S. SAYS TIN DISPOSALS WILL NOT AFFECT ACCORD U.S. tin disposals should have little\neffect on an agreement reached last weekend by tin producing\ncountries to limit group exports to 96,000 tonnes in the year\nstarted March 1, a government official said.\n    The agreement by the seven-member Association of Tin\nProducing Countries (ATPC) aimed to cut the world surplus and\nboost prices. Following the accord, ATPC Chairman Subroto\nappealed to the United States to restrict its ti [...]
+'ROSPATCH TO RESPOND TO DIAGNOSTIC BID\n ',0
+'FRANKLIN INSURED TAX-FREE SETS PAYOUT Mthly div 7.1 cts vs 7.1 cts prior\n    Pay March 31\n    Record March 16\n    NOTE: Franklin Insured Tax-Free Income Fund.\n Reuter\n&#3;',0
+'FRANKLIN MINNESOTA INSURED SETS PAYOUT Mthly div 6.6 cts vs 6.6 cts prior\n    Pay March 31\n    Record March 16\n    NOTE: Franklin Minneosta Insured Tax-Free Income Fund.\n Reuter\n&#3;',0
+'FRANKLIN MICHIGAN INSURED SETS PAYOUT Mthly div 6.9 cts vs 6.9 cts prior\n    Pay March 31\n    Record March 16\n    NOTE: Franklin Michigan Insured Tax-Free Income Fund.\n Reuter\n&#3;',0
+'FRANKLIN MASSACHUSETTS INSURED CUTS PAYOUT Mthly div 6.5 cts vs 6.8 cts prior\n    Pay March 31\n    Record March 16\n    NOTE: Franklin Massachusetts Insured Tax-Free Income Fund.\n Reuter\n&#3;',0
+'U.S. EXPORT INSPECTIONS, IN THOUS BUSHELS  SOYBEANS 20,349 WHEAT 14,070 CORN 21,989\n ',1
+'FRANKLIN CALIFORNIA TAX-FREE SETS PAYOUT Mthly div 6.5 cts vs 6.5 cts prior\n    Pay March 31\n    Record March 16\n    NOTE: Franklin California Insured Tax-Free Income Fund.\n Reuter\n&#3;',0
+'DIAGNOSTIC PRODUCTS &lt;DPCZ> SEES EARNINGS GROWTH Diagnostic Products Corp president and\nchief executive officer Sigi Ziering said he expects to\nmaintain the same compound average annal net income growth in\n1987 as the company has for the past five years.\n    \"We expect the same performance in net income over the next\nfive years as we have had in the past,\" Ziering said.\n    Over the past five years Ziering said the company has had\naverage compound net income growth of 32 pct  [...]
+'CURRENCIES COULD INFLUENCE BULLION AGAIN-MONTAGU Currency fluctuations may reassert their\ninfluence on the bullion market in the near future, bullion\nbankers Samuel Montagu and Co Ltd said in a market report.\n    But the firm said silver may lag behind gold in any\nreactions to movements on foreign exchanges.\n    \"OPEC\'s failure to address the recent decline in oil prices\nremains a worrying factor however, and on balance it appears\nthat the market should be approached cautiously [...]
+'DUNKIN\' DONUTS INC &lt;DUNK> 1ST QTR JAN 24 NET Shr 46 cts vs 42 cts\n    Net 3,418,000 vs 3,129,000\n    Revs 24.7 mln vs 26.2 mln\n Reuter\n&#3;',0
+'CCR VIDEO CORP &lt;CCCR> 1ST QTR NOV 30 NET Shr profit two cts vs loss 12 cts\n    Net profit 156,726 vs loss 776,000\n    Revs 1,157,883 vs 890,138\n Reuter\n&#3;',0
+'FRANKLIN PUERTO RICO TAX-FREE SETS PAYOUT Mthly div 7.1 cts vs 7.1 cts prior\n    Pay March 31\n    Record March 16\n    NOTE: Franklin Puerto Rico Tax-Free Income Fund.\n Reuter\n&#3;',0
+'FRANKLIN OHIO INSURED TAX-FREE SETS PAYOUT Mthly div 6.1 cts vs 6.1 cts prior\n    Pay March 31\n    Record March 16\n    NOTE: Franklin Ohio Insured Tax-Free Income Fund.\n Reuter\n&#3;',0
+'FRANKLIN HIGH-YIELD TAX-FREE SETS PAYOUT Mthly div 7.1 cts vs 7.1 cts prior\n    Pay March 31\n    Record March 16\n    NOTE: Franklin High-Yield Insured Tax-Free Income Fund.\n Reuter\n&#3;',0
+'CONVERGENT TECHNOLOGIES &lt;CVGT> TO BUY OAKLEAF Convergent Technologies Inc\nsaid it has reached an agreement in principle to buy Oakleaf\nCorp, which supplies finance, insurance and leasing computers\nto auto dealers.\n    The transaction will involve an exchange of Oakleaf stock\nfor cash and debt and is subject to a definitive agreement, the\ncompanys said. No other terms were disclosed.\n    Oakleaf had 1986 sales of about 26 mln dlrs.\n Reuter\n&#3;',0
+'NYMEX WILL EXPAND OFF-HOUR TRADING APRIL ONE The New York Mercantile Exchange set\nApril one for the debut of a new procedure in the energy\ncomplex that will increase the use of energy futures worldwide.\n     On April one, NYMEX will allow oil traders that do not\nhold a futures position to initiate, after the exchange closes,\na transaction that can subsequently be hedged in the futures\nmarket, according to an exchange spokeswoman.\n    \"This will change the way oil is transacted i [...]
+'ROSPATCH &lt;RPCH> TO RESPOND TO DIAGNOSTIC &lt;DRS> Rospatch Corp said it will\nhave a news release later in response to today\'s acquisition\nbid by Diagnostic Retrieval Systems Inc for 22 dlrs a share.\n    Rospatch earlier requested its stock be halted in over the\ncounter trading, last trade 24-1/8.\n    Diagnostic said its bid was for a total 53 mln dlrs through\na cash tender offer for all, but not less than 51 pct of\nRosptach outstanding common.\n    For its fourth-quarter ende [...]
+'GREEN TREE ACCEPTANCE INC &lt;GNT> SETS DIVIDEND Qtly dividend 12-1/2 cts vs 12-1/2 cts\n    Pay March 31\n    Record March 16\n Reuter\n&#3;',0
+'ARGENTINE OIL PRODUCTION DOWN IN JANUARY 1987 Argentine crude oil production was\ndown 10.8 pct in January 1987 to 12.32 mln barrels, from 13.81\nmln barrels in January 1986, Yacimientos Petroliferos Fiscales\nsaid.\n    January 1987 natural gas output totalled 1.15 billion cubic\nmetrers, 3.6 pct higher than 1.11 billion cubic metres produced\nin January 1986, Yacimientos Petroliferos Fiscales added.\n Reuter\n&#3;',0
+'ROSPATCH CORP REJECTS OFFER FROM DIAGNOSTIC RETRIEVAL SYSTEMS INC\n ',0
+'NORTH AMERICAN GROUP &lt;NAMG> BUYS GEORGIA FIRM North American Group Ltd\'s North\nAmerican Acquisition Corp said it has a definitive agreement to\nbuy 100 pct of Pioneer Business Group Inc of Atlanta.\n    Terms of the acquisition were not disclosed. Closing of the\nacquisition is scheduled for April.\n    North American Acquisition said the agreement is subject to\ndue diligence and a satisfactory review of Pioneer\'s operation.\nPioneer makes business forms.\n Reuter\n&#3;',0
+'TALKING POINT/VIACOM INTERNATIONAL &lt;VIA> A bidding war for Viacom International\nInc, one of the largest U.S. entertainment companies, pitted a\nmanagement group and other investors against National\nAmusements Inc, a closely held theater operator.\n    Both sides raised their bids over the weekend. A source\nclose to the management side insisted that timing was on his\nside. He said if outside directors approve the management\nproposal, a merger plan could be put to a vote of shareh [...]
+'UP-RIGHT INC &lt;UPRI> 4TH QTR OPER NET Oper shr five cts vs 29 cts\n    Oper net 151,000 vs 867,000\n    Revs 12.7 mln vs 14.1 mln\n    Year\n    Oper shr 87 cts vs 52 cts\n    Oper net 2,650,000 vs 1,565,000\n    Revs 54.7 mln vs 49.1 mln\n    Note: oper data does not include 4th qtr 1986 extraordinary\ncredit of 14,000 dlrs or 4th qtr 1985 extraordinary loss of\n139,000 dlrs, or five cts per shr. For year, does not include\nextraordinary credit of 92,000 dlrs, or three cts per shr, i [...]
+'TALKS SHOW NEW CANADIAN CONFIDENCE, GROUP SAYS Canada\'s decision to raise the issue\nof a free trade pact with the U.S. was a sign of what many see\nas a new spirit of Canadian self-confidence, a public policy\nstudy group said \n    \"It suggests the Canada of the immediate post-war period,\nwhen it was a major player in the process of building a postwar\nworld,\" the Washington-based Atlantic Council said.\n    U.S. and Canadian negotiators opened talks last summer\naimed at dismantl [...]
+'ALBERTSON\'S INC &lt;ABS> RAISES QTLY DIVIDEND Shr 24 cts vs 21 cts\n    Pay May 25\n    Record May eight\n Reuter\n&#3;',0
+'WAVEHILL INTERNATIONAL TO MAKE ACQUISITION &lt;Wavehill International Ventures Inc>\nsaid it has agreed to acquire Personal Computer Rental Corp of\nCoral Gables, Fla., in a transaction in which shareholders of\nPersonal Computer will receive shares respresenting about a 25\npct interest in the combined company.\n    The company said it will have about two mln shares\noutstanding on a fully-diluted basis after the transaction. It\nsaid after the acquisition it will infuse Perconal compu [...]
+'SECURITY PACIFIC &lt;SPC> COMPLETES MERGER Security Pacific Corp said it\ncompleted its planned merger with Diablo Bank following the\napproval of the comptroller of the currency.\n    Security Pacific announced its intention to merge with\nDiablo Bank, headquartered in Danville, Calif., in September\n1986 as part of its plan to expand its retail network in\nNorthern California.\n    Diablo has a bank offices in Danville, San Ramon and Alamo,\nCalif., Security Pacific also said.\n Reute [...]
+'U.S. INTEC INC &lt;INTK> 4TH QTR NET Shr six cts vs five cts\n    Net 188,000 vs 130,000\n    Revs 12.2 mln vs 10.1 mln\n    Avg shrs 3,029,930 vs 2,764,544\n    12 mths\n    Shr 81 cts vs 1.45 dlrs\n    Net 2,463,000 vs 3,718,000\n    Revs 52.4 mln vs 47.5 mln\n    Avg shrs 3,029,930 vs 2,566,680\n    NOTE: net for 1985 includes 500,000, or 20 cts per share,\nfor proceeds of a life insurance policy.\n    includes tax benefit for prior qtr of approximately 150,000\nof which 140,000 rela [...]
+'ICI &lt;ICI> SEEKS GAINS IN SPECIALTY BUSINESSES Imperial Chemical Industries PLC, the\nlargest chemical company in the United Kingdom, will expand its\nspecialty chemicals and drug businesses this year, and better\nits 1986 results, said chairman-elect Denys Henderson.\n    \"We expect to shift our company toward higher value-added\nbusinesses and continue to broaden our base,\" Henderson told\nreporters at an informal meeting here.\n    ICI today announced the formation of a new U.S.\ [...]
+'INT\'L HYDRON CORP &lt;HYD> 4TH QTR OPER NET Oper shr profit six cts vs loss 20 cts\n    Oper net profit 734,000 vs loss 2,312,000\n    Revs 16.8 mln vs 13.9 mln\n    Year\n    Oper shr profit 30 cts vs profit three cts\n    Oper net profit 3,342,0000 vs profit 318,000\n    Revs 67.5 mln vs 52.6 mln\n    NOTE: Excludes loss of 41,000 dlrs or nil vs gain 7,000\ndlrs or nil in qtr and gain 247,000 dlrs or two cts vs gain\n88,000 dlrs or one ct in year from net operating loss\ncarryforward [...]
+'ALBERTSON\'S &lt;ABS> ADOPTS STOCKHOLDER RIGHTS PLAN Albertson\'s Inc said its board has\nadopted a stockholder rights plan intended to protect them in\nthe event of any proposed takeover of the company.\n    Under the plan, stockholders will receive a dividend\ndistribution of one right for each share of common stock held\non March 23.\n    The rights are exercisable ten days after a person or group\nacquires 20 pct or more of Alberston\'s common stock or\nannounces a tender offer for  [...]
+'ROSPATCH &lt;RPCH> REJECTS DIAGNOSTIC &lt;DRS> BID Rospatch Corp said it\nrejected a proposal by Diagnostic Retrieval Systems Inc to\nacquire its stock at 22 dlrs a share.\n    Rospatch\'s board believes that the long term interests of\nits shareholders will be best served by continuing as an\nindependent public company at this time, the company said in\nresponse to an unsolicited offer from Diagnostic Retrieval.\n    Rospatch said Diagnostic\'s offer of February 27 is a\nvariation of a [...]
+'SYNTECH INTERENATIONAL INC &lt;SYNE> 4TH QTR NET Shr profit six cts vs loss 4.51 dlrs\n    Net profit 815,167 vs loss 12,955,562\n    Revs 7,981,022 vs 2,954,488\n    Year\n    Shr profit 16 cts vs loss 7.22 dlrs\n    Net profit 2,446,100 vs loss 19,175,931\n    Revs 23.6 mln vs 14.6 mln\n Reuter\n&#3;',0
+'INT\'L MINERALS &lt;IGL> BUYS ANIMAL PRODUCTS UNIT International Minerals and\nChemical Corp said it completed its acquisition of Johnson and\nJohnson Co\'s Pitman-Moore unit, a producer of animal health\nproducts.\n    Terms of the acquisition were not disclosed. International\nMinerals and Chemical said annual sales of the unit are about\n45 mln dlrs.\n    Pitman-Moore makes health products for pets and for farm\nand feedstock animals.\n Reuter\n&#3;',0
+'JWT &lt;JWT> NOT APPROACHED BY GROUP SEEKING SHARES JWT Group Inc has not been approached\nby former Ted Bates Worldwide Chairman Robert Jacoby about the\npossibility of a syndicate buying a 35 pct stake in JWT Group\non a friendly basis, a company spokesman said.\n    He said JWT would have no comment on an Advertising Age\nreport that Jacoby is considering heading up a venture capital\nsyndicate to purchase a 35 pct stake in JWT group.\n    Jacoby was not immediately available for com [...]
+'COEUR D\'ALENE MINES CORP &lt;COUR> 4TH QTR LOSS Shr loss 18 cts vs loss one ct\n    Net loss 1,343,000 vs loss 49,000\n    Revs 6,778,000 vs 1,976,000\n    Year\n    Shr loss 67 cts vs loss ten cts\n    Net loss 4,693,000 vs loss 672,000\n    Revs 14.0 mln vs 7,034,000\n    Note: 1986 loss included one-time loss of 3,624,000 dlrs on\nwrite-off of certain silver, oil and gas interests.\n Reuter\n&#3;',0
+'FOOTE MINERAL &lt;FTE> SELLS CAMBRIDGE PLANT Foote Mineral Co said it signed a\nletter of intent with Shieldalloy Corp, a wholly-owned\nsubsidiary of &lt;Metallurg Inc>, for the sale of its Cambridge,\nOhio, business.\n    The company said the sale, which will be explained in\ngreater detail after the definitive agreement has been signed,\nis part of Foote\'s previously-announced plan to sell the entire\ncompany.\n\n Reuter\n&#3;',0
+'U.S. WHEAT GROUPS CALL FOR GLOBAL ACTION All major grain producing countries\nmust do their part to help reduce global surpluses and the\nrecent Australian farm policy proposals are flawed, two U.S.\nwheat organizations said.\n    The recent Australian proposals were a good starting point\nfor discussions, \"but we do not want the Australians to feel\nthey are alone in developing an agenda for discussions\" on world\ngrain trade, the president of the National Association of Wheat\nGrowe [...]
+'GELCO &lt;GEL> SEES FLAT 1987 PRETAX OPERATING NET Gelco Corp said that,\nexcluding the effects of a restructuring plan, it expects\npre-tax operating earnings for the year to end July 31, 1987,\nto be about the same as those of last year.\n    For the year ended July 31, 1986, Gelco reported pre-tax\noperating earnings of 14.8 mln dlrs, or 1.08 dlrs a share.\n    However, final results will be affected by certain charges\nincluding legal and investment advisors fees, preferred stock\nd [...]
+'UTILICORP &lt;UCU> ACQUIRES DOMINION &lt;D> SUBSIDIARY UtiliCorp United Inc said it\nhas closed the previously announced acquisition of West\nVirginia Power from Dominion Resources Inc for about 21 mln\ndlrs.\n Reuter\n&#3;',0
+'PESCH SEES SHAREHOLDER SUPPORT IN AMI &lt;AMI> BID Chicago physician LeRoy Pesch said he\nhas had discussions with several American Medical International\nInc shareholders and sees support for a restructuring of the\ncompany.\n    Pesch said he has discussed his sweetened, 1.91 billion dlr\ntakeover bid for American Medical with several large\nshareholders, including the biggest investor, the Bass family\nof Texas. However, the Bass family has not indicated support\none way or the other [...]
+'SENIOR DELEGATES PESSIMISTIC ON ICO TALKS Efforts to break an impasse between\ncoffee exporting and importing countries over regulating the\nworld coffee market in the face of falling prices appear to\nhave failed, senior delegates said after a contact group\nmeeting. The full ICO council is due to meet this evening.\n    President of the Brazilian Coffee Institute (IBC) Jorio\nDauster told Reuters after the contact group meeting there had\nbeen no agreement on quotas as consumers had t [...]
+'GLAMIS GOLD LTD &lt;GLGVF> SIX MTHS DEC 31 NET Shr 16 cts vs 22 cts\n    Net 1,226,597 vs 1,327,016\n    Revs 6,598,580 vs 5,921,828\n Reuter\n&#3;',0
+'U.S. APPROVES BUYOUT OF COASTAL BANCORP &lt;CSBK> Coastal Bancorp said the U.S.\nFederal Reserve Board approved the acquisition of Coastal by\nSuffield Financial Corp &lt;SSBK>.\n    The acquisition still requires approval from the Banking\nDepartment in Maine, the company noted.\n Reuter\n&#3;',0
+'LITTLE PRINCE PRODUCTIONS LTD&lt;LTLP>1ST QTR LOSS Qtr ended Dec 31\n    Shr profit nil vs loss nil\n    Net profit 858 vs loss 3,957\n    Revs 7,372 vs 1,500\n Reuter\n&#3;',0
+'AMCA &lt;AIL> TO SELL SOME DOMINION BRIDGE ASSETS AMCA International Ltd said it finalized\nagreement to sell certain assets and inventories of its\nDominion Bridge steel service center operations to &lt;Federal\nIndustries Ltd>\'s Russelsteel Inc unit. Terms were undisclosed.\n    It said the sale involved assets and operations of the\ngeneral line of steel service centers in Toronto and Edmonton,\nAlberta and steel from inventories of closed AMCA branches.\n    The company said the sa [...]
+'SCOTT\'S HOSPITALITY ACQUIRES CAPITAL FOOD &lt;Scott\'s Hospitality Inc> said it\nacquired Capital Food Services Ltd, Ottawa\'s largest catering\nand food service company, for undisclosed terms.\n    Scott\'s said it would operate Capital Food as a separate\nunit under Capital\'s current name and management.\n Reuter\n&#3;',0
+'UNION NATIONAL &lt;UNBC> SIGNS DEFINITIVE PACT Union National Corp said it\nsigned a definitive agreement under which its First National\nBank and Trust Co of Washington unit will merge with &lt;Second\nNational Bank of Masontown>.\n    Under a previously announced merger agreement, each share\nof Second National\'s common stock will be converted into 25\nshares of Union National common.\n Reuter\n&#3;',0
+'ANALYSTS SEE NO OTHER BIDDER FOR PUROLATOR&lt;PCC> Several analysts said they do not\nbelieve another suitor will top the 265 mln dlr bid for\nPurolator Courier Corp by E.F. Hutton LBO Inc and a management\ngroup from Purolator\'s courier division.\n    There had been speculation another offer might be\nforthcoming, but analysts mostly believe the 35 dlrs per share\nprice being paid by Hutton and the managers\' PC Acquisition Inc\nis fully valued.\n    Analysts and some Wall Street sour [...]
+'WHITEHALL CORP &lt;WHT> 4TH QTR NET Shr 15 cts vs 55 cts\n    Net 557,000 vs 2,020,000\n    Revs 8,872,000 vs 13,908,000\n    Year\n    Shr 60 cts vs 2.52 dlrs\n    Net 2,198,000 vs 9,313,000\n    Revs 36.9 mln vs 55.7 mln\n Reuter\n&#3;',0
+'SERVICE CORP INTERNATIONAL &lt;SRV> 3RD QTR NET Qtr ended Jan 31\n    Shr 33 cts vs 29 cts\n    Net 14.8 mln vs 11 mln\n    Revs 108.6 mln vs 70.0 mln\n    Avg shrs 45.2 mln vs 37.6 mln\n    Nine mths\n    Shr 88 cts vs 76 cts\n    Net 36.7 mln vs 28.7 mln\n    Revs 260.4 mln vs 193.0 mln\n    Avg shrs 41.9 mln vs 37.8 mln\n    Note: Net for nine mths includes gains from dispositions of\n1,783,000 dlrs or four cts a share vs 900,000 dlrs or two cts a\nshare.\n    Avg shrs and shr data r [...]
+'PEOPLES BANCORPORATION &lt;PEOP> QUARTERLY DIVIDEND Qtly div 25 cts vs 25 cts\n    Pay April 24\n    Record March 31\n Reuter\n&#3;',0
+'CPL REIT &lt;CNTRS> 4TH QTR NET Shr 24 cts\n    Net 412,737\n    Revs 605,321\n    Year\n    Shr 93 cts\n    Net 1,577,892\n    Revs 2,345,261\n    NOTE: Full name CPL Real Estate Investment Trust.\n    Company was formed Dec 30, 1985.\n Reuter\n&#3;',0
+'REPUBLIC AUTOMOTIVE PARTS &lt;RAUT> 4TH QTR LOSS Shr loss 85 cts vs loss 88 cts\n    Net loss 2,410,000 vs loss 2,466,0000\n    Revs 24.0 mln vs 23.9 mln\n    Year\n    Shr loss 1.18 dlrs vs loss 81 cts\n    Net loss 3,338,000 vs loss 2,275,000\n    Revs 101.4 mln vs 112.3 mln\n Reuter\n&#3;',0
+'REALMERICA CO &lt;RACO> YEAR NOV 30 NET Shr profit four cts vs loss 16 cts\n    Net profit 155,383 vs loss 577,336\n    Note: Net includes tax credit of 51,226 dlrs or one ct per\nshare.\n Reuter\n&#3;',0
+'S-K-I LTD &lt;SKII> 2ND QTR JAN 25 NET Shr 81 cts vs 57 cts\n    Net 3,660,273 vs 2,437,914\n    Revs 28.5 mln vs 23.1 mln\n    Six mths\n    Shr 29 cts vs 12 cts\n    Net 1,325,755 vs 483,559\n    Revs 31.7 mln vs 26.4 mln\n Reuter\n&#3;',0
+'FERRO CORP &lt;FOE> SETS JOINT VENTURE Ferro Corp said it has formed a\njoint venture with Paris-based Alsthom Inudstrial Group to\nexport U.S. epxertise in specialty composite materials to the\nEuropean market.\n    Ferro said although the airframe and aerospace industries\nare the prime users of composite materials today, it plans to\ndevelop applications for the ground transportation and\nindustrial markets in the near future.\n    Ferro also announced it has agreed to purchase Compo [...]
+'NYMEX RULE CHANGE SEEN BOOSTING ENERGY TRADE The New York Mercantile Exchange said\nit will introduce exchanges for physicals (EFPS) to its energy\nfutures markets April one.\n    An exchange spokeswoman said the change will allow oil\ntraders that do not hold a futures position to initiate, after\nthe exchange closes, a transaction that can subsequently be\nhedged in the futures market.\n    EFPs, already in effect for platinum futures on NYMEX, are\nexpected to increase the open inter [...]
+'U.S. REFINERY COPPER STOCKS FALL IN JANUARY Refined copper stocks held by U.S.\nrefineries fell to 109,200 short tons at the end of January\nfrom 145,400 short tons at the end of December, the American\nBureau of Metal Statistics reported.\n    Commodity Exchange (Comex) copper stocks climbed to 103,000\ntons in January from 93,300 tons in December. Combined refinery\nand Comex stocks eased to 212,200 tons in January\nfrom 238,700 tons in December.\n    U.S. refined production declined  [...]
+'CCL UNIT ACQUIRES NESTLE CANADA CAN OPERATIONS &lt;CCL Industries Inc>\'s Continental Can\nCanada Inc unit said it acquired the Wallaceburg, Ontario,\nmetal can making operations of Nestle Enterprises Ltd, wholly\nowned by &lt;Nestle SA>, of Switzerland. Terms were undisclosed.\n    Continental Can said it would supply Nestle\'s equivalent\ncan requirements under a long-term agreement.\n    Nestle said it decided to stop manufacturing cans \"in order\nto be in a better position to take  [...]
+'AMERICAN PORK CONGRESS KICKS OFF TOMORROW The American Pork Congress kicks off\ntomorrow, March 3, in Indianapolis with 160 of the nations pork\nproducers from 44 member states determining industry positions\non a number of issues, according to the National Pork Producers\nCouncil, NPPC.\n    Delegates to the three day Congress will be considering 26\nresolutions concerning various issues, including the future\ndirection of farm policy and the tax law as it applies to the\nagriculture s [...]
+'COPPER STOCKS OUTSIDE U.S. INCREASE IN DECEMBER Refined copper stocks held by\nrefineries outside the U.S. increased to a preliminary 277,500\nshort tons at the end of December from a preliminary 270,000\nshort tons (revised higher) at the end of November, the\nAmerican Bureau of Metal Statistics said.\n    London Metal Exchange stocks fell to 193,100 tons in\nDecember from 194,400 tons in November. Combined refinery and\nLME stocks rose to a preliminary 470,600 tons from 464,400 tons\n [...]
+'MFS MANAGED MUNCIPAL BOND TRUST SETS PAYOUT &lt;MFS Managed Muncipal Trust Bond>\nsaid it declared a monthly payout income distribution of 5.7\ncts a share compared with 5.6 cts for the previous month.\n    It said the distribution is payable March 20 to\nshareholders of record March two.\n Reuter\n&#3;',0
+'U.S. BRASS MILL COPPER STOCKS LOWER IN JANUARY U.S. brass mill copper stocks fell to\n185,400 short tons (copper content) at the end of January from\n191,200 short tons at the end of December, according to the\nAmerican Bureau of Metal Statistics.\n    Consumption by brass mills increased to 60,700 short tons\nin January from 48,900 short tons in December.\n    Mills consumed 29,600 tons of refinery shapes in January\nversus 24,000 tons in December. Scrap consumption increased to\n31,10 [...]
+'MFS MUNICIPAL INCOME TRUST &lt;MFM> SETS PAYOUT MFS Municipal Income Trust said it\ndeclared a monthly income distribution of 5.7 cts a share\ncompared with 5.5 cts a share paid in the previous month.\n    It said the distribution is payable March 27 to\nshareholders of record March 13.\n Reuter\n&#3;',0
+'PITTWAY CORP &lt;PRY> 4TH QTR NET Shr 1.35 dlrs vs two dlrs\n    Net 6,195,000 vs 9,202,000\n    Sales 157.5 mln vs 151.6 mln\n    Year\n    Shr 6.02 dlrs vs 6.78 dlrs\n    Net 27,608,000 vs 31,117,000\n    Sales 585.7 mln vs 541.3 mln\n Reuter\n&#3;',0
+'ARMTEK &lt;ARM> TO SELL INDUSTRIAL TIRE UNIT Armtek Corp, previously the\nArmstrong Rubber Co, said it agreed to sell its industrial tire\nand assembly division to a Dyneer Corp &lt;DYR> for an undisclosed\nsum.\n    It said the agreement covers the division\'s tire production\nfacility in Clinton, Tenn., and its plants serving original\nequipment and replacement markets. Armstrong Tire Co, an Armtek\nunit, will continue to sell replacement industrial tires, the\ncompany said.\n    Fina [...]
+'PETROLITE CORP &lt;PLIT> SETS PAYOUT Qtly dividend 28 cts vs 28 cts\n    Pay April 24\n    Record April 10\n Reuter\n&#3;',0
+'NYMEX TO SUBMIT PROPANE PROPOSAL TO CFTC The New York Mercantile Exchange expects\nto submit a propane futures contract for federal regulatory\napproval within a few days, according to an exchange\nspokeswoman.\n    As previously announced, the Board of Governors of the\nexchange approved the contract last month. The exchange will\nnow submit the contract to the Commodity Futures Trading\nCommission, according to the spokeswoman.\n    Contract specifications will resemble those of heati [...]
+'australian annual broad money supply growth 10.3 pct in January\n ',0
+'YEUTTER BLASTS PROPOSED EC OILS AND FATS TAX U.S. trade representative Clayton\nYeutter today said that if the European Community\'s Council of\nMinisters approves a tax on vegetable oils and fats, another\nmajor transatlantic trade row will erupt over agriculture.\n    In a statement issued by the trade representative\'s office\nfollowing a speech to the American Soybean Association\'s board\nof directors, Yeutter said the proposed tax would have a severe\nimpact on American soybean fa [...]
+'EXXON &lt;XON> CUTS HEATING OIL BARGE PRICE Oil traders in New York said Exxon\nCorp\'s Exxon U.S.A. unit reduced the price it charges contract\nbarge customers for heating oil in New York harbor 0.75 cent a\ngallon, effective today.\n    They said the reduction brings Exxon\'s contract barge price\nto 43.25 cts. The price decrease follows sharp declines in\nheating oil prices on spot and futures markets, traders said.\n Reuter\n&#3;',0
+'GREECE SAYS IT HAS RIGHT ON AEGEAN OIL DRILLING Greece, responding to a warning by Turkey\nagainst conducting oil activities in the Aegean Sea, said today\nit had the right to decide where and how to do research or\ndrilling work in the area.\n    A government spokesman said the Greek position was made\nclear to Turkey\'s ambassador Nazmi Akiman when he met Greek\nForeign Affairs Undersecretary Yannis Kapsis last week.\n    Acting Turkish Prime Minister Kaya Erdem said earlier today\nGr [...]
+'LEUCADIA &lt;LUK> HAS 7.2 PCT OF MINSTAR &lt;MNST> Leucadia National Corp said two of\nits subsidiaries have acquired a 7.2 pct stake in Minstar Inc,\na corporation controlled by corporate raider Irwin Jacobs and\nused by him in his forays to acquire stock in companies.\n    In a filing with the Securities and Exchange Commission,\nLeucadia said its LNC Investments Inc, a Newark, Del.,\ninvestment firm, and Charter National Life Insurance Co, a St.\nLouis joint stock life insurance comp [...]
+'BASIX CORP &lt;BAS> 4TH QTR LOSS Oper shr loss eight cts vs profit 20 cts\n    Oper net loss 768,000 vs profit 1,962,000\n    Revs 49.0 mln vs 43.6 mln\n    12 mths\n    Oper shr loss 1.41 dlrs vs profit 96 cts\n    Oper net loss 13.6 mln vs profit 9,305,000\n    Revs 175.3 mln vs 140.7 mln\n    Note: Oper excludes loss from discontinued operations of\n4,676,000 dlrs or 48 cts a share for year-ago qtr and 7,571,000\ndlrs or 78 cts a share for year-ago 12 mths.\n    Oper includes charge  [...]
+'AUSTRALIAN JANUARY ANNUAL BROAD MONEY UP 10.3 PCT Australia\'s broad money supply rose 10.3\npct in the year ended January, up from a revised 9.6 pct in\nDecember, the Reserve Bank said.\n    This compares with the previous January\'s 13.9 pct.\n    In January broad money growth slowed to 0.7 pct from\nDecember\'s 1.5 pct and compared with nil growth in January\n1986.\n    Within the broad money total, non-bank financial\nintermediaries rose by 0.2 pct from a revised decline of 0.2 \nin [...]
+'MICROBIO &lt;MRC> PLANS ACQUISITION, FINANCING Microbiological Research Corp\nsaid it entered into a letter of intent for a proposed business\ncombination with privately owned &lt;DataGene Scientific\nLaboratories Inc>, and &lt;Milex Corp> a newly formed company,\nthrough a stock swap.\n    It also said it received 100,000 dlrs from the sale of a\nconvertible note to Ventana Growth Fund as part of an overall\n1,100,000 equity financing plan with Ventana. Under that plan,\na minimum of 4 [...]
+'ICO COUNCIL ENDS IN FAILURE TO AGREE QUOTAS A special meeting of the International\nCoffee Organization (ICO) council failed to agree on how to set\ncoffee export quotas, ICO delegates said.\n    Producers and consumers could not find common ground on the\nissue of quota distribution in eight days of arduous, often\nheated talks, delegates said.\n    Export quotas -- the major device of the International\nCoffee Agreement to stabilise prices -- were suspended a year\nago after coffee pr [...]
+'FRANCE HAS LITTLE ROOM FOR MANOEUVRE, OECD SAYS French industry is failing to produce the\ngoods its markets need and its loss of competitiveness has left\nthe government little room for manoeuvre to reflate the\neconomy, the Organisation for Economic Cooperation and\nDevelopment said.\n    With gross domestic product likely to grow only 2.1 pct\nthis year, the same rate as last year, unemployment could climb\nto 11.5 pct of the workforce by mid-1988, from its present 10.9\npct, it said [...]
+'PAINEWEBBER&lt;PWJ> UNIT UPS SHAER SHOE &lt;SHS> STAKE Mitchell Hutchins Asset Management\nInc, a New York investment firm and subsidiary of PaineWebber\nGroup Inc, said it raised its voting stake in Shaer Shoe Corp\nto 76,000 shares, or 7.5 pct, from 52,100 shares, or 5.1 pct.\n    In a filing with the Securities and Exchange Commission,\nMitchell Hutchins said it bought 11,900 shares between Jan 8\nand Feb 24 at prices ranging from 12.125 to 12.75 dlrs a share\nand obtained voting con [...]
+'TELECREDIT INC &lt;TCRD> 3RD QTR JAN 31 NET Shr 32 cts vs 22 cts\n    Net 3,454,000 vs 2,224,000\n    Revs 33.2 mln vs 28.1 mln\n    Nine mths\n    Shr 64 cts vs 38 cts\n    Net 6,935,000 vs 3,877,000\n    Revs 86.8 mln vs 70.9 mln\n Reuter\n&#3;',0
+'LASER PRECISION CORP &lt;LASR> 4TH QTR NET Shr profit 14 cts vs profit two cts\n    Net profit 452,723 vs profit 50,581\n    Revs 5,065,543 vs 2,898,363\n    Year\n    Shr profit 45 cts vs loss 15 cts\n    Net profit 1,276,472 vs loss 340,081\n    Revs 16.0 mln vs 9,304,466\n Reuter\n&#3;',0
+'REXNORD &lt;REX> TO REDEEM RIGHTS Rexnord Inc said it will redeem\nall of its preferred stock purchase rights for 10 cts a right\neffective today.\n    Rexnord said the rights will be redeemed because it is\nexpected its shares will be tendered under a January 30\ntakeover offer from Banner Acquisition Corp. The rights trade\nin tandem with Rexnord\'s common stock.\n Reuter\n&#3;',0
+'CANTREX UNIT TO MERGE WITH ONTARIO GROUP (Groupe Cantrex Inc) said it plans to\nmerge a new wholly-owned subsidiary a merger agreement with\n(CAP Appliance Purchasers Inc), of Woodstock, Ontario, a group\nof about 400 appliance and electronics retailers.\n    It said CAP shareholders will receive 140,700 first\npreferred Groupe Cantrex shares entitling the holders to\nreceive 6.05 dlrs per share or the equivilant in class A\nsubordinate voting Cantrex shares.\n    The merger is effectiv [...]
+'INVESTMENT FIRM BOOSTS LDBRINKMAN &lt;DBC> STAKE Two affiliated investment firms and\nthe investment funds they control said they raised their\ncombined stake in LDBrinkman Corp to 653,600 shares, or 10.9\npct of the total outstanding from 585,600 shares, or 9.7 pct.\n    In a filing with the Securities and Exchange Commission,\nFidelity International Ltd, a Bermuda-based firm, said its\nfunds bought 68,000 LDBrinkman common shares between Jan 5 and\nFeb 19 at prices ranging from 5.30 t [...]
+'ITT\'S &lt;ITT> HARTFORD UNIT POSTS 4TH QTR GAIN Hartford Insurance Group, a unit\nof New York-based ITT Corp, said higher worldwide premiums help\nboost net income for the 1986 fourth quarter to 88.6 mln dlrs,\nfrom net income of 36.7 mln dlrs for the 1985 quarter.\n   For the full year, Hartford said it earned 329 mln dlrs, up\nfrom 151.4 mln dlrs in 1985.\n    Hartford said results for the year were aided by a gain of\n46.5 mln dlrs on the sale of its remaining 52 pct stake in\nAbbey [...]
+'SEC PROBES 1986 TRE &lt;TRE> TAKEOVER ATTEMPT The federal Securities and Exchange\nCommission (SEC) is looking for possible securities laws\nviolations in connection with an unsuccessful 1986 bid by\nHollywood producer Burt Sugarman to take over TRE Corp,\nattorneys contacted by SEC investigators said.\n    During the takeeover attempt, a unit of Sugarman\'s Giant\nGroup Ltd at one point held a 9.9 pct stake in TRE.\n    It had help in that effort from Jefferies Group Inc, a Los\nAngele [...]
+'CBT FEBRUARY VOLUME DOWN 14 PCT FROM YEAR AGO February volume at the Chicago Board of\nTrade, CBT, declined 14 pct from the year-ago month to\n8,191,266 contracts, the exchange said.\n    A relatively steady interest rate climate reduced volume in\nthe most active contract, Treasury bond futures, by 17.5 pct\nfrom a year ago to 4,307,645 contracts.\n    However, trading in most agricultural futures contracts\nincreased last month, led by oats and corn futures.\n    Oats volume tripled t [...]
+'USSR WHEAT BONUS RUMORS PERSIST DESPITE DENIALS Grain trade representatives continued\nto speculate that the Reagan administration will offer\nsubsidized wheat to the Soviet Union, while U.S. Agriculture\nDepartment officials said there was no substance to the\nreports.\n    \"It\'s pure fiction,\" said one senior official at USDA\'s\nForeign Agricultural Service, referring to the rumor that the\nadministration would make an export enhancement offer to Moscow\nin the next two to three w [...]
+'CANADIAN SEAFARERS THREATEN STRIKE Canadian seafarers are almost certain\nto go on strike this spring in a refusal to meet rollbacks in\nwages and benefits asked for by their employers, Seafarers\'\nInternational Union official Roman Gralewicz said.\n    \"It\'s 99.9 percent--I guarantee you a strike,\" Gralewicz\nsaid in an interview.\n    The union represents about 2,300 workers on the Great Lakes\nand Canada\'s East and West coasts. Contract talks broke off in\nJanuary and a concilia [...]
+'DALLAS CORP &lt;DLS> 4TH QTR LOSS Oper shr loss 22 cts vs profit 10 cts\n    Oper net loss 1,626,000 vs pofit 702,000\n    Revs 98.3 mln vs 105.1 mln\n    12 mths\n    Oper shr profit 18 cts vs profit 82 cts\n    Oper net profit 1,293,000 vs profit 5,940,000\n    Revs 396.2 mln vs 396.7 mln\n    Note: Oper net excludes loss from discontinued operations\nof 2,112,000 dlrs or 39 cts a share for year-ago qtr and\n2,036,000 dlrs or 1.10 dlrs a share for year-ago 12 mths.\n Reuter\n&#3;',0
+'DILLARD DEPARTMENT STORES INC &lt;DDS> 4TH QTR NET Qtr ended Jan 31\n    Shr 1.16 dlrs vs 1.15 dlrs\n    Net 32.4 mln vs 33.5 mln\n    Revs 629.0 mln vs 538.6 mln\n    Avg shrs 32.1 mln vs 29.2 mln\n    12 mths\n    Shr 2.35 dlrs vs 2.29 dlrs\n    Net 74.5 mln vs 66.9 mln\n    Revs 1.85 billion vs 1.60 billion\n    Avg shrs 31.7 mln vs 29.2 mln\n    Note: Shr/avg shrs data show 2-for-1 split in Nov. 1985.\n Reuter\n&#3;',0
+'KENTUCKY CENTRAL LIFE &lt;KENCA> SETS PAYOUT Kentucky Central Life Insurance\nCo said it declared a semi-annual dividend of 55 cts per share,\npayable March 31 to shareholders or record March 19.\n    The dividend is equal to the company\'s previous semi-annual\npayout.\n Reuter\n&#3;',0
+'BANK OF NEW ENGLAND CORP &lt;BKNE> QTLY DIVIDEND Qtly div 28 cts vs 28 cts prior\n    Pay April 20\n    Record March 31\n Reuter\n&#3;',0
+'JAPAN UNEMPLOYMNENT RISES TO RECORD IN JANUARY Japan\'s seasonally adjusted unemployment\nrate rose to a record 3.0 pct in January, the worst since the\nGovernment started compiling unemployment statistics under its\ncurrent system in 1953, up from the previous record 2.9 pct in\nDecember, the government\'s Management and Coordination Agency\nsaid.\n    Unemployment was up from 2.8 pct a year earlier.\n    Unadjusted January unemployment totalled 1.82 mln people,\nup from 1.61 mln in De [...]
+'FORD &lt;F> EUROPE EARNINGS UP 71 PCT LAST YEAR Ford Europe\'s net earnings soared by 71\nper cent last year to 559 mln dlrs, Kenneth Whipple, chairman\nof Ford Europe, said.\n    Whipple, here to attend the Geneva Auto Show which opens on\nThursday, said that the Ford Motor Co unit had sold a record\n1.5 million vehicles in Europe in 1986.\n    Net earnings were 326 mln dlrs in 1985.\n    Sales in 1986 represented 11.8 per cent of the European\nmarket share, Whipple said. Ford will inv [...]
+'SOUTH KOREA\'S LEADING INDICATORS FALL IN DECEMBER South Korea\'s index of leading indicators\nfell 0.1 pct to 164.1 (base 1980) in December after a 0.1 pct\nrise in November, representing a 16.1 pct year-on-year gain\nfrom December 1985, Economic Planning Board provisional figures\nshow.\n    The index is based on 10 indicators which include export\nvalues, letters of credit received, warehouse stocks, M-1 and\nM-3 money supply figures and the composite stock exchange\nindex.\n REUTER\ [...]
+'JAPANESE ECONOMIST SEES STABLE YEN/DOLLAR RATES The yen should stabilize at around\n152 to 153 to the U.S. Dollar for about a year, the Bank of\nTokyo\'s economic adviser Koei Narusawa said.\n    \"Both sides are showing clear interest to secure stability\nof the currencies. The major target of the Japanese government\nis to maintain the yen at above 150, at least for the rest of\nthe year,\" he told reporters during a brief visit to Malaysia.\n    Narusawa said the U.S. Is unlikely to  [...]
+'OPEC WITHIN OUTPUT CEILING, SUBROTO SAYS Opec remains within its agreed output\nceiling of 15.8 mln barrels a day, and had expected current\nfluctuations in the spot market of one or two dlrs, Indonesian\nEnergy Minister Subroto said.\n    He told reporters after meeting with President Suharto that\npresent weakness in the spot oil market was the result of\nwarmer weather in the U.S. And Europe which reduced demand for\noil.\n    Prices had also been forced down because refineries were\ [...]
+'OFFICIAL INQUIRY SET FOR AUSTRALIAN WHEAT INDUSTRY The government\'s industry aid and\nprotection review body, the Industries Assistance Commission\n(IAC), will hold a 12-month inquiry into the Australian wheat\nindustry, Primary Industry Minister John Kerin said.\n    The IAC has been asked to report on the need for assistance\nto the industry and the nature, duration and extent of any aid,\nhe said in a statement.\n    He said the inquiry will be the first step in setting\nmarketing a [...]
+'COFFEE TRADERS EXPECT SELLOFF AFTER ICO TALKS FAIL The failure of the International Coffee\nOrganization (ICO) to reach agreement on coffee export quotas\ncould trigger a massive selloff in London coffee futures of at\nleast 100 stg per tonne today, coffee trade sources said.\n    Prices could easily drop to as low as 1.00 dlr or even 80\ncents a lb this year from around 1.25 dlrs now, they said.\n    A special meeting between importing and exporting countries\nended in a deadlock late  [...]
+'CRA Ltd 1986 net profit 138.2 mln dlrs vs 87.8 mln\n ',0
+'N.Z. QUARTERLY CURRENT ACCOUNT DEFICIT NARROWS New Zealand\'s current account deficit\nfor the quarter ended December 31, 1986 narrowed to 567 mln\ndlrs from 738 mln, revised down from 742 mln, for the September\nquarter and from 733 mln a year earlier, the statistics\ndepartment said.\n    The deficit for the year ended December narrowed to 2.75\nbillion dlrs from 2.91 billion dlrs, revised down from 2.92\nbillion, for the year ended September. The deficit for calendar\n1985 was 2.61 b [...]
+'TRANSAMERICA SELLS OCCIDENTAL LIFE AUSTRALIA Equity investment company &lt;Battery\nGroup Ltd> said it had agreed to buy &lt;Occidental Life Insurance\nCo of Australia Ltd> from TransAmerica Corp &lt;TA> of the U.S.\nFor 105 mln Australian dlrs.\n    The acquisition has been made possible by the efforts of\nits major shareholder, &lt;Pratt and Co Financial Services Pty\nLtd>, Battery Group said in a statement.\n    The purchase will be partly funded by the issue of eight\nmln shares at  [...]
+'CRA LTD &lt;CRAA.S> 1986 NET Net 138.20 mln dlrs vs 87.80 mln.\n    Shr 24.8 cents vs 17.8\n    Final div to announced after July 1, vs final 10 cents\nmaking 15.\n    Sales revenue 4.81 billion vs 4.69 billion\n    Investment income 116.93 mln vs 60.61 mln\n    Shrs 494.35 mln vs 494.22 mln.\n    NOTE - Net is after tax 171.03 mln dlrs vs 188.52 mln,\ninterest 337.39 mln vs 308.68 mln, depreciation 352.32 mln vs\n333.05 mln but before net extraordinary loss 250.28 mln vs\nprofit 28.03  [...]
+'MALAYSIA RE-IMPOSES EXPORT DUTIES ON RUBBER The Malaysian government said it\nhas re-imposed export duties on rubber at 3/8 cent per kilo\nafter the gazetted price moved above the threshold price of 210\ncents per kilo.\n    The gazetted price, effective March 1, rose to 213-1/2\ncents per kilo from February\'s 207.\n    The duty for research remains at 3.85 cents per kilo and\nthe replanting duty is also unchanged at 9.92 cents.\n REUTER\n&#3;',0
+'MALAYSIA RAISES DUTY ON PROCESSED PALM OIL The government said it raised the\nexport duty on processed palm oil (PPO) to 64.06 ringgit per\ntonne from 40.96 ringgit, effective from March 1.\n    Export duty on crude palm oil (CPO) was unchanged at 16.06\nringgit per tonne.\n    The gazetted price of PPO rose to 796.8604 ringgit per\ntonne from 719.8286. That of CPO remained at 617.8238 ringgit.\n    The export duty and gazetted price of palm kernel were left\nunchanged at 191.15 and 955 [...]
+'comalco ltd 1986 net profit 57.1 mln dlrs vs loss 69.1 mln\n ',0
+'COMALCO LTD &lt;CMAC.S> 1986 NET Net profit 57.1 mln dlrs vs loss 69.1 mln.\n    Net is equity accounted\n    Pre-equity accounted net 39.90 mln dlrs vs loss 49.11 mln\n    Pre-equity shr profit 7.1 cents vs loss 8.7\n    Final div to be announced after July 1 vs first and final\n1.0 cent.\n    Sales 1.88 billion vs 1.78 billion\n    Other income 52.75 mln vs 15.22 mln\n    Shrs 560.61 mln vs same.\n    NOTE - Net is after tax paid 46.85 mln dlrs vs credit 5.02\nmln, interest 127.68 mln [...]
+'JAPAN\'S UNEMPLOYMENT RATE SEEN RISING TO 3.5 PCT Japan\'s unemployment rate is expected to\ncontinue to climb to about 3.5 pct within the next year from\nJanuary\'s three pct record, senior economists, including Susumu\nTaketomi of Industrial Bank of Japan, said.\n    December\'s 2.9 pct was the previous worst level since the\ngovernment\'s Management and Coordination Agency began compiling\nstatistics under its current system in 1953.\n    \"There is a general fear that we will become [...]
+'SOUTH KOREAN TRADE SURPLUS NARROWS IN FEBRUARY South Korea\'s customs-cleared trade\nsurplus narrowed to 110 mln dlrs in February from 525 mln in\nJanuary, provisional trade ministry figures show.\n    In February 1986 there was a deficit of 264 mln dlrs.\n    February exports rose to 2.87 billion dlrs, fob, from 2.83\nbillion in January and 2.30 billion in February 1986. CIF\nimports were 2.76 billion against 2.31 billion in January and\n2.57 billion in February last year.\n REUTER\n&#3;',0
+'JAPAN MOVES TO TIGHTEN CHIP-EXPORT CURBS The Ministry of International Trade and\nIndustry (MITI) acted to tighten restrictions on microchip\nexports to countries other than the U.S. To preserve a\nU.S.-Japan pact on semiconductor trade, but major Japanese\nchipmakers doubt its usefulness.\n    A MITI spokesman said his ministry had asked chipmakers to\nissue certificates to specified trading houses stating they are\nauthorised exporters.\n    Trading houses applying for a MITI export l [...]
+'FINNISH UNEMPLOYMENT AT 6.7 PCT IN DECEMBER Finnish unemployment was 6.7 pct in\nDecember last year compared with 6.8 pct in November and 6.1\npct in December 1985, the Central Statistical Office said.\n    It said 173,000 people were unemployed in December 1986,\n174,000 in November and 157,000 in December 1985.\n REUTER\n&#3;',0
+'BANKERS SEE SHARP RISE IN THAI FOREIGN RESERVES Thailand\'s improving economy will likely\ncause foreign reserves to increase to at least five billion\ndlrs by end-1987 from a record of nearly 4.2 billion at\nend-February, private bankers said.\n    Bank of Thailand statistics show foreign reserves rose to\n3.95 billion at end-January from 3.03 billion a year earlier.\n    Nimit Nonthapanthawat, chief economist at the &lt;Bangkok Bank\nLtd>, said Thailand\'s strong export performance, i [...]
+'SWEDEN HAS CURRENT PAYMENTS SURPLUS IN 1986 Sweden had a 1986 current balance of\npayments surplus of 7.6 billion crowns compared with a deficit\nof 10.1 billion the preceding year, according to preliminary\nfigures from the central bank.\n    The December current account had a 100 mln crowns deficit\nagainst a yearago 200 mln deficit.December trade balance was\n2.3 billion surplus against yearago two billion.\n    The trade balance showed a 1986 surplus of 33.2 billion\ncrowns compared [...]
+'FISONS PLC &lt;FISN.L> YEAR TO END-1986 Shr 27.5p vs 24.3p\n    Div 3.95p vs 3.34p making 6.5p vs 5.5p\n    Pre-tax profit 85.1 mln stg vs 72.3 mln\n    Turnover 702.6 mln vs 646.7 mln\n    Tax 18.4 mln vs 15.2 mln\n    Finance charges 4.1 mln vs 5.4 mln\n    Minority interest 0.1 mln vs 0.5 mln\n    Extraordinary debit, being closure and restructuring costs\n4.9 mln vs 3.7 mln\n    Operating profit includes -\n    Pharmaceutical 49.8 mln vs 39.0 mln\n    Scientific equipment 23.2 mln v [...]
+' MAJOR SWISS BANKS RAISE CUSTOMER TIME DEPOSIT RATES 1/4 POINT TO THREE PCT - CREDIT SUISSE\n ',0
+' CORRECTED - MAJOR SWISS BANKS RAISE CUSTOMER TIME DEPOSIT RATES 1/4 POINT TO 3-1/4 PCT - CREDIT SUISSE\n ',0
+'PHILIPPINE PLANNING CHIEF URGES PESO DEVALUATION The Philippines must devalue the peso if\nit wants its exports to remain competitive, Economic Planning\nSecretary Solita Monsod told Reuters.\n    \"The peso/dollar rate has to be undercut to make our exports\nmore competitive,\" Monsod said an interview. \"No question about\nit. I\'m saying you cannot argue with success. Taiwan, South\nKorea, West Germany, Japan, all those miracle economies\ndeliberately undervalued their currencies.\"\ [...]
+'U.K. CLEARS CONS GOLD U.S. PURCHASE The U.K. Trade Department said it would\nnot refer Consolidated Goldfields Plc\'s &lt;CGLD.L> purchase of\n&lt;American Aggregates Corp> to the Monopolies Commission.\n    Cons Gold said last month that its &lt;ARC America Corp> unit\nhad agreed to buy the Ohio-based company for 30.625 dlrs a\nshare cash, or 242 mln dlrs, in a deal recommended by the\nAggregates board.\n REUTER\n&#3;',0
+'ZAIRE ACCEPTS TIN-EXPORT QUOTA, ATPC SAYS Zaire agreed to limit its tin\nexports to 1,736 tonnes for 12 months from March 1 in line with\nan Association of Tin Producing Countries (ATPC) plan to curb\nexports, the ATPC said.\n    ATPC Executive Director Victor Siaahan told Reuters he\nreceived a telex from Zaire indicating its willingess to take\npart in the plan to limit total ATPC exports to 96,000 tonnes\nfor a year from March 1.\n    Siaahan said Zaire is expected to produce 1,900 t [...]
+'U.K. MONEY MARKET DEFICIT FORECAST AT 350 MLN STG The Bank of England said it forecast a\nshortage of around 350 mln stg in the money market today.\n    Among the main factors affecting liquidity, bills maturing\nin official hands and the take-up of treasury bills will drain\nsome 525 mln stg while bankers\' balnces below target will take\nout around 175 mln stg.\n    Partly offsetting these outflows, exchequer transactions\nand a fall in note circulation will add some 300 mln stg and 4 [...]
+'SAUDI RIYAL DEPOSIT RATES EASE Saudi riyal interbank deposit rates\neased across the board in a dull market which was long in\nday-to-day funds, dealers said.\n    Today\'s quiet market continued a lull of several days in\nwhich traders were said to be waiting on the sidelines ahead of\nfurther clues to the direction of oil prices and the Saudi\neconomy.\n    Dealers cited some borrowing interest in two, three, and\nsix-month deposits but said activity focused on short dates and\none-mo [...]
+'PEMEX SIGNS 500 MLN DLR JAPAN LOAN FOR PIPELINE Mexican state oil firm Petroleos Mexicanos\n(Pemex) signed for a 500 mln dlr&#127;untied loan from the\nExport-Import Bank of Japan to finance its Pacific Petroleum\nProject, Pemex Japan representative Tito Ayal said.\n    No further details on the loan were immediately available.\n    Ayala told an oil seminar the project, due for completion\nin 1988, is aimed at improving distribution of oil products in\nthe domestic market, mainly along [...]
+'STC PLC &lt;STCL.L> YEAR TO END-1986 Shr profit 15.9p vs 2.25p loss\n    Div 3p making 4.5p vs nil\n    Turnover 1.93 billion stg vs 1.99 billion\n    Pretax profit 134.2 mln vs 11.4 mln loss\n    Tax 47.2 mln vs nil\n    Operating profit 163.0 mln vs 92.7 mln\n    Interest less investment income 13.8 mln vs 37.2 mln\n    Exceptional debit 15.0 mln vs 66.9 mln\n    Minorities 0.3 mln vs 0.4 mln\n    Extraordinary credit 16.4 mln vs 42.0 mln debit\n    Operating profit includes -\n    In [...]
+'COMALCO SAYS LOWER COSTS HELPED RETURN TO PROFITS Comalco Ltd &lt;CMAC.S> said its return\nto profit reflected reduced costs, improved primary aluminium\nprices and its withdrawal from a Japanese smelter venture.\n    It said the earlier reported 57.1 mln dlr profit for the\nyear ended December 31 against a 69.13 mln dlr loss in 1985 was\nalso aided by lower interest rates on U.S. Dollar debt and\ngreater sales of bauxite and aluminium.\n    Comalco said it expected to pay at least a fo [...]
+'CRA EXPECTS TO PAY FINAL DIVIDEND OF 10 CENTS CRA Ltd &lt;CRAA.S> said it expected to\npay a final 1986 dividend of not less than 10 cents a share\nafter July 1, making 13 cents for&#127;the year against 15 in 1985.\n    The mining and smelting group earlier reported 1986 net\nearnings rose to 138.2 mln dlrs from 87.8 mln in 1985, against\nanalysts\' forecasts yesterday of 125 mln to&#127;160 mln.\n    CRA said it was deferring consideration of a dividend until\nlater this year to provi [...]
+'SWISS CAPITAL EXPORTS RISE IN JANUARY Swiss capital exports rose to 4.64\nbillion francs in January after 2.54 billion in December and a\nyear earlier 3.64 billion, the Swiss National Bank said.\n    New bond issues accounted for 4.12 billion of the total\nafter December\'s 2.15 billion, and credits 525.1 mln after\n389.9 mln.\n    In January 1985, before the National Bank ended the\ndistinction between notes and bonds, bond issues totalled 1.66\nbillion francs, notes 1.39 billion and c [...]
+'CHINA CALLS FOR BETTER TRADE DEAL WITH U.S. China called on the United States to\nremove curbs on its exports, to give it favourable trading\nstatus and ease restrictions on exports of high technology.\n    But the U.S. Embassy replied that Chinese figures showing\n13 years of trade deficits with the U.S. Out of the last 15 are\ninaccurate and said Peking itself would have to persuade\nCongress to change laws which limit its exports.\n     The official International Business newspaper t [...]
+'NO BUNDESBANK POLICY CHANGES EXPECTED THURSDAY The Bundesbank is unlikely to change\nits credit policies at its central bank council meeting on\nThursday, as exchange rates and short-term interest rates have\nstabilized over the past few weeks, money market dealers said.\n    Attention in the money market is focused on tomorrow\'s\ntender for a securities repurchase pact, from which funds will\nbe credited on Thursday, when an earlier pact expires, draining\n16 billion marks from the sy [...]
+'ITALY CONSUMER PRICES RISE 0.4 PCT IN FEBRUARY Italy\'s consumer price index rose 0.4 pct\nin February compared with January after rising 0.6 pct in\nJanuary over December, the national statistics institute\n(Istat) said.\n    The year-on-year rise in February was 4.2 pct down from 4.5\npct in January and compared with 7.6 pct in February 1986.\n    Istat said its consumer prices index for the families of\nworkers and employees (base 1985) was 109.1 in February against\n108.7 in January [...]
+'MOBIL PLAN TO OPEN PEKING OFFICE, CHINA DAILY SAYS Mobil Corp &lt;MOB.N> of the U.S. Plans to\nopen an office in Peking to develop oil exploration\nopportunities in China, the China Daily said.\n    It quoted Mobil president Richard Tucker, currently in\nPeking, as saying he is optimistic about investment prospects\nin China and that Peking will continue to encourage foreign\nprivate businesses to invest here.\n    It said Mobil bought 73 mln dlrs of crude oil and oil\nproducts from Chi [...]
+'KLM TO TAKE 15 PCT STAKE IN AIR UK KLM Royal Dutch Airlines &lt;KLM.A> said\nit agreed to take a 15 pct stake in Air U.K. Ltd, a subsidiary\nof British and Commonwealth Shipping Plc &lt;BCOM.L>, in a\ntransaction worth around two mln stg.\n   A KLM spokesman said KLM already cooperated closely with Air\nUK, which runs 111 flights a week to Amsterdam\'s Schipol\nairport from nine UK cities.\n   British and Commonwealth Shipping said last week it held\npreliminary talks about a KLM minori [...]
+' &#2;\nZIMBABWE MAIZE HARVEST LOWER AFTER BUMPER CROPS HARARE, March 3\n- Zimbabwe\'s maize crop in 1986/87 (April/ March) is likely to\nbe slightly over 1.6 mln tonnes, against 1.83 mln in 1985/86,\nGrain Marketing Board figures show.\n    Maize exports for 1986/87 to January 31, 1987 totalled\n315,000 tonnes, with about a further 40,000 tonnes expected to\nbe exported in February and March, against 285,000 tonnes in\n1985/86. Domestic usage is estimated at 650,000-900,000 tonnes,\ndep [...]
+'U.K. RESERVES SHOW UNDERLYING RISE IN FEBRUARY Britain\'s gold and currency reserves\nshowed an underlying rise of 287 mln dlrs in February, after a\n72 mln dlrs rise in January, the Treasury said.\n    The underlying trend, which is a guide to Bank of England\noperations to support the pound on foreign exchanges, is net of\nborrowings and repayments.\n    This was above market expectations for a 100 mln dlrs rise.\n    The Treasury said the Bank of England used the opportunity\nof stro [...]
+'COMALCO SAYS LOWER COSTS HELP RETURN TO PROFITS Comalco Ltd said its return to profit\nreflected reduced costs, improved primary aluminium prices and\nits withdrawal from a Japanese smelter venture.\n    It said the earlier reported 57.1 mln dlr profit for the\nyear ended December 31 against a 69.13 mln dlr loss in 1985 was\nalso aided by lower interest rates on U.S. Dollar debt and\ngreater sales of bauxite and aluminium.\n    Comalco said it expected to pay at least a four cents per\n [...]
+'ULTRAMAR SELLS U.K. MARKETING UNITS FOR 50 MLN STG Ultramar Plc &lt;UMAR.L> said it had reached\nagreement in principle to sell its wholly owned U.K. Marketing\ncompanies to Kuwait Petroleum Corp for around 50 mln stg.\n    Ultramar\'s marketing units include &lt;Ultramar Golden Eagle\nLtd> which in 1985 made a profit of around 1.4 mln stg before\nfinancing and group administration charges. A small loss was\nrecorded for the first nine months of 1986.\n    The sale is due to take place  [...]
+'HONG KONG M3 RISES 2.2 PCT IN JANUARY Hong Kong\'s broadly defined M3 money\nsupply rose 2.2 pct to 607.17 billion H.K. Dlrs in January,\nafter a 3.1 pct rise in December, for a year-on-year rise of\n23.3 pct, the government said in a statement.\n    Local currency M3 rose 3.6 pct to 280.36 billion dlrs from\nDecember when it was up 3.4 pct from November, for a rise of\n16.3 pct on the year.\n    Total M2 rose 3.3 pct to 535.26 billion dlrs in January\nfrom December when it rose 3.5 pct [...]
+'WOOLWORTH, UNDERWOODS FAIL TO AGREE ON BID &lt;Underwoods Plc> said it had not been\npossible to agree terms on a bid to be made by Woolworth\nHoldings Plc &lt;WLUK.L> during talks.\n    The two companies had been holding exploratory discussions.\nNo spokesman for either company was immediately available to\nsay why terms could not be agreed, nor whether the possibility\nof a bid was now being abandoned.\n    Last week, Underwoods shares rose 49p to 237p ahead of any\nannouncement of th [...]
+'NO BUNDESBANK POLICY CHANGES EXPECTED THURSDAY The Bundesbank is unlikely to change\nits credit policies at its central bank council meeting on\nThursday, as exchange rates and short-term interest rates have\nstabilized over the past few weeks, money market dealers said.\n    Attention in the money market is focused on tomorrow\'s\ntender for a securities repurchase pact, from which funds will\nbe credited on Thursday, when an earlier pact expires, draining\n16 billion marks from the sy [...]
+'U.K. MONEY MARKET SHORTAGE FORECAST REVISED UP The Bank of England said it revised up\nits forecast of the shortage in the money market today to\naround 500 mln stg from its initial estimate of 350 mln.\n REUTER\n&#3;',0
+'PAKISTAN TO RETENDER FOR RBD PALM OIL TOMORROW Pakistan will retender for 6,000 tonnes\nof refined bleached deodorised palm oil for second half March\nshipment tomorrow, after failing to take up offers today, palm\noil traders said.\n REUTER\n&#3;',0
+'MOBIL PLANS TO OPEN OFFICE IN PEKING Mobil Oil Corp of U.S. Plans to open an\noffice in Peking to develop oil exploration opportunities in\nChina, the China Daily said.\n     It quoted Mobil president Richard Tucker, currently in\nPeking, as saying he is optimistic about investment prospects\nin China and that Peking will continue to encourage foreign\nprivate businesses to invest here.\n     It said Mobil bought 73 mln dlrs of crude oil and oil\nproducts from China in 1986 and sold it  [...]
+'Unilever Plc and Nv combined 1986 pre-tax profit 1.14 billion stg vs 953 mln.\n ',0
+'OPEC WITHIN OUTPUT CEILING, SUBROTO SAYS Opec remains within its agreed output\nceiling of 15.8 mln barrels a day, and had expected current\nfluctuations in the spot market of one or two dlrs, Indonesian\nEnergy Minister Subroto said.\n    He told reporters after meeting with President Suharto that\npresent weakness in the spot oil market was the result of\nwarmer weather in the U.S. And Europe which reduced demand for\noil.\n    Prices had also been forced down because refineries were\ [...]
+'U.K. MONEY MARKET GIVEN 24 MLN STG ASSISTANCE The Bank of England said it provided 24\nmln stg help to the money market in the morning session.\n    This compares with the bank\'s upward revised shortage\nforecast of around 500 mln stg.\n    The central bank purchased bank bills outright comprising\ntwo mln stg in band one at 10-7/8 pct and 22 mln stg in band\ntwo at 10-13/16 pct.\n REUTER\n&#3;',0
+'JAPAN\'S UNEMPLOYMENT RATE SEEN RISING TO 3.5 PCT Japan\'s unemployment rate is expected to\ncontinue to climb to about 3.5 pct within the next year from\nJanuary\'s three pct record, senior economists, including Susumu\nTaketomi of Industrial Bank of Japan, said.\n    December\'s 2.9 pct was the previous worst level since the\ngovernment\'s Management and Coordination Agency began compiling\nstatistics under its current system in 1953.\n    \"There is a general fear that we will become [...]
+' &#2;\nUNILEVER PLC AND NV 1986 4TH QTR TO DEC 31\n    LONDON, March 3\n    Unilever Plc share 49.57p vs 44.19p, making 177.55p vs\n137.96p for full year.\n    Unilever NV share 10.69 guilders vs 11.82 guilders, making\n38.22 guilders vs 36.79 guilders.\n    Unilever Plc final div 35.18p, making 50.17p vs 38.62p.\n    Unilever NV final div 10.67 guilders, making 15.33 guilders\nvs 14.82 guilders.\n    Combined pre-tax profit 276 mln stg vs same, making 1.14\nbillion stg vs 953 mln.\n    [...]
+'HK HOTELS SOARS ON TAKEOVER SPECULATION The price of Hongkong and Shanghai\nHotels Ltd &lt;SHLH.HK>\'s stock soared on speculation of a\ntakeover battle between major shareholders the Kadoorie family\nand the Evergo Industrial Enterprise Ltd &lt;EVGH.HK> group, stock\nbrokers said.\n    They noted heavy buying in Hk Hotel shares after an\nannouncement by Evergo\'s &lt;China Entertainment and Land\nInvestment Co Ltd> unit that it bought about 20 pct of Hk\nHotels from the firm\'s deputy  [...]
+'BRYSON PAYS 5.4 MLN DLRS FOR CENERGY CORP STAKE &lt;Bryson Oil and Gas Plc> said it paid a\ncash consideration of around 5.4 mln dlrs for about 8.6 pct of\n&lt;Cenergy Corp>, a U.S. Oil and gas exploration and production\ncompany.\n    Bryson said its board has been considering a number of\npossible investments to expand the company\'s interests and\nbelieves the opportunity to acquire an investment in Cenergy\nprovides a suitable extension to its existing U.S. Interests.\n    Cenergy r [...]
+'ASHTON-TATE &lt;TATE> 4TH QTR NET Shr 43 cts vs 30 cts\n    Net 10.6 mln vs 5,967,000\n    Revs 62.9 mln vs 41.5 mln\n    Avg shrs 200.7 mln vs 20.2 mln\n    Year\n    Shr 1.26 dlrs vs 85 cts\n    Net 30.1 mln vs 16.6 mln\n    Revs 210.8 mln vs 121.6 mln\n    Avg shrs 23.9 mln vs 19.4 mln\n    NOTE: Share adjusted for January 1987 two-for-one split.\n Reuter\n&#3;',0
+'NEITHER SIDE OPTIMISTIC ON ROTTERDAM PORT ISSUES Employers and the port union, FNV, are\nto meet again this afternoon to attempt a settlement of the\nsix-week-old dispute in Rotterdam\'s general cargo sector, but\nneither side is optimistic, spokesmen for both sides told\nReuters.\n    Little progress was made in last night\'s three hours of\ntalks, with both sides largely reiterating their positions.\n    \"There is still a very large gap between the employers and\nthe FNV, and I can\' [...]
+'UNILEVER IMPROVES IN MOST SECTORS DURING 1986 The Unilever Plc and NV &lt;UN.A> group saw\nimproved performance in almost all sectors during 1986, the\nAnglo-Dutch group said in its results statement.\n    Very good progress was made last year, while the recent\nacquisition of Chesebrough-Pond\'s Inc &lt;CBM.N> was a significant\naddition which will greatly benefit the group in the years to\ncome.\n    Earlier, Unilever reported combined fourth quarter pre-tax\nprofit of 276 mln stg, le [...]
+'U.S. LEADING INDICATORS FELL 1.0 PCT IN JAN AFTER REVISED 2.3 PCT DEC RISE\n ',0
+'U.S. LEADING INDEX FELL 1.0 PCT IN JANUARY The U.S. index of leading indicators\nfell a seasonally adjusted 1.0 pct in January after a revised\n2.3 pct December gain, the Commerce Department said.\n    The department previously said the index rose 2.1 pct in\nDecember.\n    The decline in January was the biggest for any month since\nJuly, 1984, when the index fell 1.7 pct.\n    The January decrease left the index at 183.8 over its 1967\nbase of 100, and was led by a fall in contracts an [...]
+'BURLINGTON COAT FACTORY WAREHOUSE CORP &lt;BCF> NET Jan 31 end\n    Shr 1.40 dlrs vs 1.10 dlrs\n    Net 16.4 mln vs 12.9 mln\n    Revs 196.2 mln vs 157.5 mln\n Reuter\n&#3;',0
+'COFFEE PRICE FALL SHORT TERM - DUTCH ROASTERS This morning\'s sharp decline in coffee\nprices, following the breakdown late last night of negotiations\nin London to reintroduce International Coffee Organization,\nICO, quotas, will be short-lived, Dutch roasters said.\n    \"The fall is a technical and emotional reaction to the\nfailure to agree on reintroduction of ICO export quotas, but it\nwill not be long before reality reasserts itself and prices\nrise again,\" a spokesman for one o [...]
+'GREENWOOD RESOURCES &lt;GRRL> SELLS COMPANY STAKE Greenwood Resources Inc said it has sold\nits 4,300,000 common share majority holding in &lt;New London Oil\nLtd> of London to an affiliate of &lt;Guinness Peat Group PLC> of\nLondon and an affiliate of &lt;Sidro SA> of Belgium for a total of\n1,700,0000 dlrs in cash.\n    The company said it will apply the proceeds of the sale to\nsupport its line of credit and as part of a proposed debt\nrestructuring with Colorado National Bancshares  [...]
+'F.W. WOOLWORTH CO 4TH QTR SHR 1.78 DLRS VS 1.64 DLRS\n ',0
+'HEINZ INTERESTED IN BUYING GUINNESS BREWING H.J. Heinz &lt;HNZ.N> chairman Tony O\'Reilly\nwould be interested in buying Guinness PLC &lt;GUIN.L>\'s brewery\ndivision if it were for sale, a spokesman said.\n    The spokesman, reacting to Irish and British press reports,\nsaid \"He continues to be interested were the group to offer the\nbrewery side of Guinness for sale. But he has not put together\na consortium, nor has he been buying shares.\"\n    He was quoted by the Irish magazine B [...]
+'EQUATORIAL COMMUNICATIONS &lt;EQUA> TO HAVE LOSSES Equatorial Communications\nCo said it expects to report losses of about 57 mln dlrs for\nthe fourth quarter and 68 mln dlrs for the full year 1986 on\nrevenues of about 10 mln dlrs for the quarter and 52 mln dlrs\nfor the year.\n    Equatorial said the losses will include a charge of about\n45 mln dlrs from costs associated with the restructuring of its\nbusiness, including adjustments to reflect the market value of\ntransponders owned  [...]
+'TRANSAMERICA &lt;TA> TO HAVE AUSTRALIAN SALE GAIN Transamerica Corp said it will have\nan after-tax gain of about 10 mln U.S. dlrs on the sale of its\nOccidental Life Insurance Co of Australia Ltd affiliate to\n&lt;Pratt and Co Financial Services Pty Ltd> of Melbourne for 105\nmln Australian dlrs.\n    The sale was announced earlier today in Australia. Proceeds\nwill be used to enhance the growth of North American operations\nof its Transamerica Occidental Life subsidiary, the company\n [...]
+'VIACOM INTERNATIONAL INC GETS ANOTHER NEW NATIONAL AMUSEMENTS BID\n ',0
+'F.W. WOOLWORTH CO &lt;Z> 4TH QTR JAN 31 NET Shr 1.78 dlrs vs 1.64 dlrs\n    Net 117 mln vs 106 mln\n    Sales 2.02 billion vs 1.85 billion\n    Avg shrs 65.6 mln vs 63.9 mln\n    Year\n    Shr 3.25 dlrs vs 2.75 dlrs\n    Net 214 mln vs 177 mln\n    Sales 6.50 billion vs 5.96 billion\n    Avg shrs 65.6 mln vs 63.9 mln\n    NOTE: Share data restated to reflect two for one stock\nsplit in May 1986\n Reuter\n&#3;',0
+'BP OIL RAISES OPERATING PROFIT &lt;BP Oil Ltd>, the U.K. Marketing and\nrefining arm of British Petroleum Co Plc &lt;BP.L>, raised its\npretax operating profit on a replacement cost basis to 182 mln\nstg in calendar 1986, compared with 66 mln stg in 1985.\n    Sales and operating revenue fell to 3.1 billion stg from\n4.2 billion on a replacement cost basis. Historical cost\noperating profit was 61 mln stg, up from 16 mln.\n    BP Oil said 1985 profits had been depressed by exceptional\n [...]
+'U.S. ASKS JAPAN END AGRICULTURE IMPORT CONTROLS The U.S. Wants Japan to eliminate import\ncontrols on agricultural products within three years, visiting\nU.S. Under-Secretary of State for Economic Affairs Allen Wallis\ntold Eishiro Saito, Chairman of the Federation of Economic\nOrganisations (Keidanren), a spokesman for Keidanren said.\n    The spokesman quoted Wallis as saying drastic measures\nwould be needed to stave off protectionist legislation by\nCongress.\n    Wallis, who is att [...]
+'FIRSTCORP &lt;FCR> SEES GAIN ON CONDEMNATION Firstcorp Inc said it weill report\nan after-tax gain of 1,827,000 dlrs or 56 cts per share primary\nand 42 cts fully diluted from the proposed condemnation and\nacquisition of a parking deck it operates by Wake County.\n    The company said if it reinvested proceeds in a similar\nproperty within 24 months, the gain on the sale would be\ndeferred for tax purposes.\n Reuter\n&#3;',0
+'&lt;NATIONAL SEA PRODUCTS LTD> 4TH QTR NET Oper shr 43 cts vs 21 cts\n    Oper net 6,846,000 vs 3,386,000\n    Revs 137.1 mln vs 107.6 mln\n    Year\n    Oper shr 1.36 dlrs vs 42 cts\n    Oper net 21,764,000 vs 7,239,000\n    Revs 516.4 mln vs 454.7 mln\n    Note: 1986 qtr excludes extraordinary gain of 784,000 dlrs\nor five cts share, versus extraordinary loss of 110,000 dlrs or\nshr nil in 1985 qtr\n    Note continued: 1986 year excludes extraordinary gain of\n14,360,000 dlrs or 94 ct [...]
+'U.K. MONEY MARKET SHORTAGE FORECAST REVISED DOWN The Bank of England said it had revised\nits forecast of the shortage in the money market down to 450\nmln stg before taking account of its morning operations. At\nnoon the bank had estimated the shortfall at 500 mln stg.\n REUTER\n&#3;',0
+'NATIONAL AMUSEMENTS AGAIN UPS VIACOM &lt;VIA> BID Viacom International Inc said &lt;National\nAmusements Inc> has again raised the value of its offer for\nViacom\'s publicly held stock.\n    The company said the special committee of its board plans\nto meet later today to consider this offer and the one\nsubmitted March one by &lt;MCV Holdings Inc>.\n    A spokeswoman was unable to say if the committee met as\nplanned yesterday.\n    Viacom said National Amusements\' Arsenal Holdings In [...]
+'NATIONAL FSI INC &lt;NFSI> 4TH QTR LOSS Shr loss six cts vs profit 19 cts\n    Net loss 166,000 vs profit 580,000\n    Revs 3,772,000 vs 5,545,000\n    Year\n    Shr loss 13 cts vs profit 52 cts\n    Net loss 391,000 vs profit 1,425,000\n    Revs 15.4 mln vs 16.6 mln\n    NOTE: 1985 year figures pro forma for purchase accounting\nadjustments resulting from March 1985 reeacquisition of company\nby its original shareholders before August 1985 initial public\noffering. \n Reuter\n&#3;',0
+'&lt;PRECAMBRIAN SHIELD RESOURCES LTD> YEAR LOSS Shr loss 1.93 dlrs vs profit 16 cts\n    Net loss 53,412,000 vs profit 4,479,000\n    Revs 24.8 mln vs 32.7 mln\n    Note: 1986 shr and net include 51,187,000 dlr writedown on\nU.S. operations, uneconomic coal operations and other mineral\nproperties\n Reuter\n&#3;',0
+'U.K. MONEY MARKET GIVEN FURTHER 437 MLN STG HELP The Bank of England said it had provided the\nmoney market with a further 437 mln stg assistance in the\nafternoon session. This brings the Bank\'s total help so far\ntoday to 461 mln stg and compares with its revised shortage\nforecast of 450 mln stg.\n    The central bank made purchases of bank bills outright\ncomprising 120 mln stg in band one at 10-7/8 pct and 315 mln\nstg in band two at 10-13/16 pct.\n    In addition, it also bought  [...]
+'GREASE MONKEY HOLDING CORP &lt;GMHC> YEAR NOV 30 Shr nil vs nil\n    Net 130,998 vs 30,732\n    Revs 1,568,941 vs 1,0053,234\n Reuter\n&#3;',0
+'ACCEPTANCE INSURANCE HOLDINGS INC &lt;ACPT> YEAR Oper shr profit 1.80 dlrs vs loss 2.28 dlrs\n    Oper net profit 2,048,0000 vs loss 1,318,000\n    Revs 25.4 mln vs 12.3 mln\n    Avg shrs 1,135,000 vs 576,000\n    NOTE: Net excludes realized investment gains of 40,000 dlrs\nvs 13,000 dlrs.\n    1986 net excludes 729,000 dlr tax credit.\n Reuter\n&#3;',0
+'MINSTAR INC &lt;MNST> 4TH QTR NET Oper shr loss 31 cts vs loss 30 cts\n    Oper net loss 5,429,000 vs loss 5,216,000\n    Revs 257.5 mln vs 243.6 mln\n    Avg shrs 17.5 mln vs 13.5 mln\n    Year\n    Oper shr loss eight cts vs profit 28 cts\n    Oper net loss 1,324,000 vs profit 4,067,000\n    Revs 989.5 mln vs 747.9 mln\n    Avg shrs 17.6 mln vs 15.7 mln\n   \n    NOTE: 1986 operating net loss excludes income from\ndiscontinued operations equal to 11 cts in the quarter and 66\ncts in t [...]
+'&lt;MARK RESOURCES INC> YEAR LOSS Shr not given\n    Loss 54.9 mln\n    Revs 27.2 mln\n    Note: Prior year results not given. 1986 results include\naccounts of 89 pct owned &lt;Precambrian Shield Resources Ltd>,\nacquired November 5, 1986\n Reuter\n&#3;',0
+'TRANSFORM LOGIC &lt;TOOG> REVISES RESULTS DOWNWARD Transform Logic Corp said it\nhas revised downward its previously reported fourth quarter and\nyear, ended October 31, results to reflect compensation expense\nfor employee stock options.\n    The company said resolution of this disagreement with its\nauditors came as a result of Securities and Exchange Commission\ninvolvement. The company will amend its option-granting\nprocedure to conform to the SEC decision which will eliminate\nfut [...]
+'AMERICAN STORES &lt;ASC> SEES LOWER YEAR NET American Stores Co said it\nexpects to report earnings per share of 3.70 to 3.85 dlrs per\nshare on sales of slightly over 14 billion dlrs for the year\nended January 31.\n    The supermarket chain earned 4.11 dlrs per share on sales\nof 13.89 billion dlrs last year.\n    The company did not elaborate.\n Reuter\n&#3;',0
+'KASLER CORP &lt;KASL> 1ST QTR JAN 31 NET Shr profit three cts vs loss seven cts\n    Net profit 161,000 vs loss 367,000\n    Revs 24.3 mln vs 26.5 mln\n Reuter\n&#3;',0
+'UNILEVER HAS IMPROVED MARGINS, VOLUMES IN 1986 Unilever Plc &lt;UN.A> and NV group reported\nimprovements in margins and underlying sales volume growth of\nfive pct in 1986 after stripping out the effects of falling\nprices, disposals and currency movements, Unilever Plc chairman\nMichael Angus said.\n    He told reporters that volumes in North America increased\nsome 10.5 pct while European consumer goods rose about 2.5 pct\nafter being flat for some years.\n    Much of the disposal st [...]
+'SARA LEE &lt;SLE> TO BUY 34 PCT OF DIM Sara Lee Corp said it agreed to buy a 34\npct interest in Paris-based DIM S.A., a subsidiary of BIC S.A.,\nat a cost of about 84 mln dlrs.\n    DIM S.A., a hosiery manufacturer, had 1985 sales of about\n260 mln dlrs.\n    The investment includes the purchase of 360,537 newly\nissued DIM shares valued at about 51 mln dlrs and a loan of\nabout 33 mln dlrs, it said. The loan is convertible into an\nadditional 229,463 DIM shares, it noted.\n    The pro [...]
+'CHINA CALLS FOR BETTER TRADE DEAL WITH U.S. China called on the United States to\nremove curbs on its exports, to give it favourable trading\nstatus and ease restrictions on exports of high technology.\n    But the U.S. Embassy replied that Chinese figures showing\n13 years of trade deficits with the U.S. Out of the last 15 are\ninaccurate and said Peking itself would have to persuade\nCongress to change laws which limit its exports.\n    The official International Business newspaper to [...]
+'U.S. COMMERCE SECRETARY SAYS EXPORT RISE NEEDED Commerce Secretary Malcolm Baldrige\nsaid after the release of a sharply lower January leading\nindicator index that a pickup in exports is needed.\n    \"The best tonic for the economy now would be a pickup in net\nexports,\" he said in a statement after the department reported\nthe index fell 1.0 pct in January from December, the sharpest\ndrop since a 1.7 pct fall in July, 1984.\n    The main reasons for the January decline after a 2.3  [...]
+'PRECAMBRIAN SHIELD TAKES 51 MLN DLR WRITEDOWN &lt;Precambrian Shield Resources\nLtd>, earlier reporting a large loss against year-ago profit,\nsaid the 1986 loss was mainly due to a 51,187,000 dlr writedown\non its U.S. operations, uneconomic coal and other mineral\nproperties.\n    Precambrian, which is 89 pct owned by &lt;Mark Resources Inc>,\nsaid it took the writedown in accordance with new Canadian\nInsititute of Chartered Accountants guidelines for full cost\nmethod accounting by  [...]
+'KENYAN ECONOMY FACES PROBLEMS, PRESIDENT SAYS The Kenyan economy is heading for\ndifficult times after a boom last year, and the country must\ntighten its belt to prevent the balance of payments swinging\ntoo far into deficit, President Daniel Arap Moi said.\n    In a speech at the state opening of parliament, Moi said\nhigh coffee prices and cheap oil in 1986 led to economic growth\nof five pct, compared with 4.1 pct in 1985.\n    The same factors produced a two billion shilling balanc [...]
+'SCOTT\'S HOSPITALITY ACQUIRES CAPITAL FOOD &lt;Scott\'s Hospitality Inc> said it\nacquired all issued shares of Capital Food Services Ltd, of\nOttawa. Terms were not disclosed.\n    Scott\'s said Capital Food had 1986 sales of more than 20\nmln dlrs and will continue to operate under its present name\nwith existing management.\n    Capital Food provides food services to several Ottawa\ninstitutions, the company said.\n Reuter\n&#3;',0
+'ZIMBABWE COFFEE OUTPUT SET TO RISE Zimbabwean coffee output will reach\n13,000 tonnes this year, up on just over 11,000 tonnes produced\nin 1986, the Commercial Coffee Growers Association said.\n    Administrative Executive Robin Taylor told the domestic\nnews agency ZIANA that Zimbabwe earned the equivalent of 33 mln\nU.S. Dlrs from coffee exports last year. He would not say how\nmuch the country would earn in 1987.\n    Taylor said the 173 commercial coffee growers under his\nassociat [...]
+'VIDEO DISPLAY &lt;VIDE> TO SELL CABLE TV UNIT Video Display Corfp said it has reached\na tentiative agreement to sell its existing cable television\nbusiness for undisclosed terms and expects to report a gain on\nthe transaction.  The buyer was not named.\n    The company said it will redeploy its service assets into\nmanufacturing and distribution.\n    It said the operations being sold accounted for about five\npct of revenues for the year ended February 28 and lost money.\n Reuter\n&#3;',0
+'INTEK DIVERSIFIED CORP &lt;IDCC> 4TH QTR NET Shr three cts vs three cts\n    Net 98,20000 vs 91,898\n    Revs 2,843,520 vs 2,372,457\n    Year\n    Shr 13 cts vs 21 cts\n    Net 401,179 vs 681,374\n    Revs 10.5 mln vs 9,699,535\n Reuter\n&#3;',0
+'U.S. SINGLE-FAMILY HOME SALES FELL 6.8 PCT IN JAN AFTER REVISED 12.1 PCT DEC GAIN\n ',0
+'U.S. HOME SALES FELL 6.8 PCT IN JANUARY Sales of new single-family homes in\nthe United States fell 6.8 pct in January from December to a\nseasonally adjusted annual rate of 716,000 units, the Commerce\nDepartment said.\n    The department revised downward December\'s sales to a 12.1\npct rise to 768,000 units from the previously reported 12.7 pct\nincrease.\n    The January decline in sales was the largest since last\nOctober when sales fell 9.3 pct.\n    Before seasonal adjustment, th [...]
+'COMMUNITY BANK &lt;CBSI> TO MAKE ACQUISITION Community Bank System Inc said it\nhas entered into a definitive agreement to acquire Nichols\nCommunity Bank for 2,800,000 dlrs in common stock.\n    It said subject to approval by Nichols shareholders and\nregulatory authorities, the transaction is expected to be\ncompleted later this year.\n Reuter\n&#3;',0
+'BELGIAN UNEMPLOYMENT FALLS IN FEBRUARY Belgian unemployment, based on the\nnumber of jobless drawing unemployment benefit, fell to 12.1\npct of the working population at the end of February from 12.6\npct at the end of January, the National Statistics Office said.\n    The rate compares with 12.4 pct at the end of February\n1986.\n    The total number of jobless stood at 508,392, compared with\n530,587 at the end of January and 521,219 at the end of\nFebruary 1986, the Statistics Office [...]
+'PHARMACIA AB &lt;PHAB ST>  1986 YEAR Sales 3.65 billion crowns vs 3.40\nbillion.\n     Profit  after financial items 821.2 mln crowns vs 740.2\nmln.\n    The 1986 results include a once-off writedown of 520 mln\ncrowns for intangible assets, mainly the know-how paid for in\nthe takeover of a number of high-tech companies by the group,\nPharmacia said.\n    Earnings per share after real tax including the writedown:\n1.94 crowns vs 12.05 crowns.\n    Earnings per share after real tax (not [...]
+'PHARMACIA FORECASTS HIGHER 1987 EARNINGS Pharmacia AB &lt;PHAB ST> forecast\nearnings after financial items of one billion crowns in 1987 vs\n821.2 mln last year on condition that exchange rates remained\nat their present parities.\n    Sales would in such circumstances go up to six billion\ncrowns from 3.65 billion in 1986, it said.\n    A weakening Dollar was mainly responsible for a five pct\nnegative impact on sales during 1986 which the company blamed\non currency movements.\n    L [...]
+'CANADA REAL 4TH QTR GDP ROSE 1.1 PCT, AFTER 3RD QTR 1.1 PCT RISE - OFFICIAL\n ',0
+'CANADA 4TH QTR CURRENT ACCOUNT DEFICIT 2.3 BILLION DLRS VS 3RD QTR 1.9 BILLION DEFICIT - OFFICIAL\n ',0
+'MCLEAN INDUSTRIES &lt;MII> UNIT TRANSERS SERVICE McLean Industries Inc said its\nshipping subsidiary, United States Lines Inc, reached an\nagreement in principle to transfer its South American service\nto American Transport Lines Inc, a subsidiary of &lt;Crowley\nMaritime Corp>.\n    Under the terms of the agreement, United States Lines will\nlease five vessels to American Transport for 15 months with an\noption to extend the period up to 10 years, the company said.\n    In return, U.S. [...]
+'SMALL QUANTITY OF UK WHEAT SOLD TO HOME MARKET A total of 2,435 tonnes of British\nintervention feed wheat were sold at today\'s tender for the\nhome market out of requests for 3,435 tonnes, the Home Grown\nCereals Authority, HGCA, said.\n    Price details were not reported.\n    No bids were submitted for intervention barley.\n Reuter\n&#3;',0
+'CANADA DECEMBER GDP UP 1.2 PCT AFTER NOVEMBER\'S 0.2 PCT FALL - OFFICIAL\n ',0
+'FIRST FEDERAL SAVINGS &lt;FFKZ> YEAR NET Shr 78 cts vs one dlr\n    Net 1,413,000 vs 1,776,000\n    Assets 705.3 mln vs 597.3 mln\n    Deposits 495.6 mln vs 493.9 mln\n    Loans 260.0 mln vs 379.7 mln\n    Qtly div six cts vs six cts prior qtr\n    Pay April 1 \n    Record March 6\n    NOTE: 1986 net includes charges from accounting changes,\nfrom one-time expenses associated with a proxy contest and an\nincrease in loan reserves.\n    First Federal Savings and Loan Association of Kalam [...]
+'TOLL BROTHERS INC &lt;TOL> 1ST QTR JAN 31 NET Shr 22 cts vs 12 cts\n    Net 3,243,000 vs 1,656,000\n    Revs 28.4 mln vs 21.5 mln\n    NOTE: All amts reflect 3-for-2 stock split of company\'s\ncommon in form of 50 pct stock dividend paid Feb 26, 1987.\n Reuter\n&#3;',0
+'PILLSBURY CO &lt;PSY> VOTES QUARTERLY DIVIDEND Qtly div 25 cts vs 25 cts prior qtr\n    Pay 31 May\n    Record 1 May\n Reuter\n&#3;',0
+'BERKSHIRE GAS CO &lt;BGAS> PAYS REGULAR QTLRY DIV Qtrly div 28.5 cts vs 28.5 cts\n    Pay April 15\n    Record March 31\n Reuter\n&#3;',0
+'U.K. WHEAT AND BARLEY EXPORTS ADJUSTED UPWARDS The U.K. Exported 535,460 tonnes of wheat\nand 336,750 tonnes of barley in January, the Home Grown Cereals\nAuthority (HGCA) said, quoting adjusted Customs and Excise\nfigures.\n    Based on the previous January figures issued on February 9,\nwheat exports increased by nearly 64,000 tonnes and barley by\nabout 7,000 tonnes.\n    The new figures bring cumulative wheat exports for the\nperiod July 1/February 13 to 2.99 mln tonnes, and barley  [...]
+'CANADA GDP RISES 3.1 PCT IN 1986 Canada\'s real gross domestic product,\nseasonally adjusted, rose 1.1 pct in the fourth quarter of\n1986, the same as the growth as in the previous quarter,\nStatistics Canada said.\n    That left growth for the full year at 3.1 pct, which is\ndown from 1985\'s four pct increase.\n    The rise was also slightly below the 3.3 pct growth rate\nFinance Minister Michael Wilson predicted for 1986 in\nFebruary\'s budget. He also forecast GDP would rise 2.8 pct [...]
+'EAST EUROPE WHEAT WINTERKILL POSSIBLE, ACCU SAYS Winter wheat crops in the\nwestern Soviet Union, Poland and eastern Czechoslovakia through\nnorthern Romania may suffer some winterkill over the next two\nnights, private forecaster Accu-Weather Inc said.\n    Western USSR winter wheat areas have had only light and\nspotty snow and winterkill is possible tonight and tomorrow\nnight as temperatures drop to minus 10 to 0 degrees F.\n    Snow cover is scant in Poland, with only about 50 pct  [...]
+'CHARMING SHOPPES INC &lt;CHRS> 4TH QTR JAN 31 NET Shr 28 cts vs 22 cts\n    Net 14 mln vs 10.6 mln\n    Revs 163.8 mln vs 127.3 mln\n    Year\n    Shr 81 cts vs 59 cts\n    Net 40.5 mln vs 28.7 mln\n    Revs 521.2 mln vs 391.6 mln\n Reuter\n&#3;',0
+'PANSOPHIC SYSTEMS &lt;PNS> SPLITS STOCK 2-FOR-1 Pansophic Systems Inc said it\nwill split its stock two-for-one effective April two to\nshareholders of record March 13.\n    It also said it will pay a six cts per share dividend on\nthe pre-split shares, a regular quarterly dividend, on April\ntwo to shareholders of record March 13.\n Reuter\n&#3;',0
+'LAC &lt;LAC> INTERSECTS MORE GOLD AT DOYON MINE Lac Minerals Ltd and &lt;Cambior Inc> said\nthey completed a second hole at their jointly owned Doyon mine\nin Quebec, which showed two significant gold intersections.\n    One intersection graded 0.33 ounce gold a short ton over 44\nfeet at depth of 1,411 feet, while the other graded 0.22 ounce\ngold a ton over 23 feet at 2,064 feet, the companies said. The\nhole is 460 feet east of the previously reported first hole.\n    They said they  [...]
+'CALMAR &lt;CLMI> SEEKS TO BE ACQUIRED BY &lt;KEBO AB> Calmar Inc said KEBOO Ab of\nSweden, which now owns about 64 pct of Calmark, has approved\nthe acquisition of remaining Calmar shares at 25.375 dlrs in\ncash at the request of the Calmar board.\n    Calmar said a special meeting of its board will be held\nMarch Nine to form a special committee of directors not\naffiliated with KEBO to evaluate the transaction.\n    KEBO is in turn 60 pct owned by &lt;Investment AB Beijar> of\nSweden. [...]
+'ITALY\'S BNL NEGOTIATING PURCHASE OF GERMAN BANK Italy\'s state-owned &lt;Banca Nazionale Del\nLavoro-BNL> said it is negotiating to buy a West German bank as\npart of its foreign expansion policy.\n    BNL president Nerio Nesi told a news conference the Italian\nbank was currently involved in talks but declined to name the\nGerman institution.\n    He said the takeover move could be seen as BNL\'s reply to\nDeutsche Bank AG &lt;DBKG.F>, which entered the Italian market in\nDecember 198 [...]
+'THREE KILLED IN SOUTH AFRICA ZINC REFINERY CLASH Three black workers were killed and\nseven injured in fighting at a South African zinc refinery last\nnight, Gold Fields of South Africa Ltd said.\n    The company said two groups of workers began attacking each\nother at about 1000 local time with machetes, knives and sticks\nat a hostel at the Zincor plant, some 40 kms east of\nJohannesburg.\n    It said the fighting was \"quelled\" after 25 minutes by its\nown security staff. Police we [...]
+'FED EXPECTED TO ADD TEMPORARY RESERVES The Federal Reserve is expected to\nenter the U.S. Government securities market to add temporary\nreserves, economists said.\n    They expect it to supply the reserves indirectly by\narranging 1.5 to two billion dlrs of customer repurchase\nagreements. The Fed may add the reserves directly instead via\nSystem repurchases.\n    Federal funds, which averaged 6.18 pct yesterday, opened at\n6-3/16 pct and stayed there in early trading. Analysts said th [...]
+'EC INDUSTRY OUTPUT GROWTH SLOWS IN 1986 European Community industrial output\nincreased by an average of around two pct last year, compared\nwith 3.3 pct growth recorded in 1985 against a year earlier,\nthe EC statistics office Eurostat said.\n    Growth was highest in Portugal at five pct, while in Greece\noutput contracted by 0.3 pct, Eurostat said in a statement.\n    Eurostat noted output growth also fell in the U.S. And\nJapan. U.S. Production increased 1.1 pct after 2.0 pct in 198 [...]
+'LSB INDUSTRIES INC &lt;LSB> 4TH QTR NET Shr profit five cts vs loss 2.11 dlrs\n    Net profit 375,061 vs loss 10.4 mln\n    Revs 39.9 mln vs 37.8 mln\n    Avg shrs 6,536,008 vs 4,939,895\n    12 mths\n    Shr profit 47 cts vs loss 3.37 dlrs\n    Net profit 2,837,288 vs loss 16.6 mln\n    Revs 169.1 mln vs 149.4 mln\n    Avg shrs 6,037,640 vs 4,937,378\n    NOTE: primary earnings per share are based on the weighted\naverage number of common and dilutive common equivalent shares\noutstand [...]
+'MORE GOLD DETECTED AT DOYON MINE Lac Minerals Ltd and Cambior Inc said\nthey completed a second hole at their jointly owned Doyon mine\nin Quebec, which showed two significant gold intersections.\n    One intersection graded 0.33 ounce gold per short ton over\n44 feet at depth of 1,411 feet, while the other graded 0.22\nounce gold per ton over 23 feet at 2,064 feet, the companies\nsaid. The hole is 460 feet east of the previously reported\nfirst hole.\n    Another hole is being drilled  [...]
+'GULF RESOURCES AND CHEMICAL CORP &lt;GRE> 4TH QTR Oper shr profit 34 cts vs loss 53 cts\n    Oper net profit 3,337,000 vs 4,881,000\n    Revs 32.7 mln vs 49.6 mln\n    Year\n    Oper shr profit 20 cts vs loss 90 cts\n    Oper net profit 2,374,000 vs loss 9,381,000\n    Revs 126.9 mln vs 160.5 mln\n    NOTES: Operating net excludes loss 6,050,000 dlrs, or 64\ncts a share, vs loss 24,839,000 dlrs, or 2.61 dlrs a share, in\nquarter and loss 6,050,000 dlrs, or 64 cts a share, vs profit\n64, [...]
+'COFFEE TALKS COLLAPSE EASES NEED FOR U.S. BILL The collapse of International Coffee\nOrganization, ICO, talks on export quotas yesterday removes the\nimmediate need to reinstate U.S. legislation allowing the\ncustoms service to monitor coffee imports, analysts here said.\n    The Reagan administration proposed in trade legislation\noffered Congress last month that authority to monitor coffee\nimports be resumed. That authority lapsed in September 1986. A\nbill also was introduced by Rep [...]
+'PANSOPHIC SYSTEMS INC &lt;PNS> 3RD QTR JAN 31 NET Shr 70 cts vs 56 cts\n    Net 6,197,000 vs 4,880,000\n    Revs 24.1 mln vs 17.1 mln\n    Nine mths\n    Shr 1.38 dlrs vs 1.20 dlrs\n    Net 12.1 mln vs 10.4 mln\n    Revs 52.5 mln vs 41.8 mln\n Reuter\n&#3;',0
+'FORMER TREASURY OFFICIAL URGES CURRENCY REFORMS Former Treasury official C. Fred\nBergsten said a new exchange rate system is needed to replace\nthe fixed and flexible exchange rate systems which he said had\nnot worked.\n    \"I prefer a move to \'target zones\' in which the major\ncountries would determine ranges of 15-20 pct within which they\nwould pledge to hold their exchange rates by direct\nintervention and, as necessary, by changes in monetary and\nother policies,\" Bergsten, n [...]
+'KNUTSON MORTGAGE CORP &lt;KNMC> SETS QUARTERLY Qtly div 10 cts vs 10 cts prior\n    Pay April 13\n    Record March 13\n Reuter\n&#3;',0
+'FORD MOTOR CO OF CANADA LTD 4TH QTR SHR 8.17 DLRS VS 55 CTS\n ',0
+'YUGOSLAVIA WHEAT FREE OF WINTERKILL - USDA There was no evidence of winterkill\nin Yugoslavian winter wheat during field travel along a line\nrunning northwest from Belgrade to near Maribor, the U.S.\nAgriculture Department\'s counselor in Belgrade said in a field\nreport.\n    The report, dated February 26, said there is evidence of\ndelayed germination in most areas due to late seeding last fall\nbecause of dry conditions.\n    However warm temperatures over the past three weeks have\ [...]
+'AUSIMONT COMPO NV &lt;AUS> 4TH QTR NET Shr 42 cts vs 39 cts\n    Net 12.3 mln vs 9,382,000\n    Sales 172.0 mln vs 146.00 mln\n    Avg shrs 29.5 mln vs 24.3 mln\n    Year\n    Shr 1.63 dlrs vs 1.35 dlrs\n    Net 45.7 mln vs 30.0 mln\n    Sales 665.5 mln vs 446.2 mln\n    Avg shrs 28.0 mln vs 22.3 mln\n    NOTE: translated at 1,339 Italian lire to dollar.\n Reuter\n&#3;',0
+'NORTON &lt;NRT> TO SELL SOUTH AFRICAN OPERATIONS Norton co said it has agreed to\nsell its remaining South African business, Norton co Pty Ltd,\nto &lt;Global Mining and Industrial Corp> of South africa for\nundisclosed terms.\n    The company said the unit accounts for less than two pct of\nNorton revenues and is being sold because \"Growing societal\npressures in the United States and the unsettled situation in\nsouth Africa had required a disproportionate amount of\nmanagement tiome  [...]
+'CANADA CURRENT ACCOUNT DEFICIT UP IN QUARTER Canada\'s current account deficit widened\nto a seasonally adjusted 2.27 billion dlrs in the fourth\nquarter from a deficit of 1.94 billion dlrs in the third,\nStatistics Canada said.\n    The shortfall for the full year rose to 8.81 billion dlrs\nfrom 1985\'s 584 mln dlr deficit, the federal agency said.\n    The agency said the rise in the merchandise surplus, to\n2.77 billion dlrs from 2.20 billion dlrs in the third quarter,\nwas more than [...]
+'HOME FEDERAL OF THE ROCKIES &lt;HROK> 4TH QTR LOSS Shr loss 2.07 dlrs vs profit 36 cts\n    Net loss 1,088,000 vs profit 187,000\n    Year\n    Shr loss 12.23 dlrs vs profit 17 cts\n    Net loss 645,000 vs profit 89,000\n    NOTE: Home Federal Savings and Loan Association of the\nRockies.\n    1986 net includes tax credits of 165,000 dlrs in quarter\nand 189,000 dlrs in year.\n    Net includes pretax loan loss provisions of 1,439,000 dlrs\nvs 127,000 dlrs in quarter and 1,701,000 dlrs v [...]
+'CANADA DECEMBER GDP GAINS 1.2 PCT Canada\'s gross domestic product, by\nindustry, rose a seasonally adjusted 1.2 pct in December, the\nlargest monthly gain since April, 1986, Statistics Canada said.\n    GDP, which fell 0.2 pct in November, was 2.1 pct above the\nDecember, 1985 level, the federal agency said.\n    Output of goods producing industries rose 1.6 pct in the\nmonth, with virtually all the growth occurring in manufacturing\nand mining. Services producing industries expanded 1 [...]
+'SAATCHI AND SAATCHI BUYS CLEVELAND CONSULTING Advertising agents Saatchi and Saatchi Co\nPlc &lt;SACHY> said it was buying &lt;Cleveland Consulting Associates\nInc> for an initial consideration of 2.0 mln dlrs.\n    Additional payments may be made annually through the year\nending March 31, 1991 to bring the total consideration up to\n9.5 pct of Cleveland\'s average post-tax profits in the last two\nyears of the period.\n    The purchase of Cleveland is a further step in Saatchi and\nSa [...]
+'UNILEVER\'S &lt;UN> CHESEBROUGH OFFERS TO SELL BASS Chesebrough-Pond\'s Inc, recently\nacquired by a unit of Unilever N.V., said it is offering to\nsell its Bass shoe division, as a result of an\nongoing evaluation of the long-term direction of its\nbusinesses.\n    The diversified maker of health and beauty aids, said it\nacquired Falmouth, Maine-based G.H. Bass and Co in 1978, when\nthe company reported annual sales of 59 mln dlrs. Bass is known\nfor its high-quality casual shoes.\n   [...]
+'CONTINENTAL &lt;GIC> SEES 1987 NET UP FROM TAX LAW Continental Corp said the fresh start\nprovision of the Tax Reform Act of 1986 may add 1.30 to 1.60 to\n1987 earnings per share.\n    The insurance holding company had net earnings of 449.6 mln\ndlrs, or, or 7.42 per share, in 1986.\n    John Loynes, Continental chief financial officer, said the\nfresh start provision allowed the company to discount opening\ntax reserves to January 1, 1987, which released deferred taxes\ninto earnings.\ [...]
+'FORD MOTOR CO OF CANADA LTD &lt;FC> 4TH QTR NET Shr 8.17 dlrs vs 55 cts\n    Net 67.7 mln vs 4.5 mln\n    Revs 3.67 billion vs 3.54 billion\n    Year\n    Shr 12.19 dlrs vs 24.00 dlrs\n    Net 101.1 mln vs 199.0 mln\n    Revs 14.33 billion vs 13.35 billion\n    Note: 90 pct owned by Ford Motor Co &lt;F>\n Reuter\n&#3;',0
+'ROYAL BANK OF CANADA 1ST QTR SHR 88 CTS VS 1.22 DLRS\n ',0
+'BELGIAN MINISTER SEES NEW ACCORD ON EC OILS/FATS Belgian Foreign Trade Minister Herman\nDe Croo said he believed there would be a compromise within the\nEuropean Community, EC, on its proposed tax on vegetable fats\nand oil, averting a pledged tough trade response by the United\nStates.\n    De Croo, in Washington for talks with Administration\nofficials and Congressional leaders, said at a news conference\nthere is a battle within the community on the tax on fats and\noils used in the  [...]
+'ANITEC IMAGE TECHNOLOGY CORP &lt;ANTC> 2ND QTR NET Shr 33 cts vs 28 cts\n    Net 3,722,000 vs 3,103,000\n    Sales 33.0 mln vs 31.8 mln\n    Avg shrs 11.2 mln vs 11.1 mln\n    1st half\n    Shr 68 cts vs 58 cts\n    Net 7,585,000 vs 6,346,000\n    Sales 65.9 mln vs 61.3 mln\n    Avg shrs 11.2 mln vs 11.0 mln\n    NOTE: Share adjusted for three-for-two October 1986 stock\nsplit.\n Reuter\n&#3;',0
+'DUTCH MONEY MARKET DEBT BARELY CHANGED IN WEEK Loans and advances from the Dutch\ncentral bank to the commercial banks were barely changed at\n12.9 billion guilders in the week up to and including March 2,\nthe central bank weekly return showed.\n    The Treasury\'s account with the bank dropped 1.3 billion\nguilders. Dealers said a larger amount of funds in the form of\ninterest and repayments on state loans went out than came in\nthe form of tax payments to the state.\n    Notes in ci [...]
+'DASA CORP &lt;DASA> YEAR NET Shr profit three cts vs loss 11 cts\n    Net profit 507,000 vs loss 1,823,000\n    Revs 11.2 mln vs 204,000\n Reuter\n&#3;',0
+'GROUP TRIMS MATERIAL SCIENCES &lt;MSC> STAKE An investor group led by Central\nNational-Gottesman Inc, a New York investment firm, and its\nexecutive vice president, Edgar Wachenheim, said they cut their\nstake in Material Sciences Corp to less than five pct.\n    In a filing with the Securities and Exchange Commission,\nthe group said it sold 19,500 Material Sciences common shares\nbetween Feb 11 and 19 at prices ranging from 24.00 to 27.648\ndlrs a share, leaving it with 239,500 share [...]
+'FED SETS 1.5 BILLION DLR CUSTOMER REPURCHASE, FED SAYS\n ',0
+'ADC TELECOMMUNICATIONS INC &lt;ADCT> 1ST QTR NET Periods ended Jan 31\n    Shr 28 cts vs 35 cts\n    Net 2,374,000 vs 2,987,000\n    Sales 35.2 mln vs 34 mln\n    Backlog 36.8 mln vs 33.9 mln\n Reuter\n&#3;',0
+'TYLAN CORP &lt;TYLN> TO SELL FURNACE PRODUCT LINE Tylan Corp aid it has retained\nthe investment banking firm Kahn and Harris to sell its furnace\nproduct line.\n    The company said it has already been contacted by several\npotential buyers.\n    In 1986, Tylan\'s furnace product shipments in the U.S.\nrepresented 10.3 mln dlrs of the company\'s total net sales of\n28.4 mln dlrs.\n Reuter\n&#3;',0
+'&lt;ROYAL BANK OF CANADA> 1ST QTR JAN 31 NET Shr basic 88 cts vs 1.22 dlrs\n    Shr diluted 83 cts vs 1.10 dlrs\n    Net 114,108,000 vs 140,389,000\n    Avg shrs 107.5 mln vs 100.5 mln\n    Loans 66.4 billion vs 65.9 billion\n    Deposits 82.8 billion vs 84.4 billion\n    Assets 98.7 billion vs 96.7 billion.\n Reuter\n&#3;',0
+'FED ADDS RESERVES VIA CUSTOMER REPURCHASES The Federal Reserve entered the U.S.\nGovernment securities market to arrange 1.5 billion dlrs of\ncustomer repurchase agreements, a Fed spokesman said.\n    Dealers said Federal funds were trading at 6-1/4 pct when\nthe Fed began its temporary and indirect supply of reserves to\nthe banking system.\n Reuter\n&#3;',0
+'SUPRADUR COS INC &lt;SUPD> YEAR NET Oper shr 1.58 dlrs vs 77 cts\n    Oper net 1,648,000 vs 817,000\n    Sales 25.7 mln vs 20.5 mln\n    NOTE: Net excludes discontinued operations gain 451,000\ndlrs vs loss 4,310,000 dlrs.\n Reuter\n&#3;',0
+'U.S. SETS CORN DEFICIENCY PAYMENT HALF PIK CERTS The upcoming five-month deficiency\npayments to corn and sorghum farmers will be made half in cash\nand half in generic commodity certificates, a senior\nAgriculture Department official told Reuters.\n    Around 300 mln dlrs of the in-kind certificates, or\n\"certs,\" will be mailed out to farmers around March 15 or 16,\nTom von Garlem, Assistant Deputy Administrator for USDA\'s state\nand county operations, said.\n    The decision to mak [...]
+'WALLACE COMPUTER SERVICES INC &lt;WCS> 2ND QTR NET Shr 69 cts vs 64 cts\n    Net 7,046,000 vs 6,492,000\n    Sales 85.7 mln vs 79.6 mln\n    Six Mths\n    Shr 1.28 dlrs vs 1.19 dlrs\n    Net 13,098,000 vs 12,006,000\n    Sales 166.3 mln vs 153.3 mln\n    NOTE: Periods end January 31, 1987 and 1986, respectively.\n Reuter\n&#3;',0
+'AMERICAN VANGUARD CORP &lt;AMGD> YEAR NET Shr 57 cts vs 27 cts\n    Net 1,002,000 vs 470,000\n    Sales 15.9 mln vs 12.0 mln\n    Note: 4th qtr data not available\n Reuter\n&#3;',0
+'NORTH AMERICAN BIOLOGICALS INC &lt;NBIO> 4TH QTR Oper shr one ct vs three cts\n    Oper net 99,000 vs 327,000\n    Revs 12.1 mln vs 8,800,000\n    Avg shrs 15.5 mln vs 11.3 mln\n    Year\n    Oper shr six cts vs 11 cts\n    Oper net 841,000 vs 956,000\n    Revs 44.1 mln vs 34.4 mln\n    Avg shrs 15.3 mln vs 8,519,677\n    NOTE: Net excludes tax credits of 299,000 dlrs vs 29,00000\ndlrs in quarter and 809,000 dlrs vs 71,000 dlrs in year.\n Reuter\n&#3;',0
+'OMNICOM GROUP INC &lt;OMCM> 4TH QTR NET Shr profit 27 cts vs profit 51 cts\n    Net profit 6,600,000 vs profit 12,231,000\n    Revs 211.7 mln vs 193.4 mln\n    12 mths\n    Shr loss 17 cts vs profit 1.27 dlrs\n    Net loss 4,077,000 vs profit 30,142,000\n    Revs 753.5 mln vs 673.4 mln\n    NOTE: in qtr ended 1986 the company recognized expenses of\n5,948,000 for restructing the combined operations of BBDO,\nDoyle Dane Bernbach and Needham Harper Worldwide in August 1986\nbefore tax gai [...]
+' &#2;\nCORRECTION - ASHTON-TATE ITEM\n    In Torrance, Calif., item ASHTON-TATE &lt;TATE> 4TH QTR NET,\nplease read 1986 quarter average shares as 24.7 mln, not 200.7\nmln.     \n Reuter\n&#3;\n\n',0
+'CHILEAN CONSUMER PRICES RISE 1.7 PCT IN FEBRUARY Chile\'s consumer price index rose 1.7\npct in February to 562.01 (December, 1978 equals 100) after\nincreases of 2.0 pct in January and 0.9 pct in February 1986,\nthe government\'s National Statistics Institute said.\n    Inflation as measured by the index rose to 17.5 pct over\nthe 12 months to the end of February, compared with 16.6 pct\nlast month and 24.5 pct to the end of February, 1986.\n    In the first two months of the year, inf [...]
+'COPPER STUDY GROUP CONSIDERED AT GENEVA MEETING Major copper producing and consuming\ncountries are considering a U.S. proposal to set up a study\ngroup to review the world copper market, delegates said.\n    The U.S. initiative was introduced last December at a\nmeeting held here under the auspices of the United Nations\nConference on Trade and Development (UNCTAD).\n    The U.S., the world\'s largest copper consumer and second\nbiggest producer after Chile, has proposed setting up a b [...]
+'JAPAN BUYS 5,000 TONNES CANADIAN RAPESEED Japan bought 5,000 tonnes of Canadian\nrapeseed overnight at an undisclosed price for April shipment,\ntrade sources said.\n Reuter\n&#3;',0
+'ROYAL BANK/CANADA SEES HIGHER 1987 LOAN LOSSES &lt;Royal Bank of Canada> said it\nestimates 1987 loan losses at one billion dlrs, a 25 mln dlr\nincrease over last year.\n    Royal Bank said it set its provisions \"given the continued\ndebt-servicing problems ... in the North American energy\nindustry and the uncertain outlook for energy prices,\" and also\ncontinued to add to its general provisions for loans to\ntroubled borrower countries.\n    The bank\'s loan loss provision for the f [...]
+'PANTERA &lt;PANT> AND PIZZA &lt;PZA> AGREE TO MERGE Pantera\'s Corp said it agreed in\nprinciple to acquire Pizza Inn Inc in a cash and stock\ntransaction.\n    Under terms of the proposed transaction, each Pizza Inn\nshare can be exchanged for either three dlrs in cash plus the\nlesser of 1.4 shares of Pantera\'s common stock or 11.50 dlrs\nmarket value of Pantera\'s stock, or four dlrs in cash plus a\nunit consisting of one share of Pantera\'s stock and a\nnon-transferrable right to r [...]
+'SWISS MONEY MARKET PAPER YIELDS 3.286 PCT The Swiss Federal Government\'s new series\nof six-month money market certificates raised 177.5 mln Swiss\nfrancs at an issue price of 98.401 pct to give an average\nannual yield of 3.286 pct, the National Bank said.\n    Payment date is March 5.\n    The last series of six-month paper issued in January raised\n159.6 mln francs at 98.392 pct to give an average yield of\n3.251 pct.\n REUTER\n&#3;',0
+'NIGERIA, GUINEA SET UP IRON ORE FIRM WITH LIBERIA Nigeria and Guinea agreed to set up a new\ncompany with Liberia to carry out the 14-year-old\nMifergui-Nimba iron ore project, an official communique said.\n    The communique was issued after two days of talks here\nbetween Guinean natural resources minister Ousmane Sylla and\nNigerian minister of mines and power Bunu Sheriff Musa.\n    Originally, Guinea held 50 pct in the project and Nigeria\n16.2 pct with firms from several other cou [...]
+'DISTRIBUTED LOGIC CORP &lt;DLOG> 1ST QTR LOSS Qtr ended Jan 31\n    Shr loss nine cts vs profit 13 cts\n    Net loss 231,256 vs profit 341,730\n    Revs 2,793,677 vs 3,676,296\n Reuter\n&#3;',0
+'CANADA INDUSTRIAL PRODUCTION UP 2.53 PCT Canadian industrial production rose 2.53\npct in December after falling 0.51 pct in November, Statistics\nCanada said.\n    The federal agency said year-over-year production was off\n0.65 pct in December, compared with a decline of 1.65 pct in\nNovember.\n Reuter\n&#3;',0
+'LIFETIME &lt;LFT> TO BUY SHARES OF NIPPON LACE Lifetime Corp said it agreed to buy\nfive mln shares, or 16 pct, of &lt;Nippon Lace Co Ltd> for 3.28\ndlrs a share, or 16.5 mln dlrs.\n    It said it plans to enter the health care business in\nJapan.\n    In addition, it said &lt;Koba Electronics Co Ltd>, an\naffiliate of Lifetime, will buy four mln unissued shares, or a\n12 pct stake, of Nippon for 20 mln dlrs or five dlrs a share.\n    The company said Ohta Shoji, chief executive officer [...]
+'INTERMEDICS INC &lt;ITM> 1ST QTR NET Oper shr 26 cts vs 18 cts\n    Oper net 2,877,000 vs 1,363,000\n    Revs 44.3 mln vs 40.8 mln\n    Avg shrs 10.9 mln vs 10.5 mln\n    NOTE: prior qtr excludes loss 475,000, or five cts per\nshare, for discontinued operations for the sale of subsidiaries\nIntermedics Intraocular Inc, Electronics Inc, and Intermedics\nInfusaid Inc.\n    Excludes 1987 qtr 1,694,000 operating loss carryforwards vs\n78,000 qtr prior.\n Reuter\n&#3;',0
+'BENEFICIAL CORP TO SELL INSURANCE UNIT, REMOVING COMPANY FROM INSURANCE BUSINESS\n ',0
+'FORD CANADA CUTS ANNUAL DIVIDEND BY SIX DLRS TO SIX DLRS CASH A SHARE\n ',0
+'PAINE WEBBER RESIDENTIAL REALTY INC &lt;PWM> DIV Qtrly 25 cts vs 16 cts\n    Pay March 30\n    Record March 13\n    NOTE: Prior qtr is for two months operation, October and\nNovember and represents a parital dividend.\n Reuter\n&#3;',0
+'OMNICOM GROUP &lt;OMCM> SETS REGULAR PAYOUT Qtlry div 24.5 cts vs 24.5 cts\n    Pay April 6\n    Record March 16\n Reuter\n&#3;',0
+'KNUTSON MORTGAGE &lt;KNMC> SEES STRONG SECOND QTR Knutson Mortgage Corp said it\nexpects strong earnings performance for its initial fiscal\nsecond quarter earnings ending March 31 since going public in\nSeptember 1986.\n    Albert Holderson, Knutson chairman, said he expects\nearnings of about 40 cts per share for the quarter as a result\nof a strong mortgage business during the quarter.\n    Knutson earlier declared a quarterly dividend of 10 cts a\nshare, versus 10 cts a share prior, [...]
+'DANISH RESERVES RISE IN FEBRUARY Denmark\'s net official reserves rose\nto 36.34 billion crowns in February from 28.00 billion in\nJanuary, against a revised 45.85 billion in February 1986, the\ncentral bank said in its monthly balance sheet report.\n    Total net reserves, including reserves held by commercial\nand major savings banks, rose to 38.26 billion crowns from\n30.11 billion in January compared with a revised 35.99 billion\nin February last year.\n    The bank said provisional [...]
+'INTERMEDICS INC &lt;ITM> 1ST QTR FEB ONE NET Oper shr 26 cts vs 18 cts\n    Oper net 2,877,000 vs 1,838,000\n    Revs 44.3 mln vs 40.8 mln\n    NOTE: Current 1st qtr oper net excludes operating loss\ncarryforward of 1,694,000 or 16 cts per share. 1986 1st qtr\noper net excludes loss carryforward of 78,000 dlrs or one ct\nper share and loss from discontinued operations of 475,000\ndlrs.\n Reuter\n&#3;',0
+'CARME INC &lt;CAME> 2ND QTR JAN 31 NET Shr nine cts vs one ct\n    Net 247,489 vs 27,301\n    Sales 1,933,107 vs 796,613\n    Six mths\n    Shr 21 cts vs five cts\n    Net 565,106 vs 121,997\n    Sales 3,781,970 vs 1,778,110\n Reuter\n&#3;',0
+'WILLCOX AND GIBBS INC &lt;WG> 4TH QTR NET Shr 42 cts vs 76 cts\n    Net 2.3 mln vs 3.3 mln\n    Revs 72.3 mln vs 59.8 mln\n    Year\n    Shr 1.48 dlrs vs 2.59 dlrs\n    Net 7.6 mln vs 11.1 mln\n    Revs 261.7 mln vs 224.7 mln\n    NOTE: 1985 net includes extraordinary gain of 1.5 mln dlrs\nor 35 cts per share in 4th qtr and 5.1 mln or 1.19 dlrs for the\nyear.\n   \n Reuter\n&#3;',0
+'OMNICOM GROUP INC &lt;OMCM> 4TH QTR NET Shr profit 27 cts vs profit 51 cts\n    Net profit 6,600,000 vs profit 12.2 mln\n    Revs 211.7 mln vs 193.4 mln\n    Qtly div 24.5 cts vs 24.5 cts\n    Avg shrs 24.2 mln vs 23.8 mln\n    Year\n    Shr loss 17 cts vs profit 1.27 dlrs\n    Net loss 4,077,000 vs profit 30.1 mln\n    Revs 753.5 mln vs 673.4 mln\n    Avg shrs 24.4 mln vs 23.7 mln\n    NOTE: Qtly div payable April six to holders of record March\n16.\n    1986 4th qtr and year net inclu [...]
+'FORD MOTOR CO OF CANADA LTD&lt;FC> CUTS ANNUAL DIV Annual div six dlrs vs 12 dlrs prior\n    Pay March 19\n    Record March 13\n    Note: 1986 payout includes two dlrs a share extra dividend\n    1985 payout includes four dlrs a share extra dividend\n Reuter\n&#3;',0
+'TOTAL U.S. COPPER STOCKS LOWER IN JANUARY Total copper stocks held by U.S. rod\nmills and refiners (including wirebars, cathodes, scrap, rod\nand in-process material) dropped to 155,467,000 lbs at the end\nof January from 203,513,000 lbs at the end of December, the\nAmerican Bureau of Metal Statistics said.\n    Rod stocks held by refiners and rod mills decreased to\n61,384,000 lbs in January from 69,986,000 lbs in December.\n    Cathode inventories at rod mills fell to 86,456,000 lbs i [...]
+'ONE OFFER FOR SRW WHEAT ON CALL SESSION, NO MILO One offer but no bid was posted for SRW\nwheat on the call session at the St Louis Merchants Exchange\ntoday. There were no bids or offers for milo.\n    June 15-July 15 bill of lading for wheat was offered at 17\nover July, no comparison, no bid.\n Reuter\n&#3;',0
+'UNITED HEALTHCARE CORP &lt;UNIH> 4TH QTR NET Shr 10 cts vs 13 cts\n    Net 1,553,000 vs 1,541,000\n    Revs 73.1 mln vs 32.1 mln\n    Avg shrs 15,474,000 vs 12,316,000\n    Year\n    Shr 47 cts vs 24 cts\n    Net 7,241,000 vs 2,835,000\n    Revs 216.2 mln vs 101.2 mln\n    Avg shrs 15,492,000 vs 11,921,000\n    Note: Net income includes extraordinary profit from\nrecognition of tax loss carryforward of 920,000 dlrs, or six\ncts a share, in 1986 year, and of 785,000 dlrs, or seven cts a\ [...]
+'RAYTECH CORP &lt;RAY> 4TH QTR DEC 28 NET Shr profit 78 cts vs loss 1.05 dlrs\n    Net profit 2,336,000 vs loss 3,002,000\n    Revs 26.0 mln vs 26.7 mln\n    Year\n    Shr profit 1.59 dlrs vs loss 6.35 dlrs\n    Net profit 4,688,000 vs loss 18.2 mln\n    Revs 113.5 mln vs 112.4 mln\n    NOTE: 1986 4th qtr and yr includes loss carryfoward of\n534,000 dlrs and 1,662,000 dlrs, respectively.\n Reuter\n&#3;',0
+'DATAMAG INC &lt;DMAG> 1ST QTR DEC 31 LOSS Net loss 92,623 vs profit 11,209\n    Sales 93,483 vs 189,388\n    Note: per share data not available, as company went public\nin January, 1987.\n Reuter\n&#3;',0
+'ROYAL BANK SEES IMPROVED RESULTS &lt;Royal Bank of Canada>, in reporting a\n19 pct drop in first quarter earnings, said it expects to\nreport improved results in future earnings periods.\n    \"Healthy consumer credit growth, record fee-based income,\nhighly profitable securities and foreign exchange trading, and\na solid capital position...combined with the restraint of\nnon-interest expenses, should lead to improved results in the\nperiods ahead,\" chairman Allan Taylor said in a stat [...]
+'BELGIAN SAYS EC WOULD REACT TO TEXTILE BILL Belgian Foreign Trade Minister Herman\nDe Croo said if Congress passed legislation curbing world\ntextile imports the only way the European Community (EC) could\nreact was to retaliate.\n    De Croo said at a news conference \"if you limit textile\nimports, you will re-orient textiles to Europe.\"\n    And that he said would trigger EC taxes on U.S. goods.\n    Congress passed a textile bill two years ago, but it was\nvetoed by President Reaga [...]
+'KAY CORP &lt;KAY> 4TH QTR NET Oper shr 25 cts vs 1.21 dlrs\n    Oper net 1,366,000 vs 6,287,000\n    Revs 251.3 mln vs 107.1 mln\n    Year\n    Oper shr 1.10 dlrs vs 1.06 dlrs\n    Oper net 5,552,000 vs 4,982,000\n    Revs 827.5 mln vs 434.4 mln\n    NOTE: Oper net excludes results of Kay Jewelers Inc, a\nformer subsidiary. On Dec 31, 1986 company distributed\nremaining 80.4 pct interest in subsidiary to Kay Corp holders.\n    1985 amts restated in connection with company\'s\ndistributi [...]
+'ROSTENKOWSKI SAYS HE WILL OPPOSE PROTECTIONIST TRADE BILL IN U.S. HOUSE\n ',0
+'PANTASOTE INC &lt;PNT> 4TH QTR LOSS Oper shr loss four cts vs loss 33 cts\n    Oper net loss 154,000 vs loss 1,301,000\n    Sales 30.0 mln vs 27.0 mln\n    Year\n    Oper shr profit 60 cts vs loss 16 cts\n    Oper net profit 2,364,000 vs loss 608,000\n    Sales 113.5 mln vs 132.8 mln\n    NOTE: Net excludes extraordinary charges from provision for\nroofing products warranties and costs from sale of\nprinting/laminate division of 320,000 dlrs vs 10.3 mln dlrs in\nquarter and 4,3200,000 d [...]
+'ROSTENKOWSKI OPPOSES PROTECTIONIST TRADE BILL House Ways and Means Committee\nChairman Dan Rostenkowski said Congress must avoid a temptation\nto pass a protectionist trade bill this year.\n    In remarks prepared for delivery before the National Press\nClub, Rostenkowski, D-Ill., predicted major trade legislation\nwill be sent to President Reagan by the end of this year.\n    But he warned that his \"conciliatory message\" on the trade\nbill did not mean he would oppose a proposal that [...]
+'IMTEC &lt;IMTC> GETS MERGER OFFER Imtec Inc said some\nshareholders of Computer Identics Inc &lt;CIDN> have proposed a\nmerger of the two companies.\n    The company said the shareholders had previously expressed\ndissatisfaction with Computer Identics\' management and had\ninformed Computer Identics that the present board no longer had\nthe support of a majority of shares held.\n    It said the shareholders had called for the resignation of\nall but one of Computer Identics\' directors [...]
+'KAY JEWELERS INC &lt;KJI> 4TH QTR NET Shr 1.62 dlrs vs 1.33 dlrs\n    Net 10.3 mln vs 8,459,000\n    Revs 127.5 mln vs 95.7 mln\n    Year\n    Shr 1.52 dlrs vs 1.20 dlrs\n    Net 9,669,000 vs 7,481,000\n    Revs 278.1 mln vs 232.00 mln\n          \n Reuter\n&#3;',0
+'ICO PACT UNLIKELY BY AUTUMN - ITALIAN ADVISER The prospects of the\nInternational Coffee Organization (ICO) reaching an agreement\non coffee export quotas before September appear dim, Alberto\nHesse, former president of the European Coffee Federation,\nsaid.\n    \"There is no real goodwill in certain delegations to go to\nquotas,\" Hesse, who advises the Italian Foreign Affairs Ministry\non coffee issues, told Reuters. He declined to name the\ndelegations.\n    A special meeting betwee [...]
+'WALL STREET STOCKS/ANACOMP INC &lt;AAC> Anacomp Inc, one of the most actively\ntraded NYSE issues, rose today as at least one analyst expected\nearnings to be boosted by its planned acquisition of a\nmicrographics company.\n    Anacomp rose 1/2 to 6-3/4 on volume of 950,000 shares after\ntrading as high as seven earlier.\n    Howard Harlow, analyst at Whale Securities Corp, said\nAnacomp\'s earnings for fiscal 1987 ending September 31 could be\ndoubled to 80 cts a share from the 40 cts  [...]
+'CORRECTED - LIFETIME&lt;LFT> TO BUY NIPPON LACE SAHRES Lifetime Corp said it agreed to buy\nfive mln shares or 16 pct of &lt;Nippon Lace Co Ltd> for 3.28 dlrs\na share, or 16.5 mln dlrs.\n    It said it plans to enter the health care business in\nJapan.\n    In addition, it said &lt;Koba Electronics Co Ltd>, an\naffiliate of Nippon, will buy four mln unissued shares, or a 12\npct stake, of Lifetime for 20 mln dlrs or five dlrs a share. -\nCorrects to show Nippon\'s affiliate Koba buying [...]
+'U.K. EXPORTS BODY GETS NEW EXECUTIVE DIRECTOR Export Credits Guarantee Department has\nnamed Malcolm Stephens, director of export finance at Barclay\'s\nBank Plc and a former career civil servant at ECGD for 17\nyears, to the post of executive director, a department\nspokesman said.\n    Stephens replaces Jack Gill, who is retiring early aged 57.\n    A drop in the ECGD\'s business volume and a rise in its debt\nto the Exchequer have led to criticism in Parliament in recent\nyears.\n    [...]
+'OILS/FATS STOCKS SEEN FALLING SHARPLY IN 1986/87 Visible stocks of 17 oils and fats are\nprobably peaking now and are likely to fall sharply by October\n1 this year, the Oil World newsletter said.\n    Oil World forecast that stocks of oils and fats may be cut\nto only 9.8 mln tonnes at the end of this season, compared with\n10.6 mln a year earlier.\n    Its survey covered  13 oils -- soy, cotton, groundnut, sun,\nrape, sesame, corn, olive, coconut, palmkernel, palm, lin and\ncastor  -- [...]
+'COLOMBIA TRADERS SAY NEW COFFEE STRATEGY VITAL Coffee producing countries must quickly\nmap out a fresh common strategy following the failure of the\nInternational Coffee Organization, ICO, to reach agreement on\nexport quotas, Gilberto Arango, president of Colombia\'s private\ncoffee exporters\' association, said.\n    Arango told Reuters that the most intelligent thing now\nwould be to seek a unifying stand from producers, including\nBrazil, in order to map out a strategy to defend pr [...]
+'TENDER LOVING &lt;TLCI>, STAFF &lt;STAF> EXTEND PACT Tender Loving Care Health Care\nServices Inc said it and Staff Buildiers Inc have extended the\nterm of their merger agreement until May 31.\n    Tender Loving Care also said &lt;Norrell Corp> agreed not to\nacquire any additional Staff Builders shares until September\n30, adding Norrell was paid 750,000 dlrs for the standstill\narrangement. \n    Tender Loving Care said it agreed to buy the 610,000 Staff\nBuilders common held by Norr [...]
+'SOVIET SOYMEAL IMPORTS SEEN RISING IN 1987 Soviet imports of soymeal may reach or\nexceed one mln tonnes between January and September this year,\nthe Oil World newsletter said.\n    Oil World said it was likely the Soviet Union would reduce\nsoybean imports and step up significantly its imports of meal.\n    At least 500,000 tonnes of soymeal may be shipped from the\nEuropean Community and South America in the January/March\nquarter, with additional large quantities likely to be import [...]
+'COLOMBIA TO SELL SUGAR, LONDON TRADERS SAY Colombia is holding a snap selling tender\ntonight for one cargo of world market raw sugar, traders said.\n    The sugar is for March 15/April 15 shipment and bids are\nbeing sought based on the New York May delivery futures\ncontract, they added.\n Reuter\n&#3;',0
+'VARIAN &lt;VAR> IN TALKS WITH PHILIPS ELECTRONICS Varian Associates Inc said it\nis holding discussions with Philips Electronics regarding the\npurchase of Philips\' broadcast transmission unit in the United\nKingdom, Pye TVT Limited.\n    Pye TVT designs and manufactures broadcast transmission\nequimpment, specializing in television frequencies.\n Reuter\n&#3;',0
+'BUTLER &lt;BTLR> TO SELL PART OF UNIT Butler Manufacturing Co said it\nagreed in principal to sell part of its controls division to\nEnercon Data Corp of Minneapolis.\n    Terms of the sale were not disclosed.\n    The transaction, expected to be closed in March, involves\nthe controls division\'s energy management and power line\ncarrier product lines.\n    Butler said costs associated with the sale were included in\nits restructuring charge taken in last year\'s fourth quarter,\nand w [...]
+'FERTILITY AND GENETICS RESEARCH &lt;BABY> 1ST QTR Periods ended December 31\n    Shr loss 10 cts vs loss seven cts\n    Net loss 316,289 vs loss 189,140\n    Revs 61,762 vs 8,934\n Reuter\n&#3;',0
+'ROSTENKOWSKI RELUCTANT TO BACK TAX HIKE House Ways and Means Committee\nChairman Dan Rostenkowski said he would be reluctant to back\nthe tax increase if it did not have President Reagan\'s support.\n    He told a National Press Club luncheon there would be a\nnumber of tax proposals that could be debated if Reagan sought\na tax increase to help balance the budget.\n    However, he said he would prefer to leave the tax rates\nenacted in last year\'s tax reform bill unchanged.\n    There [...]
+'&lt;MAGELLAN CORP> SETS MERGER WITH BALZAC Magellan Corp said it has entered into a\nletter of intent to acquire Balzac Investments Inc in a\ntransaction that will result in former Balzac shareholders\nowning about 83 pct of the combined company.\n    The company said on completion of the merger, the combined\ncompany wopuld be known as Power-Cell Inc and be engaged in the\ndevelopment of Balzac technology related to its Quick Charge\nproduct for charging auto batteries.\n    The transa [...]
+'UNITED COS FINANCIAL CORP &lt;UNCF> 4TH QTR NET Shr 68 cts vs 78 cts\n    Net 2,432,179 vs 2,236,471\n    Revs 50.8 mln vs 35.1 mln\n    Avg shrs 3,600,000 vs 2,850,000\n    Year\n    Shr 2.82 dlrs vs 3.35 dlrs\n    Net 10.0 mln vs 9,554,658\n    Revs 177.5 mln vs 138.1 mln\n    Avg shrs 3,567,123 vs 2,850,000\n Reuter\n&#3;',0
+'BRISTOL-MYERS CO &lt;BMY> SETS QUARTERLY Qtly div 70 cts vs 70 cts prior\n    Pay May One\n    Record April Three\n Reuter\n&#3;',0
+'AMERICAN AIRCRAFT CORP BUYS PRIVATE FIRM &lt;American Aircraft Corp> said it\nhas acquired a 51 pct interest in privately-held &lt;Hunter\nHelicopter of Nevada, Inc>.\n    The purchase was made for an undisclosed amount of American\nAircraft stock, the company said.\n    It said the acquisition will increase shareholder equity in\nAmerican Aircraft to 45 cts per share from 18 cts per share.\n    Hunter Helicopter builds two-passenger helicopters that\nretail for about 50,000 dlrs.\n Reu [...]
+'AID CORP &lt;AIDC> RAISES QUARTERLY DIVIDEND Qtly div nine cts vs eight cts in prior qtr\n    Payable March 31\n    Record March 13\n Reuter\n&#3;',0
+'INTERNATIONAL TECHNOLOGY &lt;ITX> MAKES ACQUISITION International Technology Corp\nsaid it has purchased &lt;Western Emergency Services Inc> in a\npooling-of-interests transaction.\n    International Technology, a hazardous materials management\ncompany, said it purchased Western Emergency, an environmental\nservices firm, to offer a broader range of environmental\nservices to the Gulf Coast area.\n Reuter\n&#3;',0
+'&lt;D.H. HOWDEN AND CO LTD> INCREASES DIVIDEND Semi-annual 30 cts vs 25 cts prior\n    Pay June 30\n    Record June 15\n Reuter\n&#3;',0
+'&lt;CO-STEEL INC> 4TH QTR NET Oper shr 25 cts vs 25 cts\n    Oper net 6,322,000 vs 4,660,000\n    Revs 189.1 mln vs 174.7 mln\n    Avg shrs 23.5 mn vs 17.1 mln\n    Year\n    Oper shr 1.04 dlrs vs 14 cts\n    Oper net 21,929,000 vs 3,629,000\n    Revs 760.2 mln vs 674.8 mln\n    Avg shrs 20.5 mln vs 17.1 mln\n    Note: Qtr shr and net exclude tax gain of 4,573,000 dlrs or\n17 cts share, versus gain of 17,259,000 dlrs or 1.02 dlrs share\n    Year shr and net exclude tax gain of 15,992,00 [...]
+'PERU COFFEE CROP UNAFFECTED BY RAINS Recent heavy rains have not affected the\nPeru coffee crop and producers are looking forward to a record\nharvest, the president of one of Peru\'s four coffee cooperative\ngroups said.\n    Justo Marin Ludena, president of the Cafe Peru group of\ncooperatives which accounts for about 20 pct of Peru\'s exports,\ntold Reuters a harvest of up to 1,800,000 quintales (46 kilos)\nwas expected this year. He said Peru exported 1,616,101\nquintales in the yea [...]
+'WILLCOX AND GIBBS INC &lt;WG> 4TH QTR NET Oper shr 42 cts vs 41 cts\n    Oper net 2,322,000 vs 1,785,000\n    Sales 72.3 mln vs 59.8 mln\n    Avg shrs 5,527,000 vs 4,355,000\n    Year\n    Oper shr 1.48 dlrs vs 1.40 dlrs\n    Oper net 7,637,000 vs 5,973,000\n    Sales 261.7 mln vs 224.7 mln\n    Avg shrs 5,165,000 vs 4,277,000\n    NOTE: 1985 operating net excludes gains of 1,523,000 dlrs,\nor 35 cts a share, in quarter and 5,090,000 dlrs, or 1.19 dlrs\na share, in year from tax carryfo [...]
+'GE &lt;GE> PROFIT OUTLOOK AIDED BY ENGINE ORDER One of General Electric Co\'s biggest\nbusinesses, aircraft engines, will ride a wave of increasing\nprofits into 1991 because of a new contract worth 650 mln dlrs,\nWall Street analysts said.\n    Previously, it was expected the business would peak and\ndecline at some point in the next five years. The improved\noutlook results from AMR Corp\'s &lt;AMR> decision to order 40 new\nplanes powered by CF6-80C2 GE engines.\n    \"Creative finan [...]
+'FRENCH EXPORTERS SEE HIGHER WHEAT SALES TO CHINA French exporters estimated that around\n600,000 tonnes of French soft wheat has been sold to China for\ndelivery in the 1986/87 (July/June) year.\n    Around 300,000 tonnes were exported to China between July\n1986 and February this year.\n    Another 100,000 to 150,000 tonnes will be shipped during\nthis month and around the same amount in April, they said.\n    France sold around 250,000 tonnes of soft wheat to China in\n1985/86, accord [...]
+'BUCKHORN INC &lt;BKN> 4TH QTR LOSS Oper shr loss 1.24 dlrs vs profit 19 cts\n    Oper net loss 1,965,000 vs profit 646,000\n    Revs 10.5 mln vs 11.6 mln\n    Avg shrs 1,741,000 vs 3,581,000\n    12 mths\n    Oper shr loss 1.55 dlrs vs profit 42 cts\n    Oper net loss vs profit 2,051,000 vs 1,492,000\n    Revs 42.9 mln vs 45.5 mln\n    Avg shrs 1,816,000 vs 3,581,000\n    NOTE: prior qtr excludes loss 229,000, or seven cts per\nshare, for discontinued operations.\n    1986 qtr excludes  [...]
+'BUCKHORN INC &lt;BKN> SEES HIGHER PROFITS IN 1987 Buckhorn Inc said itd nine\nmillion dlr backlog for orders and a less expensive operating\nenvironment should yield significant levels of operating\nprofits for 1987.\n    Buckhorn, a manufacturer of reusable plastic shipping and\nstorage containers, recorded 2,051,000, or 1.55 dlrs per share,\noperating net loss for 1986.\n    Buckhorn said the year\'s results included a 4,250,000\nnon-recurring expense incurred to complete major restru [...]
+'ALCAN, BERTONE MAKE ALUMINUM STRUCTURE CAR Alcan Aluminium Ltd said it joined with\nCarrozzeria Bertone S.P.A. to exhibit Alcan\'s technology in\naluminum structured vehicles at Geneva\'s international auto\nsalon.\n    Alcan said it and Bertone have built several Bertone X1/9\nsports cars with structures of adhesively bonded sheet\naluminum. It said the bodies were made on presses used for\nBertone\'s steel-structured sports cars.\n    Alcan said two of the cars are currently being tes [...]
+'CCR VIDEO 1ST QTR NOV 30 NET Shr 2-1/5 cts vs nil\n    Net 156,726 vs 11,989\n    Sales 1,157,883 vs 890,138\n\n Reuter\n&#3;',0
+'DEL E. WEBB INVESTMENT &lt;DWPA> 4TH QTR NET Shr eight cts vs 16 cts\n    Net 188,000 vs 354,000\n    Revs 538,000 vs 594,000\n    Year\n    Shr 31 cts vs 28 cts\n    Net 692,000 vs 617,000\n    Revs 2,640,000 vs 906,000\n    (Del E. Webb Investment Properties Inc)\n Reuter\n&#3;',0
+'U.S. EXPORTERS REPORT 104,000 TONNES OF  CORN SOLD TO UNKNOWN DESTINATIONS FOR 1986/87\n ',1
+'F.W. WOOLWORTH\'S &lt;Z> 1986 PROFITS RISE 21 PCT The specialty retailing area continues\nto pay off for F.W. Woolworth Co, once known only as a five and\ndime store chain, which said its 1986 income rose 21 pct.\n    It was the fourth consecutive year of profit increases for\nthe New York-based retailer which was founded over 100 years\nago.\n    Woolworth\'s 1986 income rose to 214 mln dlrs or 3.25 dlrs\nper share compared with 1985\'s profit of 177 mln or 2.75 dlrs\nper share. Revenu [...]
+'ROYAL RESOURCES CORP &lt;RRCO> 2ND QTR DEC 31 LOSS Shr loss 72 cts vs loss 1.48 dlrs\n    Net loss 4,466,006 vs loss 9,091,688\n    Revs 608,181 vs 1,280,727\n    Six Mths\n    Shr loss 77 cts vs loss 1.51 dlrs\n    Net loss 4,752,455 vs loss 9,265,457\n    Revs 1,444,149 vs 2,791,188\n   \n Reuter\n&#3;',0
+'CANADA ECONOMY EXPECTED TO GROW MODERATELY Canadian economic growth is expected to\nslow further in 1987, but an improved the trade picture should\nkeep the country from recession, economists said.\n    \"The economy is ready for about a 2.0 pct rate of growth\nover the course of 1987,\" said Carl Beigie, Chief Economist at\nDominion Securities Pitfield Ltd.\n    Statistics Canada reported that gross domestic product,\ngrew 3.1 pct in 1986, the fourth year of continuous expansion,\nbut  [...]
+'USDA REPORTS CORN SOLD SOLD TO UNKNOWN The U.S. Agriculture Department said\nprivate U.S. exporters reported sales of 104,000 tonnes of corn\nto unknown destinations for shipment in the 1986/87 marketing\nyear.\n    The marketing year for corn began September 1, it said.\n Reuter\n&#3;',1
+'AMERICAN AIRCRAFT BUYS INTO HELICOPTER BUILDER &lt;American Aircraft Corp> said it\nhas acquired a 51 pct interest in privately-owned &lt;Hunter\nHelicopter of Nevada Inc> for an undisclosed amount of stock.\n    An American Aircraft official said the company has an\noption to acquire the remaining 49 pct.\n    Hunter Helicopter is in the business of building a two\npassenger helicopter retailing for about 50,000 dlrs each which\nis certified by the Federal Aviation Administration. The\ [...]
+'PREMIER INDUSTRIAL CORP &lt;PRE> REGULAR DIVIDEND Qtly div 11 cts vs 11 cts in prior qtr\n    Payable April 10\n    Record March 23\n Reuter\n&#3;',0
+'INTERNATIONAL TECHNOLOGY &lt;ITX> BUYS FIRM International Technology Corp\nsaid it has purchased privately-held Western Emergency Service\nInc in a stock transaction.\n    Western Emergency, an environmental services firm, has\nannual sales of between one and two mln dlrs, compared to\nInternational Technology\'s roughly 240-mln-dlr annual sales, a\nspokesman for International Technology said.\n Reuter\n&#3;',0
+'CONTINENTAL GENERAL INSURANCE &lt;CGIC> 4TH QTR NET Shr 20 cts vs 21 cts\n    Net 783,564 vs 806,278\n    Year\n    Shr 89 cts vs 86 cts\n    Net 3,443,392 vs 3,242,588\n    Note:Full company name is Continental General Insurance Co\n    Net includes profit from sale of securities of 155,410\ndlrs, or four cts a share, and 192,896 dlrs, or five cts a\nshare, respectively, in 1986 qtr and year, and of 12,879 dlrs,\nor nil per share, in 1985 qtr. Net for 1985 year includes loss\nfrom sale [...]
+'MARGAUX CONTROLS INC &lt;MARGX> 3RD QTR LOSS Shr loss 1.60 dlrs vs loss 45 cts\n    Net loss 9,883,000 vs loss 2,744,000\n    Revs 1,309,000 vs 3,289,000\n    Nine mths\n    Shr loss 2.29 dlrs vs loss 98 cts\n    Net loss 14.1 mln vs loss 6,008,000\n    Revs 4,577,000 vs 11.9 mln\n    NOTE: Current periods include loss of 7.5 mln dlrs from\ndiscontinued operations.\n Reuter\n&#3;',0
+'MERCHANTS GROUP INC &lt;MRCH> 4TH QTR OPER NET Oper shr profit 21 cts vs loss 2.13 dlrs\n    Oper net profit 456,000 vs loss 2,454,000\n    Revs 16.3 mln vs 13.1 mln\n    Year\n    Oper shr 1.39 dlrs vs loss 2.41 dlrs\n    Oper net profit 1,815,000 vs loss 2,779,000\n    Revs 58.0 mln vs 43.8 mln\n    NOTE: 1986 4th qtr and yr oper net exclude realized\ninvestment gains of 279,000 dlrs and 1,013,000 dlrs,\nrespectively, which includes provision for income taxes of\n238,000 dlrs and 863, [...]
+'CONTINENTAL GENERAL &lt;CGIC> SETS STOCK DIVIDEND Continental General Insurance Co\nsaid its board of directors declared a 10 pct stock dividend on\ncommon shares, payable April one to shareholders of record\nMarch 16.\n    The company yesterday paid a quarterly cash dividend of\n2-1/2 cts a share, unchanged from the previous quarter, to\nshareholders of record February 20.\n Reuter\n&#3;',0
+'MARGAUX CONTROLS INC &lt;MARGX> 3RD QTR DEC 28 LOSS Shr loss 1.60 dlrs vs loss 45 cts\n    Net loss 9,883,000 vs loss 2,744,000\n    Revs 1,309,000 vs 3,289,000\n    Nine mths\n    Shr loss 2.29 dlrs vs loss 98 cts\n    Net loss 14.1 mln vs loss 6,008,000\n    Revs 4,577,000 vs 11.9 mln\n    Note: 1986 net losses inlcude 7,507,000-dlr charge from\ndiscontinued operations of building management system sold to\nCetek System Inc on Jan 30, 1987.\n Reuter\n&#3;',0
+'HARRIS CUTS STAKE IN BELL INDUSTRIES &lt;BI> Harris Associates L.P., a Chicago\ninvestment advisory limited partnership, said it lowered its\nstake in Bell Industries Inc to 1,015,800 shares, or 18.7 pct\nof the total outstanding, from 1,083,800 shares, or 20.0 pct.\n    In a filing with the Securities and Exchange Commission,\nHarris said it sold 68,000 Bell common shares between Dec 18\nand Feb 20 at prices ranging from 20.25 to 25.24 dlrs each.\n    Harris said its dealings in Bell s [...]
+'GOODYEAR &lt;GT> CHAIRMAN CRITICIZES CORPORATE RAIDS The chairman of Goodyear Tire and Rubber\nCo, a concern that survived a recent hostile takeover bid,\ncharged that \"terrorists in three-piece suits\" are undermining\nthe nation\'s industrial base.\nIn a speech to a meeting of south Florida business executives,\nGoodyear Chairman Robert Mercer lashed out at corporate raiders\nand takeover specialists, accusing them of causing serious harm\nto the companies they target.\n  \"Their int [...]
+'&lt;TIVERTON PETROLEUMS LTD> NINE MTHS DEC 31 NET Shr six cts vs five cts\n    Net 459,131 vs 289,433\n    Revs 1,808,832 vs 1,680,240\n Reuter\n&#3;',0
+'MORE INTERMEDIATE U.S. WHEAT CREDITS FOR MOROCCO The Commodity Credit Corporation has\napproved an additional 45.0 mln dlrs under its interemdiate\nexport credit guarantee program, GSM-103, for sales of U.S.\nwheat to Morocco, the U.S. Agriculture Department said.\n    The action increases Morocco\'s cumulative fiscal year 1987\nprogram for wheat under GSM-103 to 75.0 mln dlrs.\n    The credit terms extended for exports under the program\nmust be in excess of three years but no more tha [...]
+'MCA INC &lt;MCA> SETS REGULAR QTRLY PAYOUT Qtrly div 17 cts vs 17 cts prior\n    Pay April 13\n    Record March 25\n Reuter\n&#3;',0
+'SOVIET GRAINS SEEN ENTERING SPRING ON SHAKY NOTE Soviet winter grains could be off to\na faulty start this spring after enduring an usually dry fall\nand cold winter, weather and crop analysts said.\n    Prospects for another near-record grain harvest in the\nSoviet Union appear dim at this point, but it is premature to\nforecast any major crop problems, analysts said.\n    But the situation bears careful watching over the next six\nweeks and will ultimately impact the Soviet grain supp [...]
+'ALCAN (AL) TO CLOSE WEST GERMAN SMELTER (Alcan Aluminium Ltd) is closing its\naluminum smelter in Ludwigshafen, West Germany this June due to\nhigh operating costs, an Alcan spokesman said.\n    The smelter, near Frankfurt, had annual capacity of about\n44,000 metric tons but was operating at about half that in\nJanuary, spokesman Fernand Leclerc said.\n    Leclerc said Alcan decided it would cost too much to\nmodernize the plant.\n    He said there is a possibility the company will sel [...]
+'ROYAL RESOURCES CORP &lt;RRCO> 2ND QTR DEC 31 LOSS Shr loss 72 cts vs loss 1.48 dlrs\n    Net loss 4,466,006 vs loss 9,091,688\n    Revs 608,181 vs 1,280,727\n    Avg shrs 6,194,000 vs 6,155,461\n    First half\n    Shr loss 77 cts vs loss 1.51 dlrs\n    Net loss 4,752,455 vs loss 9,265,457\n    Revs 1,444,149 vs 2,791,188\n    Avg shrs 6,174,731 vs 6,155,461\n    NOTE: Losses include charges of 4.0 mln dlrs in both 1986\nperiods vs 14.4 mln dlrs in both 1985 periods for write-down of\n [...]
+'HANSON TRUST &lt;HAN> COMPLETES KAISER PURCHASE Hanson Trust PLC said Kaiser Cement\nshareholders today approved the previously announced merger\nagreement making Kaiser Cement an indirect wholly owned unit of\nHanson Trust.\n    Hanson said that promptly following the filing of the\ncertificate of merger Kaiser Cement common shares will be\ndelisted from the New York Stock Exchange.\n    Hanson also said, in accordance with the merger agreement\nKasier Cement also has redeemed all outs [...]
+'OIL PRICES RISE ON SAUDI EFFORT Crude oil prices rallied today, moving\nover 17.00 dlrs a barrel because of Saudi Arabia\'s determined\neffort to support prices, analysts said.\n    \"The Saudis and other OPEC nations are jawboning the market,\nhoping to restore confidence and prices and to do this without\nanother meeting,\" said Sanford Margoshes, oil analyst with\nShearson Lehman Brothers Inc.\n    \"But OPEC is not out of the woods yet by a longshot due to\nseasonal declines in dema [...]
+'TREASURY BALANCES AT FED ROSE ON FEB 27 Treasury balances at the Federal\nReserve rose on Feb 27 to 3.482 billion dlrs from 1.538 billion\ndlrs the previous business day, the Treasury said in its latest\nbudget statement.\n    Balances in tax and loan note accounts fell to 21.334\nbillion dlrs from 25.164 billion dlrs on the same respective\ndays.\n    The Treasury\'s operating cash balance totaled 24.816\nbillion dlrs on Feb 27 compared with 26.702 billion dlrs on Feb\n26.\n Reuter\n&#3;',0
+'KASLER CORP &lt;KASL> 1ST QTR JAN 31 NET Shr profit three cts vs loss seven cts\n    Net profit 161,000 vs loss 367,000\n    Revs 24.3 mln vs 26.5 mln\n Reuter\n&#3;',0
+'COFFEE MAY FALL MORE BEFORE NEW QUOTA TALKS Coffee prices may have to fall even lower\nto bring exporting and importing countries once more round the\nnegotiating table to discuss export quotas, ICO delegates and\ntraders said.\n    The failure last night of International Coffee\nOrganization, ICO, producing and consuming countries to agree\nexport quotas brought a sharp fall on international coffee\nfutures markets today with the London May price reaching a\n4-1/2 year low at one stage [...]
+'SEAMAN FURNITURE &lt;SEAM> IN STOCK SPLIT Seaman Furniture Co Inc said\nits board declared a two-for-one split of the company\'s\noutstanding stock.\n    It said holders of its common will receive one additional\nshare for each share held as of March 20. It said certificates\nrepresenting additional shares will be distributed as soon as\npossible after April 10.\n Reuter\n&#3;',0
+'&lt;SCOTT\'S HOSPITALITY INC> 3RD QTR JAN 31 NET Oper shr eight cts vs eight cts\n    Oper net 5,219,000 vs 4,377,000\n    Revs 214.9 mln vs 182.5 mln\n    NINE MTHS\n    Oper shr 51 cts vs 51 cts\n    Oper net 29.6 mln vs 27.9 mln\n    Revs 634.5 mln vs 569.3 mln\n    1986 net excludes extraordinary gain of 8,031,000 dlrs or\n15 cts shr.\n    1987 net reflects three-for-one stock split in 2nd qtr and\nissue of 1.5 mln subordinate voting shares in 1st qtr.\n Reuter\n&#3;',0
+'TELXON CORP &lt;TLXN> SEES HIGHER REVENUES Telxon Corp reported it expects\nrevenues for the quarter ending March 31 to be between 26 to 28\nmln dlrs.\n    The company said earnings per share for the period should\nbe between 23 cts to 26 cts.\n    \"The company is making an announcement at this time in\nresponse to analysts fourth quarter revenues and earnings per\nshare estimates of 29 mln to 32 mln and 24 cts to 30 cts,\nrespecivtely,\" said Raymond Meyo, president and chief executiv [...]
+'ROYAL RESOURCES &lt;RRCO> SETS VOTE ON SALE Royal Resources Corp said its board set\nan April 21 a shareholders\' meeting to vote on the sale of its\noil and gas properties for 3,650,000 dlrs, an increase in\nauthorized common to 20 mln shares from 15 mln and the change\nof the company\'s name to Royal Gold Inc.\n    The company has agreed to sell its oil and gas properties\nto &lt;Victoria Exploration N.L.> of Perth, Western Australia.\n    Royal Resources also said the sale of its int [...]
+'AMERICAN VANGUARD CORP &lt;AMGD> YEAR NET Shr 57 cts vs 27 cts\n    Net 1,002,000 vs 470,000\n    Sales 15.9 mln vs 12.0 mln\n    Note: 4th qtr figures not given.\n   \n Reuter\n&#3;',0
+'HARPER INTERNATIONAL INC &lt;HNT> 3RD QTR JAN 31 Shr 12 cts vs 19 cts\n    Net 369,000 vs 358,000\n    Revs 7,076,000 vs 6,712,000\n    Avg shrs 3,050,000 vs 1,850,000\n    Nine mths\n    Shr 53 cts vs 63 cts\n    Net 1,523,000 vs 1,158,000\n    Revs 22.6 mln vs 20.7 mln\n    Avg shrs 2,852,198 vs 1,850,000\n Reuter\n&#3;',0
+'WITCO CORP &lt;WIT> SETS REGULAR QTLY PAYOUT Qtly div 28 cts vs 28 cts prior\n    Pay April one\n    Record March 13\n Reuter\n&#3;',0
+'PANCANADIAN TO SELL NORTH SEA PROPERTIES, UNIT TO WHITEHALL FOR CASH\n ',0
+'&lt;MDS HEALTH GROUP LIMITED> IN QTLY PAYOUT Qtly div six cts vs six cts prior\n    Pay April one\n    Record March 23\n Reuter\n&#3;',0
+'HARPER INTERNATIONAL INC &lt;HNT> 3RD QTR NET Qtr ended Jan 31\n    Shr 12 cts vs 19 cts\n    Net 369,000 vs 358,000\n    Revs 7,076,000 vs 6,712,000\n    Avg shrs 3,050,000 vs 1,850,000\n    Nine mths\n    Shr 53 cts vs 63 cts\n    Net 1,523,000 vs 1,158,000\n    Revs 22.6 mln vs 20.7 mln\n    Avg shrs 2,852,198 vs 1,850,000\n Reuter\n&#3;',0
+'BURST AGRITECH INC &lt;BRZT> YEAR NOV 30 LOSS Net loss 705,496 vs loss 182,766\n    Sales 642,590 vs 1,126,315\n Reuter\n&#3;',0
+'API SAYS DISTILLATE STOCKS OFF 4.4 MLN BBLS, GASOLINE OFF 30,000, CRUDE UP 700,000\n ',0
+'ALCAN TO CLOSE WEST GERMAN SMELTER Alcan Aluminium Ltd is closing its\naluminum smelter in Ludwigshafen, West Germany this June due to\nhigh operating costs, an Alcan spokesman said.\n    The smelter, near Frankfurt, had annual capacity of about\n44,000 tonnes but was operating at about half that in January,\nspokesman Fernand Leclerc said.\n    Leclerc said Alcan decided it would cost too much to\nmodernize the plant.\n    He said there is a possibility the company will sell the\nsmelt [...]
+'PANCANADIAN TO SELL BRITISH INTERESTS &lt;PanCanadian Petroleum Ltd>\nsaid it agreed to sell its working interest in its North Sea\nproperties and its British unit, Canadian Pacific Oil and Gas\nof Canada Ltd, to Whitehall Petroleum Ltd, a private British\ncompany.\n    PanCanadian, 87 pct-owned by Canadian Pacific Ltd &lt;CP>,\nsaid it would receive 1.7 mln British pounds cash (3.5 mln\nCanadian dlrs) at closing, expected in two to three months.\n    It said the deal is subject to appr [...]
+'TELXON &lt;TXLN> SEES SLIGHTLY HIGHER 4TH QTR NET Telxon Corp said it expects\nper-share earnings for its fourth quarter ending March 31 to be\nabout 23 cts to 26 cts on revenues of 26 mln dlrs to 28 mln\ndlrs.\n    For the year-ago quarter, the company earned 22 cts a\nshare, adjusted for a three-for-two stock split, on revenues of\n24.2 mln dlrs.\n    The company said it made the earnings estimate in response\nto analysts\' forecasts, which it said called for per-share\nearnings of 24 [...]
+'REID-ASHMAN &lt;REAS> TO DIVEST TEST PRODUCT UNIT Reid-Ashman Inc said it has\ndecided to divest its test products division, located in Santa\nClara.\n    The company said it will entertain offers through March 30.\nIt also said Steven Reid, a company founder and president of\nthe test division, has made an offer to purchase the unit.\n    The company\'s test division accounted for about ten pct of\ntotal revenues in the year ended Sept 30, 1986 and is currently\nrunning a revenue rate  [...]
+'PACIFIC LIGHTING COPR &lt;PLT> QUARTERLY DIVIDEND Qtly div 87 cts vs 87 cts\n    Pay Feb 17\n    Record Jan 20\n Reuter\n&#3;',0
+'CETEC CORP &lt;CEC> QUARTERLY DIVIDEND Qtly div five cts vs five cts\n    Pay May 22\n    Record May 8\n Reuter\n&#3;',0
+'API SAYS DISTILLATE, GAS STOCKS OFF IN WEEK Distillate fuel stocks held in\nprimary storage fell by 4.4 mln barrels in the week ended Feb\n27 to 127.10 mln barrels from 131.50 mln the previous week, the\nAmerican Petroleum Institute (API) said.\n    In its weekly statistical bulletin, the oil industry trade\ngroup said gasoline stocks fell 30,000 barrels to 252.92 mln\nbarrels from a revised 252.95 mln, while crude oil stocks rose\n700,000 barrels to 329.38 mln from a revised 328.68 mln [...]
+'JONES MEDICAL INDUSTRIES INC &lt;JMED> 4TH QTR NET Shr six cts vs five cts\n    Net 199,037 vs 135,587\n    Sales 1,594,895 vs 1,368,959\n    Avg shrs 3.1 mln vs 2.5 mln\n    Year\n    Shr 25 cts vs 19 cts\n    Net 695,398 vs 446,426\n    Sales 5,785,365 vs 4,520,781\n    Avg shrs 2.8 mln vs 2.4 mln\n Reuter\n&#3;',0
+'MAUI LAND AND PINAPPLE CO INC QUARTERLY DIVIDEND Qtly div 12-1/2 cts vs 12-1/2 cts\n    Pay March 31\n    Record Feb 27\n Reuter\n&#3;',0
+'U.S. WINE EXPORTS ROSE 15 PER CENT LAST YEAR Exports of American wine rose 14.9\nper cent last year to a total of 7.2 million gallons, the Wine\nInstitute said.\n    The San Francisco-based promotional group said 95 per cent\nof the exported wine was from California and the top three\nmarkets were Canada, Japan and Britain.\n    Japan, which edged out Britain as the leading importer of\nAmerican wines in 1985, continued in second place.\n    Canadian imports rose 3.2 per cent to 2.6 mil [...]
+'USDA TO REDUCE CITRUS ESTIMATING PROGRAM the U.S. Agriculture Department\'s\nNational Agricultural Statistics Services (NASS) said it will\nchange its citrus estimate program for California and Arizona,\nstarting in 1988.\n    NASS said it will discontinue California forecasts for\nlemons during December, February, March, May and June and for\ngrapefruit and tangerines for those months plus November.\n    Forecasts for lemons will be issued in October, November,\nJanuary, April and July [...]
+'&lt;TRIMAC LTD> YEAR NET Shr nine cts vs six cts\n    Net 3,500,000 vs 2,500,000\n    Revs 294.0 mln vs 351.5 mln\n    Note: 1986 year includes tax gain of 1,700,000 dlrs\n Reuter\n&#3;',0
+'OPPENHEIMER UPS VIACOM &lt;VIA> STAKE TO 7.7 PCT Oppenheimer and Co, a New York\nbrokerage firm, said it raised its stake in Viacom\nInternational Inc to the equivalent of 2,709,600 shares, or 7.7\npct of the total, from 2,232,400 shares, or 6.3 pct.\n    In a filing with the Securities and Exchange Commission,\nOppenheimer said it bought a net 477,200 Viacom common shares\nbetween Jan 19 and March 3 at prices ranging from 40.50 to an\naverage of 49.31 dlrs each. Part of its stake is in [...]
+'EMPI INC &lt;EMPI> 4TH QTR LOSS Shr loss 25 cts vs profit 11 cts\n    Net loss 446,005 vs profit 185,325\n    Sales 2.4 mln vs 2.5 mln\n    12 mths\n    Shr loss 16 cts vs profit 41 cts\n    Net loss 282,305 vs profit 709,787\n    Sales 10.1 mln vs nine mln\n Reuter\n&#3;',0
+'U.S. SENATE PANEL COULD CONSIDER TRADE MEASURE The U.S. Senate Agriculture Committee\nmay take up a bill tomorrow that would strengthen the\nactivities of U.S. agricultural trade teams in selected\ndeveloping countries, committee staff said.\n    The measure, sponsored by committee Chairman Patrick Leahy\n(D-Vt.) and Sen. John Melcher (D-Mont.), would establish trade\nteams of between six and nine persons drawn from federal\nagencies and private voluntary organizations, staff said.\n    [...]
+'FLORIDA PUBLIC &lt;FPUT> SPLITS STOCK, UPS DIV Florida Public Utilities Co\nsaid its board declared a three-for-two stock split on its\ncommon stock.\n    It said holders of record April 15 will receive one\nadditional share May one for each two shares held.\n    The company also said it raised the dividend on its common\nstock by two cts to 33 cts a share on a pre-split basis.\n    The dividend is payable April one to holders of record\nMarch 18.\n Reuter\n&#3;',0
+'CITY INVESTING TRUST &lt;CNVLZ> SETS CASH PAYOUT City Investing Co Liquidating Trust\nsaid it declared a cash distribution of 25 cts a unit, payable\nApril 10 to unit-holders of record April one.\n    The trust last paid a stock distribution of General\nDevelopment Corp &lt;GDB> shares in July.\n Reuter\n&#3;',0
+'FCOJ SUPPLIES SIGNIFICANTLY ABOVE YEAR AGO-USDA Total supply of frozen concentrated\norange juice (FCOJ) in 1986/87 is expected to be significantly\nabove year-earlier levels, even with carry-in stocks well below\nthe previous season, the U.S. Agriculture Department said.\n    In a summary of its Fruit Situation Report, the Department\nsaid Florida\'s imports of FCOJ, mostly from Brazil, have shown\nsharp gains to date.\n    The Department noted the price of FCOJ will probably be\naffec [...]
+'FLORIDA COMMERCIAL BANKS INC &lt;FLBK> DIVIDEND Qtly div 14 cts vs 19 cts prior\n    Pay March 31\n    Record March 16\n    Note: Quarterly dividend for prior quarter included special\npayout of five cts a share.\n Reuter\n&#3;',0
+'&lt;TIMMINCO LTD> YEAR NET Oper shr 33 cts vs 33 cts\n    Oper net 3,330,000 vs 2,969,000\n    Revs 95.9 mln vs 92.0 mln\n    Avg shrs 8,610,068 vs 7,603,219\n    Note: 1986 net excludes extraordinary gain of 577,000 dlrs\nor seven cts shr vs yr-ago gain of 71,000 dlrs or one ct shr.\n Reuter\n&#3;',0
+'&lt;UNITED FIRE AND CASUALTY> 4TH QTR NET Shr profit 31 cts vs loss 20 cts\n    Net profit 1,044,424 vs loss 515,425\n    Avg shrs 3,406,841 vs 2,544,531\n    Year\n    Shr profit 2.83 dlrs vs profit 42 cts\n    Net profit 8,811,142 vs profit 1,058,503\n    Avg shrs 3,111,464 vs 2,544,531\n    Note: Full company name is United Fire and Casualty Co\n    Net includes realized gains of 93,551 dlrs and 764,177\ndlrs, respectively, in 1986 qtr and year, and of 92,075 dlrs\nand 972,935 dlrs,  [...]
+'&lt;POWER CORP OF CANADA> 4TH QTR NET Oper shr 30 cts vs 24 cts\n    Oper net 38,686,000 vs 28,384,000\n    Revs 42.3 mln vs 31.2 mln\n    Year\n    Oper shr 1.05 dlrs vs 94 cts\n    Oper net 136,594,000 vs 110,831,000\n    Revs 153.3 mln vs 125.1 mln\n    Note: Fourth quarter results exclude extraordinary and\nother items which raised final 1986 net to 62,485,000 dlrs or\n49 cts a share and lowered final 1985 net to 18,941,000 dlrs or\n16 cts a share in 1985.\n    Full-year results exc [...]
+'U.S. CORN, SORGHUM PAYMENTS 50-50 CASH/CERTS Eligible producers of 1986 crop U.S.\ncorn and sorghum will receive an estimated 600 mln dlrs in\ndeficiency payments -- 50 pct in generic commodity certificates\nand 50 pct in cash, the U.S. Agriculture Department said.\n    It said corn producers will receive about 515 mln dlrs and\nsorghum producers about 85 mln dlrs.\n    Only the cash portion of the payments will be subject to\nthe 4.3 pct reduction in compliance with the Gramm-Rudman\nb [...]
+'USDA PROPOSES NAME CHANGES IN BEEF GRADE The U.S. Agriculture Department\nproposes to rename the \"USDA Good\" grade of beef to \"USDA Select.\"\n    The department said the proposed change is in response to a\npetition from Public Voice for Food and Health Policy and would\npresent a more positive image of this grade of beef and help\ncalorie-conscious consumers select leaner cuts of meat.\n    Under current rules, the \"good\" grade of meat has less\nmarbling and fat than the \"prime\ [...]
+'VENDO CO &lt;VEN> 4TH QTR LOSS Shr loss 1.48 dlrs vs loss 36 cts\n    Net loss 4,036,000 vs loss 983,000\n    Sales 16.6 mln vs 17 mln\n    12 mths\n    Shr loss 1.88 dlrs vs profit 71 cts\n    Net loss 5,113,000 vs profit 1,904,000\n    Sales 85.4 mln vs 88.5 mln\n    Note: Prior year net includes extraordinary loss of 298,000\ndlrs in qtr and extraordinary profit of 718,000 dlrs in year.\n Reuter\n&#3;',0
+'AUSTRALIAN GOVERNMENT TO PAY SUBSIDIES--USDA The Australian Government will likely\nreimburse the Australian Wheat Board, AWB, about 132 mln (U.S.)\ndlrs to pay wheat farmers for their 1986/87 crop, the U.S.\nAgriculture Department said.\n    In its report on Export Markets for U.S. Grains, the\ndepartment said the sharp fall in world wheat prices has\nreduced the export sales revenue of the AWB to levels\ninsufficient to cover its breakeven export price estimated at\naround 98 dlrs per [...]
+'LAWSON PRODUCTS INC &lt;LAWS> RAISES QTLY PAYOUT Qtly div seven cts vs six cts prior\n    Pay April 17\n    Record April three\n Reuter\n&#3;',0
+'KANEB ENERGY &lt;KEP> MAY OMIT FUTURE PAYOUTS Kaneb Energy Partners Ltd said it may be\nforced to omit or lower future quarterly cash distributions\nbecause of a contract dispute with two major customers and the\ncontinued slump in oil and gas prices.\n    The partnership said, however, that it will pay a regular\nquarterly distribution of 60 cts a unit on April 15 to holders\nof record March 31.\n Reuter\n&#3;',0
+'BRASCAN LTD &lt;BRS.A> 4TH QTR NET Shr 50 cts vs 46 cts\n    Net 43.0 mln vs 34.8 mln\n    YEAR\n    Shr 1.55 dlrs vs 1.38 dlrs\n    Net 136.8 mln vs 112.9 mln\n    Note: Holding company.\n Reuter\n&#3;',0
+'FLORIDA COMMERCIAL BANKS INC &lt;FLBK> QTLY DIV Qtly div 14 cts vs 14 cts prior\n    Payable March 31\n    Record March 16\n Reuter\n&#3;',0
+'&lt;CHAUVCO RESOURCES LTD> YEAR NET Shr 16 cts vs 35 cts\n    Net 476,000 vs 929,000\n    Revs 3,000,000 vs 3,600,000\n Reuter\n&#3;',0
+'JAPAN CUTTING CHINA CORN COMMITMENTS - USDA Japanese traders have apparently\nsharply reduced commitments to buy Chinese corn over the next\nsix months due to high prices, the U.S. Agriculture Department\nsaid.\n    In its World Production and Trade Report, the department\nsaid traders indicated China may lack supplies or be unwilling\nto sell at current low world prices.\n    If the reports are confirmed, China\'s major export\ndestinations such as USSR, Japan, and South Korea, could\n [...]
+'SAUDI SUCCESS SEEN IN CURBING OPEC PRODUCTION Saudi Arabia will succeed in pressuring\nother members of the Organization of Petroleum Exporting\nCountries to stay within their production quotas, said Morgan\nStanley Group managing director John Wellemeyer.\n    Wellemeyer, speaking to reporters at an offshore oil\nengineering conference, also said he expected OPEC nations to\nattempt to hold prices under 20 dlrs a barrel for several years\nto keep industrial demand for residual fuel oil [...]
+'EC DRIVING TO CAPTURE BRAZIL WHEAT MARKET - USDA The European Community, EC, sold\n75,000 tonnes of soft wheat at a subsidized price of between 85\nand 89 dlrs per tonne FOB for March delivery in a continuing\nbid to establish itself in the Brazilian wheat market, the U.S.\nAgriculture Department said.\n    The sale sharply undercut the U.S. offer of 112 dlrs per\ntonne FOB for 33,000 tonnes of wheat, it said in its latest\nreport on Export Markets for U.S grains.\n    EC sales to Brazi [...]
+'ZENITH LABS &lt;ZEN> WILL REPORT 4TH QTR LOSS Zenith Laboratories Inc said the\ncompany will report a fourth quarter loss, and the amount will\nbe determined on completion of its year end audit. The company\ndid not elaborate further.\n    For the third quarter ended Sept 30, 1986, Zenith reported\na loss of 3,451,000 dlrs or 16 cts per share, adjusted for a\nMay 1986 2-for-1 stock split.\n    The company also said it received Food and Drug\nAdministration approval to market Cefadroxil, [...]
+'MANDATORY PRODUCTION CONTROLS DEBATED AT APC Delegates to the American Pork Congress\nwill decide whether or not they want mandatory production\ncontrols when they vote on the official pork producer policy\nwednesday, the National Pork Producers Council said.\n    The American Pork Congress, APC, delegates, listened to\nboth sides of the question when former Iowa Congressman Berkley\nBedell and Bill Lesher, USDA Assistant Secretary for Economics\nfor the years 1981 to 1985 debated at th [...]
+'TAIWAN BUYS 25,000 TONNES U.S. SOYBEANS Taiwan bought 25,000 tonnes U.S.\nsoybeans today at 203.40 dlrs a tonne, C and F, Gulf, for May\n15-30 shipment, private export sources said.\n Reuter\n&#3;',0
+'TAIWAN PASSES ON U.S. CORN, WILL RETENDER Taiwan passed on its tender overnight\nfor 25,000 tonnes of U.S. corn and 49,000 tonnes U.S. sorghum,\nprivate export sources said.\n    Taiwan will retender for the corn, for May 15-30 shipment\nif via the Gulf, or June 1-15 via Pacific northwest, on March\n6, but has not rescheduled a tender for sorghum, they said.\n Reuter\n&#3;',1
+'BANGLADESH PASSES ON TENDER FOR SOFT WHEAT Bangladesh passed on its weekend tender\nfor 100,000 tonnes of optional origin soft wheat, private\nexport sources said.\n Reuter\n&#3;',0
+'PORK CHECKOFF REFUNDS LESS THAN EXPECTED The National Pork Board announced at the\nAmerican Pork Congress convention in Indianapolis that refunds\nunder the legislative checkoff program are running less than\nexpected.\n    The Board oversees collection and distribution of funds\nfrom the checkoff program that was mandated by the 1985 farm\nbill. Virgil Rosendale, a pork producer from Illinois and\nchairman of the National Pork Board, said over 2.2 mln dlrs was\ncollected in January and [...]
+'SOUTH AFRICA CORN EXPORTS COULD BE REDUCED-USDA Despite earlier optimistic\nindications, the South African corn crop is at a critical stage\nin its development and recent reports of heat stress could\nreduce production and therefore exportable supplies, the U.S.\nAgriculture Department said.\n    In its report on Export Markets for U.S. Grains, the\ndepartment said South Africa\'s corn exports in the 1986/87\n(Oct-Sept) season are estimated at 2.5 mln tonnes, up 40 pct\nfrom the previou [...]
+'&lt;DEXLEIGH CORP> SIX MTHS DEC 31 NET Shr four cts vs three cts\n    Net 4,505,000 vs 4,493,000\n    Revs 23.3 mln vs 21.4 mln\n Reuter\n&#3;',0
+'CBT TRADERS LOOK AHEAD TO SPRING PLANTINGS Chicago Board of trade grain traders and\nanalysts voiced a lot of interest in how farmers planned to\nhandle their upcoming spring plantings, prompting sales of new\ncrop months of corn and oats and purchases in new crop soybeans\nin the futures markets.\n    Professionals in the grains trade think that farmers will\nbe more willing to stick with corn acres than soybeans because\ncorn is protected by the acreage reduction program. That gives\n [...]
+'U.S. CONGRESS TO LOOK AT SOIL PROGRAM EXEMPTIONS The Senate Agriculture Committee is\nexpected to take up a bill tomorrow that would exempt from\ngovernment conservation regulations those farmers who have\nrotated alfalfa and other multiyear grasses and legumes with\nrow crops, committee staff said.\n    Under current so-called \"sodbuster\" law, farmers who planted\nalfalfa and other multiyear grasses and legumes on highly\nerodible land in the years 1981 through 1985 lose federal farm [...]
+'NATIONAL PORK BOARD ALLOCATES 2.4 MLN DLRS The National Pork Board on Monday\nallocated 2.4 mln dlrs in discretionary funds, collected from\nthe 100 pct national checkoff program, to three industry\norganizations.\n    The National Pork Producers Council, NPPC, will receive\nalmost 1.8 mln dlrs for use in the areas of food service,\nconsumer education and marketing. In addition the board\nallocated 375,000 dlrs in use in \"Pork - The Other White Meat\"\ncampaign, according to a Pork Boa [...]
+'NIPPON STEEL INVESTS 8 MLN DLRS IN GTX CORP GTX Corp said Nippon Steel Co of Japan,\nin a move to diversify into high technology, invested eight mln\ndlrs in GTX.\n    Nippon\'s move was the result of current exchange rates and\nthe revaluation of the yen, which \"have made the U.S.\nelectronics industry an attractive investment opportunity for\nJapanese corporations,\" according to a GTX statement.\n    GTX noted that Nippon is expecting sales of 27 billion dlrs\nby 1995. Of that amoun [...]
+'C.T.C. DEALER EXTENDS BID FOR CANADIAN TIRE C.T.C. Dealer Holdings Ltd said it\nextended its previously announced offer for 49 pct of &lt;Canadian\nTire Corp Ltd> to midnight on March 26.\n    CTC, a group of Canadian Tire dealers, which already owns\n17 pct of Canadian Tire, is currently appealing in an Ontario\ncourt against a previously announced Ontario Securities\nCommission ruling blocking CTC\'s 272 mln dlr bid.\n    The blocked bid did not include non-voting shareholders,\nwho h [...]
+'ROCKWELL &lt;ROK> SEES IMPROVEMENT IN 1987 Rockwell International Corp\ncontinues to expect significant improvement in 1987 results,\ndespite the somewhate disappointing performance of one of its\nbusiness segments, President Donald Beall told Reuters.\n    Rockwell reported net earnings in its first quarter ended\nDecember 31 of 149.4 mln dlrs, or 1.05 dlrs per share, compared\nto 125.8 mln dlrs, or 84 cts per share a year ago.\n    Operating earnings, however, were off about four pct, [...]
+'MICKELBERRY CORP &lt;MBC> SETS QTLY PAYOUT Qtly div 1-1/2 cts vs 1-1/2 cts prior\n    Pay March 31\n    Record March 13\n Reuter\n&#3;',0
+'SWAP DEALERS UNVEIL STANDARD CONTRACT The International Swap Dealers\nAssociation has developed the first standard form contract for\nuse by arrangers of currency and interest rate swap\ntransactions, said Thomas Jasper, the Association\'s\nco-chairman.\n    The contract, unveiled at a press conference , is expected\nto make the 300 billion dlr a year swap market more efficient,\nhe said. \"The contracts wil accelerate the process and reduce\nthe expense of swap documentation,\" Japsper [...]
+'METROPOLITAN FEDERAL &lt;MFTN> TO MAKE ACQUISITION Metropolitan Federal Savings\nand Loan Association said it has signed a letter of intent to\nacquire American Trust of Hendersonville, Tenn., for an\nundisclosed amount of cash.\n    American Trust had year-end assets of over 40 mln dlrs.\n Reuter\n&#3;',0
+'GM\'S &lt;GM> PONTIAC HAS INTEREST RATE INCENTIVES General Motors Corp said its\nPontiac Division has established an interest rate support\nincentive program, effective immediately, as an alternative to\nits current option bonus program.\n    The company said qualified buyers of Pontiacs may now\nselect special finance rates of 3.9 pct on 24-month contracts,\n7.9 pct on 36-month contracts, 8.9 pct on 48-mopnth contracts\nor 9.9 pct on 60-month contracts.  The program is scheduled to\nex [...]
+'&lt;WESTAR MINING LTD> 4TH QTR LOSS Shr not given\n    Oper loss 5,900,000 vs profit 9,300,000\n    Revs 105.3 mln vs 131.2 mln\n    Year\n    Shr not given\n    Oper loss 21.7 mln vs profit 34.7 mln\n    Revs 370.7 mln vs 515.1 mln\n    Note: 67 pct owned by &lt;British Columbia Resources\nInvestment Corp>\n    Note continued: 1986 qtr excludes extraordinary loss of 3.6\nmln dlrs versus loss of 294.0 mln dlrs in prior year\n    1986 year excludes extraordinary loss of 79.1 mln dlrs\nve [...]
+'DOW CHEMICAL &lt;DOW> TO SELL SOUTH AFRICAN UNIT Dow Chemical Co said it has\nagreed in principle to sell its industrial chemicals and\nplastics business interests in South Africa and related assets\nto a group of South African investors for undisclosed terms,\ncompleting the sale of the company\'s South African assets\n    Dow said it will continue to support its educational and\nhealth programs for South African blacks.\n Reuter\n&#3;',0
+'WILLIAMS COS &lt;WMB> YEAR LOSS Shr loss 6.97 dlrs vs profit 92 cts\n    Net loss 240 mln vs profit 31.6 mln\n    Revs 1.9 billion vs 2.5 billion\n    NOTE: 1986 includes loss of 250 mln dlrs or 7.27 dlrs a\nshare from discontinued operations and writedowns of holdings\nin Texasgulf Inc. 1985 restated.\n Reuter\n&#3;',0
+'GEONEX SEES SALES HURT BY PRODUCTION SHIFT Geonex Corp &lt;GEOX> said\nBellSouth Corp &lt;BLS> unit Southern Bell Telephone and Telegraph\nCo\'s decision to postpone the start up of new conversion\nassignments at Geonex\'s Chicago Aerial Survey unit could\nnegatively affect its fiscal 1987 revenues.\n    The company said it had expected higher revenues from the\nrecords conversion work, but it now foresees revenues from\nSouthern Bell work at about eight mln dlrs, the same level as\nlas [...]
+'NWA INC 4TH QTR SHR PROFIT 45 CTS VS LOSS NINE CTS\n ',0
+' UK INTERVENTION BD SAYS EC SOLD 60,500 TONNES WHITE SUGAR AT REBATE 43.147 ECUS.\n ',0
+'(CRIME CONTROL INC) 4TH QTR NET LOSS Shr loss 2.03 dlrs vs loss 85 cts\n    Net loss 10,742,113 vs loss 3,700,712\n    Revs 8,027,065 vs 8,689,008\n    Avg shrs 5.3 mln vs 4.4 mln\n    Year\n    Shr loss 2.45 dlrs vs loss 1.73 dlrs\n    Net loss 11,607,104 vs loss 7,442,825\n    Revs 32.6 mln vs 33.2 mln\n    Avg shrs 4.7 mln vs 4.3 mln\n    NOTE: 1986 net loss includes a fourth quarter charge of\n10.5 mln dlrs from writeoffs of certain assets.\n    1985 net loss includes a charge of ab [...]
+'U.K. INTERVENTION BOARD DETAILS EC SUGAR SALES A total 60,500 tonnes of current series\nwhite sugar received export rebates of a maximum 43.147\nEuropean Currency Units (Ecus) per 100 kilos at today\'s\nEuropean Community (EC) tender, the U.K. Intervention Board\nsaid.\n    Out of this, traders in the U.K. Received 43,500 tonnes, in\nthe Netherlands 12,000, in Denmark 4,000 and in West Germany\n1,000 tonnes.\n    Earlier today, London and Paris traders said they expected\nthe subsidy fo [...]
+'JAPAN FIRM DEVELOPS ULTRA HEAT-RESISTING RUBBER Shin-Etsu Chemical Co Ltd said it had\ndeveloped an ultra thermal resistance rubber which can be used\nat 250 centigrade continuously without losing its properties.\n    Shin-Etsu put potential demand for the product at two\ntonnes a month mainly for microwave ovens and as a sealant.\n    But increasing use of the product in parts attached to car\nengines will raise demand and the company will boost output to\n10 tonnes by March 1988 from  [...]
+'CASTLE AND COOKE INC &lt;CKE> 4TH QTR LOSS Shr loss 76 cts vs loss 21 cts\n    Net loss 31.9 mln vs loss 3,288,000\n    Revs 380.2 mln vs 311.5 mln\n    Avg shrs 47.1 mln vs 41.2 mln\n    Year\n    Shr profit 56 cts vs profit 56 cts\n    Net profit 43,925,000 vs profit 46,433,000\n    Rev 1.74 billion vs 1.60 billion\n    Avg shares 43,602,000 vs 41,014,000\n    NOTE: Fourth quarter includes after tax loss from\ndiscontinued Flexi-Van operations of 33.9 mln dlrs. Primary\nearnings per s [...]
+'VOICEMAIL INTERNATIONAL INC 4TH QTR LOSS Shr loss 21 cts vs loss 14 cts\n    Net loss 838,069 vs loss 433,875\n    Revs 1,080,068 vs 1,793,398\n    Avg shrs 4,004,826 vs 3,172,537\n    12 mths\n    Shr loss 39 cts vs 11 cts\n    Net loss 1,387,500 vs loss 334,463\n    Revs 6,456,882 vs 5,605,680\n    Avg shrs 3,542,217 vs 3,071,456\n Reuter\n&#3;',0
+'MOLECULAR GENETICS INC &lt;MOGN> 4TH QTR LOSS Oper shr loss 22 cts vs loss 13 cts\n    Oper net loss 1,712,916 vs loss 769,539\n    Revs 2,292,972 vs 2,157,895\n    Avg shrs 7,961,602 vs 6,200,293\n    Year\n    Oper shr loss 53 cts vs loss 45 cts\n    Oper net loss 3,562,151 vs 2,543,366\n    Revs 9,117,311 vs 8,251,136\n    Avg shrs 7,169,871 vs 6,186,51\n    NOTE: Current year net both periods excludes charge 430,649\ndlrs from cumulative effect of accounting change for patents.\n    [...]
+'MERRIMAC INDUSTRIES INC &lt;MMAC> 4TH QTR NET Shr five cts vs 29 cts\n    Net 92,641 vs 466,668\n    Sales 4,448,011 vs 4,122,301\n    Year\n    Shr 34 cts vs 1.16 dlrs\n    Net 553,310 vs 1,864,417\n    Sales 16.3 mln vs 16.7 mln\n Reuter\n&#3;',0
+'B.C. RESOURCES HAS AGREEMENT ON CREDIT FACILITY &lt;British Columbia\nResources Investment Corp>, earlier reporting higher full year\noperating losses, said it reached agreement in principle with\nfive lenders providing for a 360 mln dlr credit facility over a\nfour year term.\n    The company said the credit facility is extendable under\ncertain circumstances, with annual principal payments of five\nmln dlrs. The agreement is subject to certain lender approvals\nand completion of forma [...]
+'U.K. MONEY MARKET GIVEN 85 MLN STG LATE HELP The Bank of England said it had provided\nthe money market with late assistance of around 85 mln stg.\n    This brings the bank total help so far today to some 87 mln\nstg and compares with its latest forecast of a 250 mln stg\nshortage in the system today.\n REUTER\n&#3;',0
+'CML GROUP INC &lt;CMLI> 2ND QTR JAN 31 NET Shr 72 cts vs 58 cts\n    Net 4,791,000 vs 3,803,000\n    Sales 83.0 mln vs 72.0 mln\n    Avg shrs 6,668,309 vs 6,545,722\n    1st half\n    Shr 88 cts vs 70 cts\n    Net 5,872,000 vs 4,614,000\n    Sales 141.6 mln vs 121.8 mln\n    Avg shrs 6,669,488 vs 6,525,051\n Reuter\n&#3;',0
+'DRESS BARN INC &lt;DBRN> 2ND QTR JAN 24 NET Shr 30 cts vs 21 cts\n    Net 3,358,000 vs 2,276,000\n    Sales 43.3 mln vs 33.5 mln\n    1st half\n    Shr 60 cts vs 42 cts\n    Net 6,654,000 vs 4,638,000\n    Sales 86.6 mln vs 66.4 mln\n    NOTE: Share adjusted for three-for-two stock split in May\n1986.\n Reuter\n&#3;',0
+'WILLIAMS &lt;WMB> HAS 4TH QTR CHARGE Williams Cos said a fourth quarter charge\nof 250 mln dlrs from discontinued operations and writedowns\ncontributed to a 1986 net loss of 240 mln dlrs or 6.97 dlrs a\nshare against earnings of 31.6 mln dlrs or 92 cts in 1985.\n    The loss in the quarter was 232.3 mln dlrs or 6.75 dlrs\nagainst income of 10.7 mln dlrs or 31 cts a year ago. Revenues\nin the quarter fell to 521.1 mln dlrs from 716.9 mln and in the\nyear fell to 1.9 billion dlrs from 2. [...]
+'PERRY DRUG STORES INC &lt;PDS> 1ST QTR JAN 31 NET Shr 13 cts vs 37 cts\n    Net 1,300,000 vs 3,700,000\n    Sales 189 mln vs 163 mln\n Reuter\n&#3;',0
+'NWA INC &lt;NWA> 4TH QTR NET Shr profit 45 cts vs loss nine cts\n    Net profit 9.8 mln vs loss two mln\n    Revs 1.15 billion vs 631.2 mln\n    Year\n    Shr profit 3.26 dlrs vs profit 3.18 dlrs\n    Net profit 76.9 mln vs profit 73.1 mln\n    Revs 3.59 billion vs 2.66 billion\n Reuter\n&#3;',0
+'CAMCO INC &lt;CAM> SETS QUARTERLY Qtly div 11 cts vs 11 cts prior\n    Pay April 14\n    Record March 17\n Reuter\n&#3;',0
+'SENATE\'S PROXMIRE URGES CURBS ON TAKEOVERS Senate Banking Committee chairman\nWilliam Proxmire called for curbs of hostile corporate\ntakeovers and new restrictions on risk arbitrageurs.\n    \"At the very least, it is high time that we require all risk\narbitrageurs to register seperately and specifically  with the\nSecurities and Exchange Commission and that we consider\nprecluding brokerage firms and their employers from investing\nin, or owning any securities issued by, third party [...]
+'SPAIN TO LAUNCH EXPORT DRIVE Spain unveils a 105 billion peseta plan\nthis month aimed at boosting exports to reach European\nCommunity levels, director-general of the INFE export\ninstitute, Apolonio Ruiz Ligero, said.\n    \"The target is to raise exports to 20 pct of Gross Domestic\nProduct over the next four years compared to 15 pct now,\" he\nsaid.\n     \"This is the minimum prevailing level in the EC and there\nis no reason why we should lag behind countries like Italy,\nwhich ha [...]
+'ROSSIGNOL UNIT BUYS CANADIAN SKI BOOT MAKER French ski and tennis equipment maker\n&lt;Skis Rossignol> said its 97.7-pct owned subsidiary &lt;Skis\nDynastar SA> agreed to buy Canadian ski stick and boot\nmanufacturer &lt;CFAS> from &lt;Warrington Inc>.\n    A Rossignol spokesman declined to give financial details\nbut said turnover of CFAS was about 100 mln French francs,\ndoubling the Rossignol group\'s activities in the boot and stick\nsectors.\n Reuter\n&#3;',0
+'USF AND G CORP &lt;FG> RAISES QUARTERLY DIVIDEND Qtly div 62 cts vs 58 cts in the prior quarter\n    Payable April 30\n    Record March 20\n Reuter\n&#3;',0
+'&lt;BRNF LIQUIDATING TRUST> SETS DISTRIBUTIONS BRNF Liquidating Trust said\ntrustees declared a 13th liquidating dividend of 1.10 dlrs per\nunit, payable April One to holders of record of its Series A, B\nand C certificates on March 18.\n    The trust had paid a 12th liquidating distribution on\nJanuary 15 amounting to 1.750 dlrs on Series A, 1.815 dlrs on\nSeries B and 1.765 dlrs on Series C certificates.\n Reuter\n&#3;',0
+'STANLINE INC &lt;STAN> 1ST QTR JAN 31 NET Shr 20 cts vs 15 cts\n    Net 345,970 vs 257,252\n    Revs 14.0 mln vs 13.4 mln\n    NOTE: Share adjusted for five pct stock dividend in\nDecember 1986.\n Reuter\n&#3;',0
+'DOW CHEMICAL CO &lt;DOW> UNIT INCREASES PRICES The Dow Chemical Co said its\nEngineering Thermoplastics Department will increase the selling\nprices of standard grades of MAGNUM ABS resins by three cts per\npound.\n    It also announced an increase of five cts per pound for\nperformance grades of the resins.\n    Both increases are effective April 1, 1987.\n\n Reuter\n&#3;',0
+'SWIFT ENERGY CO &lt;SFY> 4TH QTR NET Shr 12 cts vs eight cts\n    Net 485,866 vs 316,193\n    Revs 1,741,508 vs 1,440,154\n    Year\n    Shr 28 cts vs 20 cts\n    Net 1,108,314 vs 778,197\n    Revs 5,073,178 vs 3,687,160\n Reuter\n&#3;',0
+'BROWNING-FERRIS INDUSTRIES INC &lt;BFI> IN PAYOUT Qtly div 20 cts vs 20 cts prior\n    Pay April 10\n    Record March 20\n Reuter\n&#3;',0
+'BUFFTON CORP &lt;BUFF> BUYS B AND D INSTRUMENTS Buffton Corp said it completed\nthe purchase of B and D Industruments Inc for two mln dlrs cash\nand 400,000 shares of common stock.\n    It said B and D is a private company headquartered in\nKansas, and had sales of 4,700,000 dlrs in 1986.\n    Buffton said the company designs and manufactures aviation\ncomputer display systems and engine instrumentation.\n Reuter\n&#3;',0
+'VEREINS- UND WESTBANK TO REORGANIZE NETWORK und Westbank AG &lt;VHBG.F> plans\nto streamline its branch network to improve its distribution of\nfinancial services, management board member Eberhard-Rainer\nLuckey said.\n    He told a news conference on 1986 results that branches in\nHamburg and Schleswig-Holstein would be merged or closed, a\nbranch in Frankfurt opened and that the bank was considering\nopening a branch in London.\n    Luckey said the bank\'s total operating profits rose [...]
+'BALDRIGE CONCERNED ABOUT KOREAN/TAIWAN DEFICITS Secretary of Commerce Malcolm\nBaldrige expressed concern about the continuing U.S. trade\ndeficits with South Korea and Taiwan and said that without an\nadjustment in exchange rates there is little likelihood of\nimprovement.\n    Speaking to the President\'s Export Council, an industry\nadvisory group, Baldrige said the trade deficit issue was under\ndiscussion with those countries.\n    \"I feel that unless we see an exchange rate adjus [...]
+'ALLWASTE &lt;ALWS> TO MAKE ACQUISITION Allwaste Inc said it has agreed in\nprinciple to acquire an air-moving and related industrial\nservices company it did not identify for up to 1,400,000 dlrs\nin common stock.\n Reuter\n&#3;',0
+'CASTLE AND COOKE &lt;CKE> TAKES FOURTH QTR LOSS Castle and Cooke Inc said it would\ntake a fourth quarter after-tax loss of 33.9 mln dlrs from the\npreviously reported sale of its Flexi-Van container leasing\nbusiness to Itel Corp &lt;ITEL> for about 215 mln dlrs.\n    Earlier, the company reported a loss for the fourth quarter\nended January 3 of 31.9 mln dlrs, or 76 cts a share, compared\nwith a loss of 3.3 mln dlrs, or 21 cts per share, in 1985\'s\nfourth quarter.\n    For the year,  [...]
+'FED EXPECTED TO ADD TEMPORARY RESERVES The Federal Reserve is expected to\nenter the U.S. Government securities market to add temporary\nreserves, economists said.\n    They expect it to supply the reserves indirectly by\narranging around 1.5 of customer repurchase agreements.\n    Federal funds, which averaged 6.22 pct yesterday, opened at\nsix pct and remained there in early trading.\n Reuter\n&#3;',0
+'CONVENIENT FOOD MART &lt;CFMI> AGREES TO BUY CHAIN Convenient Food Mart Inc said it\nhas tentatively agreed to buy all the outstanding stock of\nPlaid Pantries Inc and two associated businesses in Oregon and\nWashington for undisclosed terms.\n    Plaid Pantries owns and operates 161 convenience stores in\nthe Portland and Seattle areas. The other business are two\ncompanies involved in the wholesale distribution of groceries\nand health and beauty aids, it said.\n    Closing is expecte [...]
+'WAL-MART STORES INC 4TH QTR SHR 65 CTS VS 47 CTS\n ',0
+'MARINE MIDLAND &lt;MM> BUYS BROKERAGE ASSETS Marine Midland Banks Inc said it has\nacquired the customer account base of New York discount\nbrokerage firm Ovest Financial Services Inc for undisclosed\nterms to expand its discount brokerage operations in the\nNortheastern U.S.\n    It said it will combine Ovest\'s activities with those of\nits Marine Midland Brokerage Service unit.\n Reuter\n&#3;',0
+'U.S. TREASURY DEPUTY ASST SECRETARY BERGER SAYS FURTHER DOLLAR DROP COULD CAUSE INFLATION\n ',0
+'DOM REPUBLIC SELLS CZARNIKOW 35,000 TONS SUGAR The Dominican Republic sold\n35,000 long tons of sugar for immediate delivery, with an\noption for 25,000 tons more, to Czarnikow Rionda of New York,\nthe state sugar council announced.\n    It was not immediately clear when the sale was made or at\nwhat price. A council communique said \"the sale was made at the\nbest prevailing conditions in the world sugar market.\"\n Reuter\n&#3;',0
+'EC BACKS NEW MOVE TO ENCOURAGE UNLEADED GASOLINE The EC Executive Commission has backed\na plan to allow member countries to ban regular leaded gasoline\nin a move designed to encourage use of unleaded fuel.\n    It said in a statement it backed a proposal to allow EC\nstates to ban sales of regular grade gasoline containing lead\nat six months notice. The proposal, which needs approval by EC\nministers, would not force any member state to impose the ban.\n\"It\'s an option, not an obli [...]
+'SUN RAISES CRUDE OIL POSTINGS ONE DLR ACROSS BOARD. WTI NOW 17.00 DLRS/BBL\n ',0
+'&lt;DEVTEK CORP> 2ND QTR JAN 31 NET Shr 14 cts vs nine cts\n    Net 1,180,000 vs 640,000\n    Revs 25.6 mln vs 20.1 mln\n    Six mths\n    Shr 26 cts vs 12 cts\n    Net 2,103,000 vs 853,000\n    Revs 44.8 mln vs 33.0 mln\n Reuter\n&#3;',0
+'SAXTON INDUSTRIES LTD &lt;SAXIF> YEAR NET Shr 13 cts vs 41 cts\n    Net 1,079,100 vs 3,535,205\n    Revs 13.6 mln vs 16.2 mln\n    Note: Current results for 16 months after change in fiscal\nyear end to December 31 from August 31\n Reuter\n&#3;',0
+'TORONTO SUN PLANS TWO-FOR-ONE STOCK SPLIT &lt;Toronto Sun Publishing Corp> said it\nplanned a two-for-one split of its common shares, subject to\nregulatory approval and approval by shareholders at the April\n21 annual meeting.\n Reuter\n&#3;',0
+'SERVO CORP OF AMERICA &lt;SCA> 1ST QTR JAN 31 NET Shr 43 cts vs 41 cts\n    Net 316,000 vs 298,000\n    Sales 4,857,000 vs 4,543,000\n Reuter\n&#3;',0
+'ELECTRO-NUCLEONICS INC &lt;ENUC> 2ND QTR DEC 31 Shr loss 1.77 dlrs vs profit 15 cts\n    Net loss 8,036,000 vs profit 576,000\n    Sales 16.2 mln vs 17.2 mln\n    Avg shrs 4,539,437 vs 3,816,580\n    1st half\n    Shr loss 1.96 dlrs vs profit 26 cts\n    Net loss 8,231,000 vs profit 996,000\n    Sales 30.9 mln vs 32.2 mln\n    Avg shrs 4,205,707 vs 3,814,141\n    NOTE: Current half net includes 68,000 dlr tax credit.\n    Current year net both periods includes 6,700,000 dlr\nwritedown o [...]
+'WAL-MART STORES INC &lt;WMT> 4TH QTR JAN 31 NET Shr 65 cts vs 47 cts\n    Net 184.3 mln vs 133.1 mln\n    Sales 3.85 billion vs 2.77 billion\n    Year\n    Shr 1.59 dlrs vs 1.16 dlrs\n    Net 450.1 mln vs 327.5 mln\n    Sales 11.91 billion vs 8.45 billion\n Reuter\n&#3;',0
+'&lt;MIRTONE INTERNATIONAL INC> 1ST QTR DEC 31 NET Shr two cts vs two cts\n    Net 407,396 vs 376,243\n    Revs 5,341,353 vs 4,292,819\n Reuter\n&#3;',0
+'U.S. TREASURY AIDE WARNS ON INFLATION Thomas Berger, Deputy Assistant\nSecretary of the Treasury, said that a further drop in the\nexchange value of the dollar could cause prices to go up and\ntrigger inflation.\n    He told a meeting of the President\'s Export Council that\nthe Japanese and the Germans have cut their profit margins to\nreflect recent drops in the dollar, so prices have remained\nmuch the same.\n    But he added that if the dollar dropped further there could\nbe inflati [...]
+'LEAF DISEASE HITS SRI LANKA RUBBER A leaf disease affecting seven pct of\nSri Lanka\'s rubber plantations may reduce output this year and\nraise currently depressed prices, industry officials and\nresearchers told Reuters.\n    About 2,900 hectares of rubber planted with the Rubber\nResearch Institute (RRI) clone 103 have been hit by the fungus\n\"corenes pora\" which attacks the roots of the tree and kills the\nleaves. The disease was first discovered about six months ago.\n    Trade s [...]
+'PYRO ENERGY CORP &lt;BTU> YEAR NET Shr 36 cts vs 66 cts\n    Net 4,775,000 vs 9,342,000\n    Revs 105.5 mln vs 130.0 mln\n Reuter\n&#3;',0
+'EC COMMISSION DETAILS SUGAR TENDER The European Commission confirmed it\nauthorised the export of 60,500 tonnes of current series white\nsugar at a maximum rebate of 43.147 European Currency Units\n(ECUs) per 100 kilos.\n    Out of this, traders in the U.K. Received 43,500 tonnes, in\nthe Netherlands 12,000, in Denmark 4,000 and in West Germany\n1,000 tonnes.\n REUTER\n&#3;',0
+'UNITRODE CORP &lt;UTR> 4TH QTR JAN 31 LOSS Shr loss 13 cts vs profit 10 cts\n    Net loss 1,804,062 vs profit 1,370,063\n    Revs 33.5 mln vs 40.4 mln\n    12 mths\n    Shr loss 51 cts vs profit cts\n    Net loss 7,030,235 vs profit 9,163,141\n    Revs 149.4 mln vs 167.9 mln\n    NOTE: income before taxes for the 12 mths ended Jan 1987\nincludes gains 895,000 for fire insurance settlement, and\nunusual charges of 7,900,000 for provisions for estimated cost\nof severance pay for terminat [...]
+'BUEHLER INTERNATIONAL INC &lt;BULR> 4TH QTR NET Shr five cts vs 20 cts\n    Qtly div two cts vs two cts prior\n    Net 223,000 vs 1,418,000\n    Sales 15.3 mln vs 17.1 mln\n    Year\n    Shr 61 cts vs 81 cts\n    Net 3,106,000 vs 5,940,000\n    Sales 63.0 mln vs 59.5 mln\n    NOTE: 1986 net includes tax credits of 63,000 dlrs in\nquarter and 1,365,000 dlrs in year.\n    1986 net both periods includes 500,000 dlr pretax inventory\nwritedown.\n    Dividend pay March 27, record March 5.\n  [...]
+'STANHOME INC &lt;STH> RAISES QUARTERLY TWO CTS Qtly div 23 cts vs 21 cts prior\n    Pay April 1\n    Record March 16\n Reuter\n&#3;',0
+'INSTRON CORP &lt;ISN> SETS QUARTERLY Qtly div three cts vs three cts prior\n    Pay April 2\n    Record March 16\n Reuter\n&#3;',0
+'GERMAN INSTITUTE SEES INFLATION RISING IN 1987 The cost of living in West Germany will\nlikely be about 0.5 pct higher on average in 1987 than in 1986,\nwhen the cost of living actually fell by an average 0.2 pct in\nthe first recurrence of \"negative inflation\" since the 1950s, the\nHWWA economic research institute said.\n    The re-emergence of inflation will result mainly from the\nfading of two factors which influenced the fall in the 1986\ncost of living - the steep decline in bot [...]
+'FED DRAFTS CURRENCY, RATE SWAP RISK GAUGE The Federal Reserve Board voted\nunanimously to propose a formula for calculating the risk of\ninterest rate and currency swaps as part of its ongoing effort\nto come up with a new capital standard for U.S. banks that\ntakes into account the riskiness of a bank\'s loans and other\nassets.\n    Fed officials said an identical proposal was being issues\ntoday by the Bank of England.\n    The Fed set a 60-day period for public comment on the plan.\ [...]
+'IDEAL SCHOOL SUPPLY CORP &lt;IDEL> 4TH QTR NET Oper shr 10 cts vs eight cts\n    Oper net 325,000 vs 228,000\n    Sales 7,070,000 vs 6,483,000\n    Avg shrs 3,313,000 vs three mln\n    Year\n    Oper shr 69 cts vs 51 cts\n    Oper net 2,124,000 vs 1,536,000\n    Sales 31.2 mln vs 22.7 mln\n    Avg shrs 3,071,000 vs three mln\n    NOTE: 1986 net both periods includes 72,000 dlr tax credit.\n Reuter\n&#3;',0
+'SALOMON INC &lt;SB> SETS REGULAR QUARTERLY Qtly div 16 cts vs 16 cts prior\n    Pay April One\n    Rcord March 20\n Reuter\n&#3;',0
+'JANUARY CRUDE OIL MOVEMENTS FALL SEVEN MLN TONS Worldwide spot crude oil movements fell\nto 30.07 mln long dwt in February from 37.25 mln tons in\nJanuary and 41.44 mln in December, London shipbroker Howard\nHoulder said.\n    The decline mainly reflected a sharp drop in movements out\nof the Mideast Gulf, which totalled 7.4 mln tons last month\nagainst 11.65 mln in January. These included shipments to\nwestern options at 2.05 mln tons against 3.59 mln previously.\n    Liftings from the [...]
+'EC SOURCES DETAIL NEW FARM SOCIAL PACKAGE The 350 mln Ecu three-year package of\nsocial and structural measures agreed early today by European\nCommunity farm ministers features a plan to compensate farmers\nfor reducing output of certain surplus products, EC Commission\nsources said.\n    The ministers agreed that under this \"extensification\"\nscheme, farmers would qualify for compensation if they cut\noutput of specific products by at least 20 pct.\n    The plan would initially appl [...]
+'U.S., BRITAIN AGREE FURTHER BANK CAPITAL PROPOSALS The Bank of England and the U.S. Federal\nReserve Board have agreed new proposals for joint standards to\nmeasure the risk of an array of credit exposures that do not\nshow up in bank balance sheets, the Bank of England said.\n    The plan, covering swaps, forward contracts and options\ninvolving interest or exchange rates, complements proposals\nagreed in January between the two central banks to make\ncommercial banks in the U.S. And B [...]
+'PIEDMONT AVIATION &lt;PIE> BOARD TO MEET TODAY Piedmont Avaition Inc\'s board of\ndirectors will conduct a special meeting beginning at 1400 est\ntoday, a Piedmont spokesman said.\n    The spokesman would not say what was on the agenda.\n    In mid-February, Piedmont said its board would meet to\ndiscuss all proposals to acquire the company. Its board also\nwithdrew a recommendation to accept a 65 dlrs a share cash\noffer from Norfolk Southern Corp &lt;NSC> in light of a competing\nrevi [...]
+'FIRST UNION &lt;FUR> LEAVES DIVIDEND UNCHANGED First Union Real Estate Investments\nsaid its board left the quarterly dividend unchanged at 37-1/2\ncts per share, payable April 30, record March 31.\n    The trust, which has raised its quarterly dividend\nfrequently in the past two years and in the first quarter in\nboth years, said the Tax Reform Act of 1986 has limited its\nflexibility on dividends, and trustees will now consider the\nappropriateness of any dividend increases only duri [...]
+'RYKOFF-SEXTON INC &lt;RYK> 3RD QTR JAN 31 NET Shr 21 cts vs 28 cts\n    Net 1,456,000 vs 1,925,000\n    Sales 258.7 mln vs 290.2 mln\n    Nine Mths\n    Shr 77 cts vs 1.10 dlrs\n    Net 5,384,000 vs 7,658,000\n    Sales 804.3 mln vs 760.1 mln\n Reuter\n&#3;',0
+'SYSTEM SOFTWARE ASSOCIATES &lt;SSAX> 1ST QTR NET Periods end January 31, 1987 and 1986\n    Shr 12 cts vs nine cts\n    Net 507,000 vs 362,000\n    Revs 5,010,000 vs 3,558,000\n    NOTE: System Software Associates Inc is full name of\ncompany.\n Reuter\n&#3;',0
+'GEICO CORP &lt;GEC> RAISES QTRLY DIVIDEND Qtrly div 34 cts vs 27 cts prior\n    Pay March 31\n    Record March 16\n\n Reuter\n&#3;',0
+'STANLEY WORKS &lt;SWK> SETS QUARTERLY Qtly div 19 cts vs 19 cts prior\n    Pay March 31\n    Record March 12\n Reuter\n&#3;',0
+'NOVELL INC &lt;NOVL> 1ST QTR JAN 31 NET Shr 31 cts vs 20 cts\n    Net 3,541,000 vs 2,071,000\n    Sales 29.9 mln vs 14.5 mln\n    Avg shrs 11.6 mln vs 10.4 mln\n    NOTE Fourteen vs 13-week periods.\n Reuter\n&#3;',0
+'FROST NOT EXPECTED TO DAMAGE POLAND\'S WHEAT Poland\'s winter wheat is likely to\nsurvive recent frosts but the impact of the cold will not be\nknown until late April, the Polish meteorology institute said.\n    Some varieties of winter wheat sown in Poland can survive\nground temperatures as low as minus 20 degrees C, Spokesman\nTeresa Tomaszewska told Reuters.\n    Even though an earlier thin protective layer of snow mainly\nmelted in February, air temperatures down to minus 30 C shou [...]
+'BROWN-FORMAN &lt;BFDB> TO CHANGE RECORD DATES Brown-Forman Inc said at the\nsuggestion of the American Stock Exchange it has changed the\nrecord date for the 28 ct per share quarterly dividend on its\nClass A and Class B common stock that is payable April One to\nMarch 20 from March 13, to coincide with the record date for a\nthree-for-two stock split declared February 26.\n    It said the record date for the dividend on its four pct\ncumulative preferred stock has also been changed to  [...]
+'GOODYEAR TIRE &lt;GT> DETAILS 1986 TAX REFUND Goodyear Tire and Rubber Co said its\n1986 results include a tax refund of 75.7 mln dlrs from the\ncosts of restructuring the company in a successful defense\nagainst a takeover attempt by James Goldsmith.\n    Chairman Robert Mercer said, \"Heavy restructuring costs\nrelated to the takeover attempt combined with government tax\nincentives for investments ... resulted in this federal tax\nrefund.\"\n    The refund was included but not broken [...]
+'GREAT NORTHERN NEKOOSA &lt;GNN> ANNOUNCES SPLIT The Great Northern Nekoosa Corp\nsaid it will recommend to shareholders a two-for-one common\nstock split.\n    The company said it will make the proposal to shareowners\nat its annual mmeting May 6 in Dothan, Ala., near the company\'s\nGreat Southern Paper division operations.\n    In conjunction with the stock split proposal, the\nshareowners will be asked to approve an increase in the\nauthorized common stock from 60 mln to 150 mln shar [...]
+'HARRIS LIFTS BUILDERS TRANSPORT &lt;TRUK> STAKE Harris Associates L.P., a Chicago\ninvestment advisor, said it raised its stake in Builders\nTransport Inc to the equivalent of 466,754 shares, or 9.1 pct\nof the total outstanding, from 335,800 shares, or 6.7 pct.\n    In a filing with the Securities and Exchange Commission,\nHarris said it bought 36,700 Builders Transport common shares\non Feb 10 at 17 dlrs a share. It also said it bought debentures\non Feb 23 that could be converted int [...]
+'COFFEE TALKS FAILURE SEEN PRESSURING U.S. Failure of talks on re-establishing\nInternational Coffee Organization, ICO, coffee quotas last week\nmay put political pressure on the United States, particularly\nthe State Department, to reassess its position, but the U.S. is\nunlikely to back away from its basic demand quotas be set by\n\"objective criteria\", U.S. officials said.\n    Jon Rosenbaum, assistant U.S. trade representative and head\nof Washington\'s delegation to the talks, told [...]
+'INVESTORS HAVE 12.9 PCT OF EXOVIR &lt;XOVR> Mark Hammer, a private investor from\nMelville, N.Y., and members of his family told the Securities\nand Exchange Commission they have acquired a total of 375,200\nshares of Exovir Inc, or 12.9 pct of the total outstanding.\n    Hammer said his group has been accumulating Exovir stock\nsince Oct 28, 1985 for investment purposes and may buy more\nshares or sell all or part of his current stake.\n    While he said he has no intention of seeking  [...]
+'TORRENTIAL RAINS HALT ARGENTINE GRAIN HARVEST Torrential rains throughout\nArgentina\'s grain-producing areas virtually paralysed coarse\ngrain harvesting in the week to yesterday, trade sources said.\n    Sunflower, maize and sorghum harvests were particularly\naffected, they said. But the rains proved to be a great aid to\nsoybean crops as their harvesting will not begin until April or\nMay.\n    The rains did no damage to maize, sunflower and sorghum\ncrops though fresh rains in simi [...]
+'LOTUS &lt;LOTS> TO ACQUIRE &lt;COMPUTER ACCESS CORP> Lotus Development Corp said it\nhas signed a letter of intent to acquire substantially all of\nthe assets of Computer Access Corp for undisclosed terms.\n    Computer Asscess makes BlueFish full-text search and\nretrieval software for International Business Machines Corp\n&lt;IBM> and compatible personal computers.\n    The company said the acquisition is subject to approval by\nboth boards.\n Reuter\n&#3;',0
+'EQUITABLE OF IOWA COS &lt;EQICA> 4TH QTR NET Oper shr 78 cts vs 51 cts\n    Oper net 7,030,000 vs 4,944,000\n    Revs 126.6 mln vs 120.9 mln\n    Year\n    Oper shr 1.59 dlrs vs 89 cts\n    Oper net 14.7 mln vs 9,864,000\n    Revs 425.1 mln vs 416.9 mln\n    NOTE: Net excludes realized gains on investment of 73,000\ndlrs vs 4,224,000 dlrs in quarter and 6,253,000 vs 14.5 mln\ndlrs in year.\n    Net excludes discontinued Massachusetts Casualty operations\nloss 5,180,000 dlrs vs gain 778, [...]
+'CORROON AND BLACK CORP &lt;CBL> RAISES QUARTERLY Qtly div 21 cts vs 16-1/4 cts prior\n    Pay April One\n    Record March 17\n Reuter\n&#3;',0
+'EC APPOINTS NEW TRADE CHIEF The European Community Commission today\nappointed its chief spokesman, Hugo Paemen, as its top official\nin charge of multilateral trade negotiations, a Commission\nspokesman said.\n    Paemen, a Belgian official who had previously been chief\naide to former External Affairs Commissioner Etienne Davignon,\nhas been in his post since January 1985.\n    The spokesman said Paemen will continue as chief spokesman\nuntil the retirement on May 1 of Paul Luyten, wh [...]
+'U.S. SENATOR TO PROPOSE 0/92 FOR 1987 CROPS Sen. Rudy Boschwitz, R-Minn., said he\nintended to offer legislation that would allow 1987 producers\nof wheat, feedgrains, cotton and rice to receive at least 92\npct of their deficiency payments, regardless of how much they\nplanted.\n    Boschwitz told the Senate Agriculture Committee that\napplying the so-called 0/92 provision to 1987 crops was\nsupported by the Reagan administration and would save\napproximately 500 mln dlrs, including 26 [...]
+'INDIA BUYS UP TO 10 CARGOES SUGAR - TRADERS India bought up to 10 cargoes of white\nsugar at a buying tender today which originally called for just\ntwo to three cargoes of March/April shipment, traders said.\n    London trader E D and F Man said it sold two cargoes at 233\ndlrs a tonne CIF for March/April shipment with an option to\nsell an additional two cargoes at the same price.\n    Traders said at least one other international trader made a\nsimilar contract while a French house s [...]
+'HAYES-ALBION &lt;HAY> DELAYS SPECIAL MEETING Hayes-Albion Corp said it has\ndelayed the special meeting at which shareholders will vote on\nits merger into Harvard Industries Inc &lt;HAVA> until March 24\nfrom March 17 due to a delay in Securities and Exchange\nCommission clearance of proxy materials.\n Reuter\n&#3;',0
+'GROSSMAN\'S INC &lt;GROS> 4TH QTR LOSS Oper shr loss nine cts vs profit 12 cts\n    Oper net loss 1,791,000 vs profit 2,336,000\n    Sales 242.9 mln vs 225.8 mln\n    Year\n    Oper shr profit 15 cts vs loss 17 cts\n    Oper net profit 2,925,000 vs loss 3,324,000\n    Sales 1.01 billion vs 875.6 mln\n    NOTE: Net includes discontinued operations gain 2,437,000\ndlrs vs loss 190.0 mln dlrs in quarter and losses 75.6 mln dlrs\nvs 227.7 mln dlrs in year.\n    Net includes loss 294,000 dlr [...]
+'COMDATA NETWORK &lt;CDN> IN NEW ACQUISITION TALKS Comdata Network Inc said it is\nin active talks with other parties on a possible acquisition or\nrecapitalization of Comdata in an effort to maximize\nshareholder values.\n    Comdata said &lt;Rosewood Financial Inc> together with\n&lt;Cypress Partners LP> and &lt;Driftwood Ltd> have acquired over\nfive pct of Comdata stock and Rosewood intends to acquire over\n15 pct of Comdata.\n    Comdata said it has not yet reached a definitive agre [...]
+'NORTHGATE &lt;NGX> QUEBEC ORE RESERVES DECLINE Northgate Exploration Ltd said year-end\n1986 ore reserves at its two Chibougamau mines in Quebec fell\nto 8,141,150 short tons grading 0.077 ounce gold a ton and 1.63\npct copper from year-earlier 8,462,000 tons grading 0.077 ounce\ngold ton and 1.67 pct copper.\n    The company said it launched a 700,000 dlr exploration\nprogram at the mines to increase production and ensure the\noperations\' continued long life.\n    Ore production total [...]
+'WEBCOR ELECTRONICS INC &lt;WER> 3RD QTR DEC 31 Shr loss 51 cts vs loss 44 cts\n    Net loss 1.8 mln vs loss 1.5 mln\n    Revs 3.1 vs 5.4 mln\n    Nine months\n    Shr loss 1.16 dlrs vs loss 1.33 dlrs\n    Net loss 4.0 mln vs loss 4.6 mln\n    Revs 9.9 mln vs 12.3 mln\n Reuter\n&#3;',0
+'COMMUNICATIONS SYSTEMS INC &lt;CSII> 4TH QTR NET Shr 12 cts vs 10 cts\n    Net 613,986 vs 534,093\n    Revs 9,494,570 vs 7,591,564\n    Year\n    Shr 41 cts vs 59 cts\n    Net 2,151,130 vs 3,111,317\n    Revs 35.9 mln vs 33.7 mln\n    NOTE: 1986 net includes gains from discontinued operations\nequal to three cts compared with nine cts in 1985.\n Reuter\n&#3;',0
+'TURKEY SEES 1.5 BILLION DLR DEFICIT IN 1986 Turkey expects a 1986 balance of payments\ndeficit of 1.5 billion dlrs, well over target, but is taking\nsteps to improve its performance in this and other fields, Ali\nTigrel, director of economic planning at the State Planning\nOrganisation said.\n    He told Reuters the shortfall was a direct consequence of\neconomic growth of nearly eight pct, up from 5.1 pct in 1985,\nwhich he said resulted mostly from a surge in domestic demand.\n    Tig [...]
+'ENERGY/CALIFORNIA OIL PRODUCTION Drilling for oil in California is\nlikely to continue at last year\'s sharply reduced levels\ndespite recent gains in crude oil prices, industry analysts\nsaid.\n    Because much of the crude oil in California fields is\nthick, heavy and expensive to extract, oil prices would have to\nincrease to near 1985\'s levels before any significant recovery\nis seen in drilling, they said.\n    \"Companies will probably only drill their best prospects,\"\nsaid Joh [...]
+'STANDARD OIL &lt;SRD> IN TEXAS NATURAL GAS FIND Standard Oil Co said the Friendswood\nDevelopment Number One well in the Fostoria or Deep Wilcox\nField of Montgomery County, Texas, flowed 4,500,000 cubic feet\nof natural gas per day from depths of 14,252 to 14,486 feet\nthrough a 14/64 inch choke.\n    It said it has contracted for Perry Gas Cos Inc to purchase\nnatural gas from the well, and Perry will build a four-inch\ngathering pipeline to connect to Natural Gas Pipeline Co\'s\ntran [...]
+'WEBCOR ELECTRONICS &lt;WER> IN TECHNICAL DEFAULT Webcor Electronics Inc said it\nremains in technical and payment default under its revolving\ncredit agreement and in technical default under certain other\nobligations to its lender.\n    Although its lender has not enforced its right to demand\npayment of the debt in full, it continues to reserve its right\nto do so at any time, it said.\n    Earlier, Webcor reported a third quarter net loss of 1.8\nmln dlrs and nine months net loss of  [...]
+'FIRST SAVINGS BANK FLORIDA &lt;FSBF> SETS MEETING First Savings Bank of\nFlorida said it expects a special shareholder meeting to be\nheld around May 21 to consider the proposed merger into\nGibraltar Financial Corp &lt;GFC>.\n    It said the annual meeting will be held April 30 to elect\ntwo directors and ratify the appointment of auditors.\n Reuter\n&#3;',0
+'IZVESTIA SAYS SOVIET WINTER CROPS NEED RESEEDING The government daily Izvestia said a\nconsiderable amount of Soviet winter crops need to be reseeded\nand the state 1987 grain harvest target of 232 mln tonnes will\nnot be easy to fulfil.\n    Without giving figures, the newspaper said: \"A considerable\npart of the winter crops must be reseeded, but that creates\nextra effort in the fields in spring.\"\n    The Soviet Union has previously said nine mln hectares of\nwinter grain will hav [...]
+'BORMAN\'S &lt;BRF> TO BUY SAFEWAY\'S UTAH DIVISION Safeway Stores Inc said it\nagreed to sell the assets and operations of its Salt Lake City\nDivision to Borman\'s Inc under undisclosed terms.\n    The division includes 60 operating supermarkets in five\nstates, most of which are in Utah, Idaho and Wyoming, together\nwith distribution and manufacturing facilities, Safeway said.\n    It said sales for the division for the year ended January\nthree were about 350 mln dlrs.\n    Safeway a [...]
+'FISHER FOODS &lt;FHR> SAYS STAKE IN FIRM SOLD Fisher Foods Inc said\n&lt;American Financial Corp> has sold its 1,500,000 Fishers\nshares, a 44 pct interest, to a group consisting of &lt;American\nSeaway Foods Inc>, &lt;Rini Supermarkets Inc> and &lt;Rego\nSupermarkets Inc>.\n    The company said in connection with the transaction, all\nfive American Financial representatives have resigned from its\nboard.\n Reuter\n&#3;',0
+'U.S. SENATE PANEL MAKES CONSERVATION EXEMPTION The U.S. Senate Agriculture Committee\napproved a measure that would exempt farmers who planted\nalfalfa or other multiyear grasses and legumes between 1981 and\n1985 from a federal conservation requirement.\n    Sen. Edward Zorinsky, D-Neb., said his bill would restore\nequity under federal sodbuster rules, which currently deny farm\nprogram benefits to farmers who, between 1981 and 1985, planted\nalfalfa and other multiyear grasses and le [...]
+'PICO PRODUCTS INC &lt;PPI> 2ND QTR JAN 31 Shr profit three cts vs loss nine cts\n    Net profit 103,664 vs loss 326,675\n    Revs 7.6 mln vs 6.9 mln\n    Six months\n    Shr loss two cts vs loss 15 cts\n    Net loss 78,246 vs loss 522,868\n    Revs 14.7 mln vs 12.9 mln\n    NOTE:1986 net includes gain of 43,185 or one cts in 2nd qtr\nand six months for discount on early long-term debt repayment.\n Reuter\n&#3;',0
+'OUTBOARD MARINE &lt;OM> RISING ON TAKEOVER RUMOR Wall Street traders said the stock of\nOutboard Marine Corp was rising on a rumor over a cable\ntelevision program that Outboard is a likely takeover target of\nSun Chemical Corp &lt;SNL>.\n    Outboard was up 3-1/8 to 34-5/8. On Tuesday it rose 1-3/8\nto 31-1/2 Tuesday.\n    A report on Cable News Network today said Sun Chemical has\n4.9 pct of Outboard and is conducting a study on whether to go\nfor control of the whole company.\n    An [...]
+'&lt;ALGOMA CENTRAL RAILWAY> 4TH QTR NET Oper shr 36 cts vs 39 cts\n    Oper net 1,391,000 vs 1,485,000\n    Revs 61.6 mln vs 58.5 mln\n    YEAR\n    Oper shr 70 cts vs 1.16 dlrs\n    Oper net 2,677,000 vs 4,410,000\n    Revs 207.6 mln vs 200.2 mln\n    Note: 1986 net excludes extraordinary loss of 297,000 dlrs\nor eight cts shr vs yr-ago gain of 514,000 dlrs or 13 cts shr.\n Reuter\n&#3;',0
+'GENOVA INC &lt;GNVA> 1ST QTR DEC 27 NET Oper shr profit four cts vs loss four cts\n    Oper net profit 151,448 vs loss 170,709\n    Sales 11.5 mln vs 9,581,406\n    NOTE: Prior year net includes 123,650 dlr tax credit but\nexcludes 52,409 dlr gain on early debt retirement.\n Reuter\n&#3;',0
+'FRENCH WHEAT EXPORTS TO EC FALL French soft wheat exports to other\nEuropean Community countries fell 18 pct to 4.13 mln tonnes in\nthe first seven months of the 1986/87 season to January\ncompared with 5.04 mln in the same 1985/86 period, the French\nCereals Intervention Office (ONIC) said.\n    According to latest ONIC statistics, the main buyers were\nItaly with 1.89 mln against 1.63 mln in the same 1985/86\nperiod, West Germany 480,450 tonnes against 717,689, the\nNetherlands 462,04 [...]
+'SUPREME EQUIPMENT/SYSTEMS CORP &lt;SEQP> 2ND QTR Shr 61 cts vs 18 cts\n    Net 670,000 vs 194,000\n    Revs 10.7 mln vs 10.4 mln\n    Six months\n    Shr 73 cts vs 35 cts\n    Net 798,000 vs 377,000\n    Revs 19.5 mln vs 19.8 mln\n    NOTE:1987 net includes gain of 362,000 dlrs in 2nd qtr and\n431,000 dlrs in six months from tax loss carryforward.\n Reuter\n&#3;',0
+'GULF APPLIED TECHNOLOGIES INC &lt;GATS> 4TH QTR Oper shr loss five cts vs loss 24 cts\n    Oper net loss 165,000 vs loss 802,000\n    Revs 4,988,000 vs 3,101,000\n    Year\n    Oper shr loss 13 cts vs loss 1.33 dlrs\n    Oper net loss 454,000 vs loss 4,407,000\n    Revs 23.1 mln vs 8,937,000\n    NOTE: Results restated for discontinued operations.\n    1986 net both periods excludes 143,000 dlr tax credit.\n    Net excludes gains from discontinued pipelines and\nterminals operations of  [...]
+'VAN DORN CO &lt;VDC> 4TH QTR NET Shr 55 cts vs 80 cts\n    Net 2,517,443 vs 3,633,217\n    Revs 79.1 mln vs 76.3 mln\n    12 mths\n    Shr 2.57 dlrs vs 3.41 dlrs\n    Net 11.7 mln vs 15.4 mln\n    Revs 305.1 mln vs 314.3 mln\n Reuter\n&#3;',0
+'FIELDCREST CANNON INC &lt;FLD> SETS QUARTERLY Qtly div 17 cts vs 17 cts prior\n    Pay March 31\n    Record March 17\n Reuter\n&#3;',0
+'VARIAN &lt;VAR> BUYS ANALYTICHEM INTERNATIONAL Varian Associates Inc said it\nacquired all the outstanding stock of closely-held Analytichem\nInternational Inc for an undisclosed amount of cash.\n    Analytichem, based in Harbor City, Calif., is a supplier of\nbonded phase preparation products used to prepare chemical\nsamples for analysis, Varian said.\n Reuter\n&#3;',0
+'KANEB SERVICES INC &lt;KAB> 4TH QTR LOSS Oper shr loss 1.05 dlrs vs profit nine cts\n    Oper net loss 30.5 mln vs profit 3,930,000\n    Revs 23.9 mln vs 45.6 mln\n    12 mths\n    Oper shr loss 5.30 dlrs vs profit 34 cts\n    Oper net loss 155.8 mln vs profit 16.0 mln\n    Revs 113.7 mln vs 178.8 mln\n    Note: Oper excludes loss from discontinued operations of\n9,127,000 dlrs vs 12.4 mln dlrs for qtr and 28.4 mln dlrs vs\n960,000 dlrs for 12 mths.\n    Note: Oper includes writedown of [...]
+'SUSPENSIONS/PARTS INDUSTRIES LTD &lt;SPILF> YEAR Shr 33 cts vs 60 cts\n    Net 1.1 mln vs 1.7 mln\n    Revs 11.7 mln vs 10.6 mln\n    NOTE:Full name is Suspensions and Parts Industries Ltd.\n Reuter\n&#3;',0
+'ESTIMATED FRENCH BARLEY STOCKS WORRYING - ONIC The size of French 1986/87 carryover\nbarley stocks, estimated at 1.72 mln tonnes compared with\n700,000 tonnes in 1985/86 is worrying, French Cereals\nIntervention Office (ONIC) Director Bernard Vieux said.\n    He told journalists these estimates were unchanged at the\nend of February from the previous month while export forecasts\nwere lowered to 4.5 mln tonnes from 5.76 mln in 1985/86.\n    Vieux called on the EC Commission to help by a [...]
+'MITCHELL ENERGY AND DEVELOPMENT CORP &lt;MND>PAYOUT Qtly div six cts vs six cts prior\n    Pay April Two\n    Record March 18\n Reuter\n&#3;',0
+'FROST AND SULLIVAN INC &lt;FRSL> 2ND QTR JAN 31 Shr profit 12 cts vs loss two cts\n    Net profit 182,173 vs loss 28,977\n    Revs 4,483,047 vs 3,994,808\n    1st half\n    Shr profit 14 cts vs loss eight cts\n    Net profit 221,376 vs loss 120,435\n    Revs 8,270,947 vs 7,150,265\n Reuter\n&#3;',0
+'S. KOREAN TRADE SURPLUS WITH U.S. SEEN FALLING South Korea\'s record 7.1 billion dlrs\ntrade surplus with the U.S. is bound to diminish as the\ncountry switches purchases from Japan in favor of U.S.\ncompanies, Trade Minister Woong-Bae Rha said.\n     He rejected suggestions the Korean Won is undervalued, and\ndenied any plans for a \"drastic and sudden\" revaluation.\n    Rha is heading a trade mission to 37 U.S. cities. Last year\nSouth Korea ran a 4.3 billion dlr trade surplus, inclu [...]
+'CRI INSURED &lt;CII> TO SET SPECIAL DISTRIBUTION CRI Insured Mortgage Investments\nInc said its advisor will recommend a special distribution of\n50 cts per share due to the sale of a federally insured first\nmortgage on Park Meadows I in Madison, Wis., for 4,267,871\ndlrs.\n    It said it received a 3,695,465 dlr return of capital and\n572,406 dlrs in income on the sale, and the 50 ct distribution\nwould represent a 43.294 ct return of principal and a 6.706 ct\ncapital gain and would b [...]
+'KANEB ENERGY PARTNERS LTD &lt;KEP> 4TH QTR LOSS Unit loss one ct\n    Net loss 186,000\n    Revs 10.7 mln\n    11 mths\n    Unit loss 7.26 dlrs\n    Net loss 121.4 mln\n    Revs 46.9 mln\n    Note: Partnership formed in February 1986.\n    Net includes writedown of oil and gas assets of 124.8 mln\ndlrs for 11 mths to comply with full-cost accounting methods.\n Reuter\n&#3;',0
+'DIGICON &lt;DGC> COMPLETES SALE OF UNIT Digicon Inc said it has completed the\npreviously-announced disposition of its computer systems\ndivision to an investment group led by &lt;Rotan Mosle Inc\'s>\nRotan Mosle Technology Partners Ltd affiliate.\n Reuter\n&#3;',0
+'TEXAS EASTERN &lt;TET> BUYS PETROLEUM TERMINAL Texas Eastern Corp said it has completed\nthe purchase of an idle petroleum products terminal near Norris\nCity, Ill., from &lt;Growmark Inc> for undisclosed terms and will\nreopen it in September after remodeling.\n    The company said the terminal will handle leaded and\nunleaded regular gasolines, number two fuel oil, ethanol and\nnatural gasoline.\n Reuter\n&#3;',0
+'STERLING IN TEXAS GAS AND OIL DISCOVERY &lt;Sterling Investment Group>\nsaid it successfully drilled and completed a significant\ndevelopment well 65 miles southwest of Houston, Texas.\n    The well has a choke of 11/64 of an inch and is 10,097 feet\ndeep.\n    The well initially tested at a maximum daily flow rate of\ntwo mln cubic feet of gas and 304 barrels of condensate.\n    Participants in the new well, along with Sterling, are\nTrafalgar House Ltd of the U.K. and &lt;Texstar NOrt [...]
+'COMPUTER HORIZONS &lt;CHRZ> IN ACQUISITION Computer Horizons Corp said it\npurchased ComputerKnowledge Inc, a software training education\ncompany headquartered in Dallas.\n    Terms were not disclosed.\n                \n Reuter\n&#3;',0
+'POLICY MANAGEMENT &lt;PMSC> MAKES ACQUISITION Policy Management Systems Corp\nsaid it has acquired the majority of the assets and business of\nAllied Research Inc of Salem, Ore., and Consolidated Insurance\nServices Inc, of Springfield, Va., for undisclosed terms.\n    It said the two companies, which had combined 1986 revenues\nof about two mln dlrs, provide underwriting information\nservices to property and casualty insurers.\n Reuter\n&#3;',0
+'UNICORP CANADA&lt;UNI.A> CUTS PUROLATOR&lt;PCC> STAKE Unicorp Canada Corp told the\nSecurities and Exchange Commission it cut its stake in\nPurolator Courier Corp to 286,500 shares, or 3.7 pct of the\ntotal outstanding, from 962,400 shares, or 12.4 pct.\n    Unicorp, a management and investment holding company\ncontrolled by its chairman, George Mann, said it sold 675,900\nPurolator common shares on March 2 and 3 at 34.782 and 34.750\ndlrs a share.\n    Purolator agreed this past weeken [...]
+'FIRM ACQUIRES &lt;AMERICAN NUTRITION WORKS INC> &lt;Nusource Investments Inc>, a\npublicly held shell company, said it acquired American\nNutrition Works Inc through a transaction in which American\nNutrition shareholders received 28 mln shares of Nusource stock\nin exchange for their shares.\n    American Nutrition operates a chain of stores sellings\nvitamins and health products.\n    Nusource said shareholders elected a new board consisting\nof Richard A. Trydahl, Samuel Mineo and Ch [...]
+'CANADA WHEAT BOARD ADVISES CUT IN GRAIN PRICES The Canadian Wheat Board has advised\nthe federal government to sharply cut initial prices paid to\nfarmers for their wheat, oats, and barley in the crop year\nbeginning August 1, a board spokesman said.\n    The spokesman declined to give the size of the recommended\nprice drops but said it would not be good news for western\nCanadian grain growers.\n    \"They\'re all lower,\" he said. \"This is really getting\npretty serious. We\'re talk [...]
+'GATT COUNCIL DEFERS DECISION ON SEMICONDUCTORS The ruling GATT Council deferred a\ndecision on whether to set up a dispute panel on the basis of a\nEuropean Community complaint against the U.S.- Japanese\nagreement on exports of computer semiconductors.\n    David Woods, spokesman of the General Agreement on Tariffs\nand Trade (GATT), told a news briefing that the main parties\nwould continue bilateral talks. This was in the hope of\nresolving the row before the next Council meeting on  [...]
+'FIRST SOUTHERN &lt;FSFA> TO MAKE ACQUISITION First Southern Federal Savings and\nLoan Association said it has agreed in principle to acquire\nHorizon Financial Corp and Horizon Funding corp from &lt;Victor\nFederal Savings and Loan Association> of Muskogee, Okla., for\nundisclosed terms.\n    The company said the purchase is subject to approval of the\nboards of First Southern and Victor and regulatory agencies.\n    Horizon Financial services mortgage loans and Horizon\nFunding is a wh [...]
+'DANAHER CORP &lt;DHR> 4TH QTR NET Shr 71 cts vs 43 cts\n    Net 7,274,000 vs 4,447,000\n    Rev 161.6 mln vs 77.6 mln\n    Year\n    Shr 1.51 dlrs vs 1.32 dlrs\n    Net 15,401,000 vs 13,525,000\n    Rev 454.0 mln vs 304.9 mln\n   \n Reuter\n&#3;',0
+'FIRM AGREES TO MERGE WITH LOTOQUIK INT\'L &lt;Chatsworth Enterprises\nInc>, a publicly held shell corporation, said it signed a\nletter of intent to merger with &lt;Lotoquik International Ltd>, a\nNassau, Bahamas-based maker of video lottery machines.\n    Under terms of the merger agreement, Chatsworth said\nLotoquik shareholders would own a majority of the surviving\ncompany.\n Reuter\n&#3;',0
+'ASBESTEC TO BUY CONTRACTOR, RECEIVES CONTRACT &lt;Asbestec Industries Inc> said\nit signed a letter of intent to buy asbestos abatement\ncontractor &lt;P.W. Stephens> for three mln dlrs in cash, stock\nand notes.\n    The transaction is expected to be completed early in the\nthird quarter of its fiscal year ending September 30, 1987.\n    Asbestec also said it expects to sign March six a 900,000\ndlr contract to remove asbestos from a major apartment complex\nin Washington, D.C. The pro [...]
+'GATT SETS UP DISPUTE PANEL ON CANADIAN HERRING The ruling GATT Council set up a formal\ndispute panel to examine a U.S. Complaint that a Canadian law\nprohibiting export of unprocessed herring and salmon was\ndiscriminatory.\n    David Wood, official spokesman of the General Agreement on\nTariffs and Trade (GATT), told a news briefing the decision was\ntaken after bilateral consultations failed to resolve the row.\n    U.S. Ambassador Michael Samuels charged during the Council\ndebate t [...]
+'COLOMBIAN INFLATION RISES 2.03 PCT IN FEBRUARY colombia\'s cost of living index rose 2.03\npct in february after a 3.27 pct increase in january and a 3.15\npct rise in february 1986, the government statistics institute\nsaid.\n    The rise brought year-on-year inflation to 19.77 pct\ncompared with 23.72 pct at end-february 1986 and 21.66 pct for\nthe year ending january 1987.\n    The government has predicted that inflation this year would\nbe lower than in 1986 when it reached 20.9 pct [...]
+'TALKING POINT/GENERAL MOTORS &lt;GM> General Motors Corp staged an explosive\nrally on Wall Street after a share buyback program announced\nyesterday, but analysts said GM\'s future remains clouded by\nstiff competition and erosion of market share.\n    GM shares rose 3-1/2 to 79-1/8 in active trading. Analysts\nagreed that investors liked the repurchase program but they \ndiffered sharply over the carmaker\'s long term prospects.\n    \"I\'m very positive on GM,\" said Jack Kirnan of K [...]
+'PARTNERSHIP CUTS STAKE IN ERC INTERNATIONAL&lt;ERC> Parsow Partnership Ltd, a Nevada\ninvestment partnership, said it lowered its stake in ERC\nInternational Inc to 343,500 shares or 8.3 pct of the total\noutstanding common stock, from 386,300 shares, or 9.3 pct.\n    In a filing with the Securities and Exchange Commission,\nParsow said it sold 42,800 ERC common shares between Jan 9 and\nMarch 2 at prices ranging from 12.125 to 14.50 dlrs each.\n    The partnership said its dealings in  [...]
+'IRANIAN OIL MINISTER DUE IN ALGERIA ON FRIDAY Iranian Oil Minister Gholamreza Aqazadeh\nis expected here on Friday for talks with his Algerian\ncounterpart Belkacem Nabi, the official Algerian news agency\nAPS said today.\n    Aqazadeh, who will be accompanied by a large delegation,\nwill have talks on bilateral relations in the field of energy\nand exchange views with Algerian officials on the current world\nenergy situation, it said.\n Reuter\n&#3;',0
+'&lt;GOLDOME FSB> YEAR NET Net 52.9 mln vs 21.9 mln\n    NOTE: Company is mutual savings bank.\n Reuter\n&#3;',0
+'BEAR AUTOMOTIVE SERVICE &lt;BEAR> 4TH QTR OPER NET Oper shr 18 cts vs 28 cts\n    Oper net 1,076,000 vs 1,441,000\n    Sales 22.6 mln vs 21.2 mln\n    Avg shrs 5,970,000 vs 5,080,000\n    Year\n    Oper shr 55 cts vs 49 cts\n    Oper net 3,007,000 vs 2,521,000\n    Sales 82.9 mln vs 73.7 mln\n    Avg shrs 5,429,000 vs 4,484,000\n    Note: Full company name is Bear Automotive Service\nEquipment Co\n    Oper shr excludes extraordinary profit from utilization of\ntax loss carryforward of 2 [...]
+'U.K. OIL INDUSTRY SAID NOT PERMANENTLY DAMAGED The U.K. Offshore oil industry has\nsuffered from last year\'s collapse in oil prices but should not\nsustain any permament damage, Minister of State for Energy\nAlick Buchanan-Smith said.\n    The drilling, diving and supply vessels sectors had been\nmost affected, Buchanan Snith told the House of Commons energy\ncommittee. He noted, however, that oil companies were still\nspending six mln stg a day to maintain North Sea production.\n    H [...]
+'CHASE MANHATTAN STUDYING ITALIAN EXPANSION &lt;Chase Manhattan Bank N.A.> is considering\nexpanding its operations in Italy, particularly in the consumer\nbanking sector, a Chase Manhattan official said.\n    Robert D. Hunter, Chase Manhattan area executive for\nEurope, Africa and the Middle East, said at a news conference\nthat plans to broaden the bank\'s activities on the Italian\nmarket have not been finalised, however.\n    Asked if Chase Manhattan would consider an acquisition in\ [...]
+'HRS &lt;IHIRF> REDUCING STAKE IN HAL ROACH &lt;HRSI> International H.R.S. Industries Inc said\nit would reduce its stake in Hal Roach Studios Inc to 22 pct\nfrom 52 pct in return for 6.3 mln U.S. dlrs from Qintex Inc\'s\nQintex America (Media) Ltd unit.\n    H.R.S. said that under the deal\'s first stage, closng March\n22, it would sell Qintex 900,000 Hal Roach shares at seven U.S.\ndlrs a share each for a total of 6.3 mln dlrs and Roach will\nrepay H.R.S. 3.3 mln U.S. dlrs of advances. [...]
+'TOTAL STILL EXPECTS 1.5 BILLION FRANC 1986 LOSS French oil group Total Cie Francaise des\nPetroles &lt;TPN.PA> is still expecting a 1.5 billion franc\nconsolidated net loss, including minority interests, for 1986,\nafter taking account of stock losses of 7.5 billion francs, the\ncompany said in a communique after a board meeting here.\n    In late January group president Francois-Xavier Ortoli told\njournalists that the slump in oil prices and the weak dollar\nhad caused the stock depre [...]
+'STEEGO CORP &lt;STG> 3RD QTR JAN 31 LOSS Oper shr loss 16 cts vs loss 10 cts\n    Oper net loss 1,569,000 vs loss 990,000\n    Sales 50.3 mln vs 50.1 mln\n    Nine mths\n    Oper shr loss nine cts vs loss two cts\n    Oper net loss 849,000 vs loss 199,000\n    Sales 159.9 mln vs 156.6 mln\n    NOTE: Current nine mths net includes 1,036,000 dlr pretax\ngain on sale of property.\n    Prior year net both periods includes pretax gain 1,095,000\ndlrs on pension plan termination.\n    Current [...]
+'E-SYSTEMS INC &lt;ESY> SETS QUARTERLY Qtly div 12-1/2 cts vs 12-1/2 cts prior\n    Pay April One\n    Record March 13\n Reuter\n&#3;',0
+'RESOURCE EXPLORATION &lt;REXI> IN DRILLING PACT Resource Exploration Inc said it has\nagreed to let &lt;Langasco Energy Corp> drill 50 oil and\nnatural gas wells on its Clinton Sandstone formation within its\nTuscarawas and Harrison County, Ohio area of operation.\n    Resource said it would receive a cash payment and an\noverriding royalty interest on oil and gas production from\nwells drilled on the property.\n    Resource said gas produced from the property will be\ntransported throu [...]
+'TEXAS OIL REGULATOR CALLS FOR STATE TAX BREAKS Texas Railroad Commissioner James\nNugent, saying that the ailing oilpatch cannot wait for\nCongress to act, today urged Texas state lawmakers to adopt\nincentives to find new oil reserves and to exempt severance\ntaxes on oil produced from stripper wells.\n    Nugent said in a speech to the Texas house of\nrepresentatives that the state must take the initiative in\nmolding U.S. energy policy and finding new ways to assist\ntroubled oil pro [...]
+'UNICORP AMERICAN CORP &lt;UAC> SETS QUARTERLY Qtly div 15 cts vs 15 cts prior\n    Pay March 31\n    Record March 13\n Reuter\n&#3;',0
+'COLOMBIA BLASTS U.S. FOR COFFEE TALKS FAILURE Colombian finance minister Cesar Gaviria\nblamed an inflexible U.S. position for the failure of last\nweek\'s International Coffee Organisation, ICO, talks on export\nquotas.\n    \"We understand that the U.S. Position was more inflexible\nthan the one of Brazil, where current economic and political\nfactors make it difficult to adopt certain positions,\" Gaviria\ntold Reuters in an interview.\n    The U.S. and Brazil have each laid the blam [...]
+'LIBERTY FINANCIAL GROUP &lt;LFG> REGULAR DIVIDEND Qtly div 12.5 cts vs 12.5 cts in prior qtr\n    Payable March 13\n    Record February 27\n Reuter\n&#3;',0
+'PACTEL &lt;PAC> SEES EARNINGS GROWTH Pacific Telesis Group chairman Donald\nGuinn told a meeting of security analysts that the company sees\ncontinued earnings growth in 1987 above the 1.08 billion dlrs,\nor 5.02 dlrs per share, earned in 1986.\n    Guinn also said that capital spending stood at about 1.8\nbillion dlrs in 1986, and the company expected the figure to\nremain flat each year through 1989. He noted that all captial\nspending will be internally financed.\n    Guinn also told [...]
+'TRANS WORLD AIRLINES MAKES 52 DLR/SHARE CASH MERGER PROPOSAL FOR USAIR\n ',0
+'UNICORP AMERICAN CORP &lt;UAC> 4TH QTR NET Shr 13 cts vs 70 cts\n    Net 1,279,000 vs 7,979,000\n    Revs 16.4 mln vs 19.6 mln\n    Year\n    Shr 89 cts vs 2.43 dlrs\n    Net 10.3 mln vs 29.8 mln\n    Revs 56.2 mln vs 83.8 mln\n    Avg shrs 12.1 mln vs 13.1 mlnm\n    NOTE: 1986 year net includes gain 12.9 mln dlrs from sale\nof eight real estate properties.\n Reuter\n&#3;',0
+'KENYA SIGNS PACT TO ESTABLISH OWN SHIPPING LINE Kenya has signed an agreement with\nBritish and German interests to establish a shipping line that\nwill handle 40 pct of the country\'s external trade, sources\nclose to the deal said.\n    The state-owned Kenya Ports Authority, KPA, signed an\nagreement with the Hamburg-based shipping line Unimar\nSeetransport to establish the Kenya National Shipping line,\nwith an initial capital of 100 mln shillings, sources said. KPA\nwill hold 70 pct [...]
+'NEW BANK RULES TOUGHER THAN NEEDED, DEALERS SAY U.S. and U.K. bank regulators are asking\nbanks to set aside more reserves than is necessary to cushion\nthem against the risks posed by the interest rate and currency\nswap transactions they carry, swap dealers said.\n    After viewing proposed guidelines released jointly today by\nthe Bank of England and the Federal Reserve Board, dealers said\nthat in effect, regulators are asking them to set aside\nreserves twice for the same risk.\n   [...]
+'SHAW\'S SUPERMARKETS INC &lt;SHAW> YEAR JAN 3 Shr 1.23 dlrs vs 1.33 dlrs\n    Semi-annual div six cts vs six cts prior payment\n    Net 16.2 mln vs 14.8 mln\n    Sales 1.09 billion vs 909.4 mln\n    NOTE: Dividend is payable April one to holders of record\nMarch nine\n Reuter\n&#3;',0
+'DYNAMICS CORP &lt;DYA> IN SETTLEMENT WITH CTS &lt;CTS> Dynamics Corp of America said\nit has reached an agreement with CTS Corp resolving all\ndifferences between the two companies.\n    It said as a result of the settlement, CTS\'s special board\ncommittee has stopped soliciting orders to purchase some or all\nof CTS.\n    Dynamics, which now owns 27.5 pct of CTS\' outstanding\nstock, said it agreed to limit its shareholdings to not more\nthan 35 pct of the outstanding shares for a yea [...]
+'RENEWAL OF U.S./USSR GRAIN PACT SAID UNCERTAIN Prospects for renewal of the\nfive-year U.S./USSR grains agreement are uncertain at this\npoint, a Soviet trade official told Reuters.\n    The current trade imbalance between the United States and\nthe Soviet Union, high U.S. commodity prices, and increased\nworld grain production make a renewal of the supply agreement\nnext year less certain, Albert Melnikov, deputy trade\nrepresentative of the Soviet Union, said in an interview.\n    The [...]
+'DANAHER &lt;DHR> EXPECTS EARNINGS INCREASE IN 1987 Danaher Corp said it expects higher\nearnings in 1987 versus 1986.\n    \"We expect significant increases in earnings and revenues\nin 1987,\" Steven Rales, Danaher chairman and chief executive\nofficer, said.\n    Earlier, the company reported 1986 net earnings of 15.4 mln\ndlrs, or 1.51 dlrs a share, versus 13.5 mln dlrs, or 1.32 dlrs\na share, in 1985.\n    It also reported fourth quarter net of 7.3 mln dlrs, or 71\ncts a share, up f [...]
+'DANAHER CORP &lt;DHR> 4TH QTR NET Shr 71 cts vs 43 cts\n    Net 7,274,000 vs 4,447,000\n    Rev 161.6 mln vs 77.6 mln\n    Year\n    Shr 1.51 dlrs vs 1.32 dlrs\n    Net 15,401,000 vs 13,525,000\n    Rev 454.0 mln vs 304.9 mln\n    NOTE: Fourth qtr net includes extraordinary gain of 3.8 mln\ndlrs, or 37 cts per share, versus 2.9 mln dlrs, or 28 cts a\nshare, in 1985\'s fourth qtr, and an extraordinary charge of\n642,000 dlrs, or six cts a share. 1986 net includes\nextraordinary gain of 7 [...]
+'TWA &lt;TWA> MAKES MERGER OFFER FOR USAIR &lt;U> Trans World Airlines said it has\nproposed a cash merger of USAir Group with TWA in which the\nholders of USAir common would receive 52 dlrs in cash in\nexchange for their stock.\n    TWA said the offer was made in a letter to Edmin Colodny,\nchairman and president of USAir.\n    TWA said, however, that if the negotiated deal is not\nacceptable it may make an offer directly to USAir\'s\nshareholders for up to 51 pct of USAir\'s outstandin [...]
+'CTS &lt;CTS> AND DYNAMICS &lt;DYA> REACH ACCORD CTS Corp and Dynamics Corp of\nAmerica reached an agreement resolving all outstanding\ndifferences between them, according to a joint statment.\n    As a result of the settlement, a special committee of the\nboard of directors of CTS stopped soliciting offers to buy all\nor part of the company, it said.\n    CTS and DCA also agreed to dismiss all pending litigation\nbetween the two companies except for one appeal pending before\nthe U.S. S [...]
+'MEASUREX &lt;MX> SELLS SOUTH AFRICAN UNIT Measurex Corp said it\ncompleted the sale of its Measurex (South Africa Pty)\nsubsidiary to a group of employees who manage the operation.\n    Measurex, a maker of computer integrated manufacturing\nsystems, said the subsidiary represented less than one pct of\nworldwide revenues and the sale will have no impact on this\nyear\'s earnings.\n Reuter\n&#3;',0
+'JEFFERIES MAKING MARKET IN USAIR &lt;U> Jefferies and Co said it is making a\nmarket in the stock of USAir Group Inc at 48-1/2 to 50.\n    USAir received an offer from Trans world airlines to buy\nthe airline at 52 dlrs cash per share.\n    USAir was halted on the New York Stock EXcahnge for\ndissemination of the news. It was indicated at 47 to 54.\n Reuter\n&#3;',0
+'TRANS-LUX &lt;TLX> SETS FIVE PCT STOCK DIVIDEND Trans-Lux Corp said its board\ndeclared a five pct stock dividend payable April nine to\nholders of record March 20.\n    The company said directors also declared regular quarterly\ndividends on presently outstanding shares of both classes of\ncommon, payable April nine to holders of record March 16.\n    It said an unchanged dividend of two cts will be paid on\nthe common and 1.8 cts on the Class B stock.\n Reuter\n&#3;',0
+'KANEB ENERGY PARTNERS LTD &lt;KEP> 4TH QTR LOSS Shr loss one cent\n    Net loss 186,000\n    Revs 10.7 mln\n    11 mths\n    Shr loss 7.26 dlrs\n    Net loss 121.4 mln\n    Revs 46.9 mln\n    NOTE: In February 1986, Kaneb Services Inc contributed all\nof its domestic oil and gas operations to Kaneb Partners, which\nwas newly formed, and exchanged approximately 3,200,000\ndepositary units respresenting limited partnership interests in\nKEP for approximately 6,400,000 million shares of th [...]
+'DALTON COMMUNICATIONS INC &lt;DALT> 3RD QTR JAN 31 Shr profit three cts vs loss two cts\n    net profit 157,500 vs loss 60,200\n    Revs 1.1 mln vs 1.0 mln\n    Nine months\n    Shr profit five cts vs profit six cts\n    Net profit 223,400 vs profit 260,800\n    Revs 3.2 mln vs 3.1 mln\n Reuter\n&#3;',0
+' &#2;\n(CORRECTION) - SHAW\'S SUPERMARKETS EARNINGS\n    In item headlined \"SHAW\'S SUPERMARKETS INC &lt;SHAW> YEAR JAN\n3\" please read per share earnings 1.33 drs vs 1.23 dlrs,\ncorrecting order of results.\n Reuter\n&#3;\n\n',0
+'WTD INDUSTRIES INC &lt;WTDI> 3RD QTR JAN 31 NET Shr profit 13 cts vs loss one ct\n    Net profit 853,000 vs loss 22,000\n    Sales 41.1 mln vs 20.3 mln\n    Avg shrs 6,349,753 vs 4,403,852\n    Nine Mths\n    Shr profit 57 cts vs profit 28 cts\n    Net profit 2,869,000 vs profit 1,252,000\n    Sales 119.0 mln vs 67.6 mln\n    Avg shrs 5,054,844 vs 4,403,852\n Reuter\n&#3;',0
+'HEALTHVEST &lt;HVT> SELLS SHARES Healthvest, a Maryland real estate\ninvestment trust, said it began selling five mln shares of\ncommon stock at 21 dlrs a share.\n    The company said it is also selling 543,237 shares to\nHealthcare International Inc &lt;HII>, giving the company a 9.8\npct stake in Healthvest.\n Reuter\n&#3;',0
+'CACEX DENIES BRAZIL FCOJ PRICE RISE RUMOURS There has been no rise in the\nprice of Frozen Concentrated Orange Juice, FCOJ, a spokesman\nfor the Banco do Brasil\'s Foreign Trade Department, Cacex,\nsaid.\n    He was responding to rumours in the international market\nthat Brazil had raised its FCOJ prices in range of 1,075 to\n1,150 dlrs per tonne.\n Reuter\n&#3;',0
+'E-SYSTEMS &lt;ESY> SETS QTRLY PAYOUT Qtrly div 12.5 cts vs 12.5 cts prior\n    Pay April 1\n    Record March 13\n Reuter\n&#3;',0
+'PIEDMONT MANAGEMENT CO INC &lt;PMAN> 4TH QTR Shr 70 cts vs 4.91 dlrs\n    Net 3.7 mln vs 26.3 mln\n    Year\n    Shr 1.99 dlrs vs 3.35 dlrs\n    Net 10.7 mln vs 18.0 mln\n    NOTE:1986 year, 4th qtr include capital gains of 3.5 mln\ndlrs and 1.1 mln dlrs, respectively and extraordinary gain of\n3.4 mln dlrs and 1.2 mln dlrs respectively. 1985 year and 4th\nqtr include capital gains of 24.0 mln dlrs and 23.3 mln dlrs\nrespectively and extraordinary gain of 3.9 mln dlrs.\n        \n Reute [...]
+'EASTPARK REALTY TRUST &lt;ERT> 4TH QTR NET Shr 1.52 dlrs vs 17 cts\n    Net 1,306,000 vs 144,000\n    Rev 758,000 vs 670,000\n    Year\n    Shr 2.68 dlrs vs 2.63 dlrs\n    Net 2,313,000 vs 2,285,000\n    Rev 2.8 mln vs 2.7 mln\n    NOTE: Fourth qtr and 1986 had gains on real estate\ninvestments of 933,000 dlrs, or 1.08 a share, and 970,000 dlrs,\nor 1.12 a share, respectively.\n    This compares with a loss of 137,000 dlrs, or 15 cts a\nshare, and again of 1.3 mln dlrs, or 1.45 a share, [...]
+'NL INDUSTRIES INC &lt;NL> SETS QTRLY PAYOUT Qtrly div five cts vs five cts qtr\n    Pay April One\n    Record  March 16\n Reuter\n&#3;',0
+'WTD INDUSTRIES INC &lt;WTDI> 3RD QTR JAN 31 NET Shr profit 13 cts vs loss one ct\n    Net profit 853,000 vs loss 22,000\n    Revs 41.1 mln vs 20.3 mln\n    Avg shrs 6,349,753 vs 4,403,852\n    Nine mths\n    Shr profit 57 cts vs profit 28 cts\n    Net profit 2,869,000 vs profit 1,252,000\n    Revs 119.0 mln vs 67.6 mln\n    Avg shrs 5,054,844 vs 4,403,000\n    Note: Company went public in October 1986.\n Reuter\n&#3;',0
+'ALASKA AIR GROUP INC &lt;ALK> QTLY DIVIDEND Shr four cts vs four cts prior qtr\n    Pay May five\n    Record April 15\n Reuter\n&#3;',0
+'USAIR &lt;U> HAS NO COMMENT ON TWA &lt;TWA> OFFER USAir Group Inc said it had no comment\non an offer it received from Trans World Airlines to buy USAir\nfor 52 dlrs cash per share.\n    USAir spokesman David Shipley also declined comment on\nPiedmont Aviation Inc &lt;PIE>. USAir has offered 71 dlrs cash per\nshare for half of Piedmont\'s stock, and 73 dlrs in its own\nstock for the balance.\n    Piedmont also received an offer from Norfolk Southern Corp\n&lt;NSC> of 65 dlrs cash per sh [...]
+'MORE PRESSURE URGED FOR ASIA TO TAKE U.S. BEEF Congressmen from beef producing\nstates and representatives of the U.S. livestock industry \nurged the Reagan administration to press Japan and South Korea\nto open up their markets to imports of beef.\n    Testifying at a House subcommittee hearing on livestock\nissues, Rep. Hal Daub (R-Nebr.), said the administration should\npush hard for greater beef imports by Japan and South Korea.\nDaub was joined by several other lawmakers.\n    U.S. [...]
+'SOUTH AFRICAN FOREIGN RESERVES UP SHARPLY IN FEB South Africa\'s total gold and\nforeign assets rose by 700 mln rand in February to 6.2 billion\nrand after rising by almost one billion rand in January,\nReserve Bank Governor Gerhard de Kock said.\n    De Kock, interviewed on state-run television, gave no\nbreakdown of the reserves.\n    He also said that to curb inflation, salary increases would\nhave to be below the inflation rate. The state must set an\nexample by keeping wage increas [...]
+'MORE SOVIET GRAIN BUYING FROM U.S. TIED TO PRICE Whether the Soviet Union will fulfill\nits buying obligations under the U.S./USSR grains agreement\ndepends entirely on the United States, a Soviet trade official\ntold Reuters.\n    \"How can I tell that we are ready to fulfill the agreement\nif the United States does not want to offer us grain at\ncompetitive prices?\" said Albert Melnikov, deputy trade\nrepresentative of the Soviet Union to the United States.\n    \"We are in the marke [...]
+'LEASEWAY TRANSPORTATION CORP &lt;LTC> QTLY DIV Qtly div 37.5 cts vs 37.5 cts prior\n    Pay April eight\n    Record March 16\n Reuter\n&#3;',0
+'PERU SUGAR HARVEST SEEN LOWER -- USDA Sugar production in Peru for the\n1986/87 season has been revised to 593,000 tonnes (raw value),\ndown 10 pct from the previous forecast and 21 pct below the\n1985/86 harvest, the U.S. Agriculture Department said in its\nWorld Production and Trade Report.\n    It said while rains in the northern mountain region are\nimproving the supply of irrigation water, the major benefits\nwill not occur until the 1987/88 season.\n Reuter\n&#3;',0
+'ITEL &lt;ITEL> GETS FINANCING FOR ANIXTER BUY Itel Corp said it obtained commitments\nfrom a syndicate of banks for a six-year secured loan of about\n325 mln dlrs and had separately filed registration statements\nfor two public offerings for a total of 150 mln dlrs to fund\nits December 1986 acquisition of &lt;Anixter Bros Inc>.\n    It said one of the offerings will be a new 75 mln dlrs\nissue of convertible exchangeable series C preferred and the\nother will be a 75 mln dlr issue of s [...]
+'GREAT AMERICAN &lt;GTA> GAINS OVER 80 MLN IN LOANS Great American First Savings Bank said\nthe bank recorded gains exceeding 80 mln dlrs on sales of loans\nand mortgage securities valued at 1.1 billion dlrs.\n    The San Diego-based bank said in a prepared release of its\nreport to analysts here that the gains included 6.6 mln dlrs in\narbitrage profits from the premium paid for the separation of\ninterest and principal components of new Federal National\nMortgage Association strip secu [...]
+'TANDY BRANDS &lt;TAB> SELLS UNIT Tandy Brands Inc said it sold\nits Grate Home and Fireplace division to an investor group that\nincludes some members of Grate\'s management for 1,600,000 dlrs\nin cash and secured notes.\n    The company said the sale will not materially offset the\n9,848,000 dlr non-recurring charge it took against the sale of\nthe division.\n Reuter\n&#3;',0
+'AMERICAN FARM BUREAU OPPOSES FARM BILL CHANGES The directors of the American Farm\nBureau, the nation\'s largest farm organization, voted Tuesday\nto urge Congress to leave the 1985 farm bill in place without\nalterations.\n    \"We are solidly opposed to opening up the 1985 farm bill,\"\nsaid Dean Kleckner, president. \"The current farm bill has been\nin place for just a little over a year and in our judgment\nthere is more to be gained at the present time from maintaining\nthe legisla [...]
+'BROWING-FERRIS &lt;BFI> DECLARES 2-FOR-1 SPLIT Browning-Ferris Industires Inc said its\nboard declared a two-for-one stock split payable April 24 to\nholders of record March 31.\n     \n Reuter\n&#3;',0
+'PENNWALT CORP &lt;PSM> QTLY DIVIDEND Qtly div 55 cts vs 55 cts prior\n    Payable May one\n    Record April three\n Reuter\n&#3;',0
+'BANNER INDUSTRIES INC &lt;BNR> COMPLETES PURCHASE Banner Industries Inc said it completed\nthe purchase of all Rexnord Inc &lt;REX> common shares for its\n26.25 dlrs per share cash tender offer that ended Feb\n27, 1987.\n    The purchase follows Banner receiving earlier today 310 mln\ndlrs under a credit agreement with Citicorp Industries Credit\nInc and the Bank of Nova Scotia, and an additional 260 mln dlrs\nfrom offerings made for Banner and its subsidiary through\nDrexel Burnham and [...]
+'MURPHY RAISES CRUDE OIL POSTED PRICES ONE DLR/BBL. WTI TO 17.00 DLRS TODAY\n ',0
+'PHOENIX STEEL RECEIVES OFFER FOR CLAYMONT MILL &lt;Phoenix Steel Corp> said a group\nof investors offered to buy its Clayton steel plate mill for\neight mln dlrs and the assumption of a bond obligation.\n   Phoenix did not disclose the indentity of the investors.\n    Phoenix was forced to close the Clayton mill last month.\n    The company said the offer represents a major step in\nrestructuring the company.\n Reuter\n&#3;',0
+'KEANE INC &lt;KEAN> 4TH QTR Shr 17 cts vs 15 cts\n    Net 229,000 vs 201,000\n    revs 10.5 mln vs 9.9 mln\n    Year\n    Shr 21 cts vs 55 cts\n    Net 283,000 vs 766,000\n    Revs 40.4 mn vs 39.7 mln\n    NOTE:1985 shares adjusted to reflect the distribution of\none share of Class B common stock for every two shares of\ncommon stock held of record as of July 1, 1986.\n Reuter\n&#3;',0
+'VIACOM &lt;VIA> MERGER EXPECTED IN 60 TO 90 DAYS Sumner Redstone, president of National\nAmusements, Inc, predicted he can win regulatory approvals to\nwrap up the 3.4 billion dlr acquisition of Viacom International\nInc in 60 to 90 days.\n    Redstone, 63, catapulted himself into the big leagues of\nentertainment early today when a group of Viacom managers and\ntheir financial backers decided not to top National\'s bid.\n    \"We\'ve had counsel working for some time in every region\nw [...]
+'BRITISH AIDE CRITICIZES U.S.PROTECTIONISM A senior British official said that\nprotectionist bills being considered by Congress could trigger\nretaliation by the European Community (EEC) and threaten the\nglobal trading system.\n    Paul Channon, secretary for trade and industry, said if\nCongress passed legislation to curb textile imports, which\nwould hit EC shipments as well as shipments from major Asian\ntextile producers, \"the community would have to retaliate.\"\n    His comments [...]
+'YEUTTER SEEKS STRONGER TAIWAN, S.KOREA CURRENCIES U.S. Trade Representative Clayton\nYeutter said he hoped the U.S. dollar would continue to decline\nin relation to the currencies of Taiwan and South Korea as a\nway to improve the U.S. trade picture.\n    Testifying before the House Appropriations subcommittee\nwhich must approve his agency\'s 1988 budget, he said, \"In my\njudgment economic factors justify a continued decline.\"\n    Asked by a committee member if he expected a further [...]
+'NL INDUSTRIES INC &lt;NL> SET REGULAR PAYOUT Qtly div five cts vs five cts prior\n    Pay March 31\n    Record March 16\n Reuter\n&#3;',0
+'CHINA SUGAR OUTPUT SEEN LOWER -- USDA China\'s 1986/87 sugar crop has been\nrevised to 5.26 mln tonnes (raw value), down four pct from the\nprevious forecast and five pct below the previous season, the\nU.S. Agriculture Department said.\n    In its World Production and Trade Report, the department\nattributed the decline to relatively poor profitability of\nsugar, causing harvested area of cane and beets to decline\nseven pct from 1985/86.\n    Beet sugar production for 1986/87 is now e [...]
+'GENERAL HOST &lt;GH> SEES YEAR LOSS General Host Corp said it will\nreport a loss from continuing operations and a sharp decline in\nnet income for the year ended January 25, 1987, due to\nsubstantial operating losses in its Frank\'s Nursery and Crafts\nunit. For the year ended January 25, 1986, General reported net\nincome of 29.7 mln dlrs.\n    The company said it discovered problems in its unit\'s\ncomputerized accounts payable system. It said results of its\nother nursery and craft  [...]
+'MEDTRONIC INC &lt;MDT> SETS PAYOUT Qtly dividend 22 cts vs 22 cts\n    Pay April 30\n    Record April 10\n Reuter\n&#3;',0
+'LOUISVILLE GAS AND ELECTRIC CO &lt;LOU> DIVIDEND Qtly dividend 65 cts vs 65 cts\n    Pay April 15\n    Record March 31\n Reuter\n&#3;',0
+'KAISER ALUMINUM &lt;KLU> RAISES PRODUCT PRICES Kaiser Aluminum and Chemical\nCorp said it is increasing prices for a broad range of common\nalloy coil, flat sheet and plate products.\n    The company said prices to distributors and direct\ncustomers on shipments of new orders placed March 4 and after\nwill be increased by four to eight cts per lb.\n    Kaiser said the increases are due to increased demand and\nthe need to set prices relative to the cost of primary\naluminum.\n Reuter\n&#3;',0
+'ROBERTSON UPS CAPITAL WIRE&lt;CWCC> STAKE TO 12 PCT New York investor Julian Robertson\nand several investment partnerships he controls said they\nraised their stake in Capital Wire and Cable Corp to 481,800\nshares, or 12.2 pct of the total, from 430,200, or 10.9 pct.\n    In a filing with the Securities and Exchange Commission\nRobertson and his Tiger, Jaguar, Puma and Tiger Management Co\nentities said they bought 51,600 Capital Wire common shares\nbetween Feb 3 and 17 at 13.25 dlrs  [...]
+'TWA &lt;TWA> TANGLES PIEDMONT &lt;PIE> SITUATION Trans World Airlines Inc complicated\nthe bidding for Piedmont Aviation Inc by offering either to buy\nPiedmont suitor USAir Group or, alternatively, to merge with\nPiedmont and USAir.\n    Piedmont\'s board was meeting today, and Wall Street\nspeculated the board was discussing opposing bids from Norfolk\nSouthern Corp and USAir. The TWA offer was announced shortly\nafter the Piedmont board meeting was scheduled to begin.\n    TWA offere [...]
+'FOREST OIL CORP &lt;FOIL> 4TH QTR Shr loss 29 cts vs profit eight cts\n    Net loss 2.0 mln vs profit 568,000\n    year\n    Shr loss 1.37 dlrs vs profit 88 cts\n    Net loss 9.3 mln vs profit 6.0 mln\n Reuter\n&#3;',0
+'YEUTTER PLANS TRADE TRIP TO CHINA THIS SUMMER U.S. Trade Representative Clayton\nYeutter said he plans a July trip to China to discuss trade\nissues including China\'s admission to the General Agreements on\nTariffs and Trade.\n    Yeutter told a congressional hearing it was possible China\ncould be a member of GATT before the end of the year.\n    \"They are making major moves to becoming a full scale member\nof the world economy,\" he told the House Appropriations\nsubcommittee which  [...]
+'RIO COFFEE TRADE PREFERS NO PACT TO QUOTA CUT The failure of talks to introduce\nnew coffee export quotas within the International Coffee\nAgreement, ICA, was preferable to the alternative of Brazil\nhaving a sharply reduced quota, as had been proposed, President\nof the Rio de Janeiro Coffee Trade Association Carlos Calmon\nsaid.\n    He told Reuters proposals to reduce Brazil\'s quota to 25\npct of the world share from 30 pct at present were unacceptable\nas the country has large stoc [...]
+'ISRAEL TENDERS TONIGHT FOR CORN AND/OR SORGHUM Israel will tender overnight for\n33,000 long tons of U.S. sorghum and/or 22,000 long tons of\nU.S. corn for April shipment, private export sources said.\n Reuter\n&#3;',1
+'U.S. CABINET COUNCIL SET TO MULL FARM ISSUES The Reagan administration\'s\ncabinet-level Economic Policy Council is scheduled to meet\nFriday to discuss, among other issues, the status of\nagricultural legislation, administration officials said.\n    The officials said discussion of a U.S. Agriculture\nDepartment wheat export subsidy to the Soviet Union was not on\nthe agenda. Matters not on the agenda, however, can be brought\nbefore the council, the officials said.\n    Grain trade of [...]
+'UNICORP AMERICAN CORP &lt;UAC> 4TH QTR NET Shr 13 cts vs 70 cts\n    Net 1,538,000 vs 8,614,000\n    Revs 16.4 mln vs 19.6 mln\n    12 mths\n    Shr 89 cts vs 2.43 dlrs\n    Net 10.3 mln vs 29.8 mln\n    Revs 56.2 mln vs 83.8 mln\n    Note: 1986 net is before preferred dividend payments and\nincludes after-tax gain from sale of real estate properties of\n12.9 mln dlrs.\n Reuter\n&#3;',0
+'BANNER &lt;BNR> COMPLETES REXNORD SHARE PURCHASE Banner Industries Inc said it completed\nthe previously announced purchase of Rexnord Inc &lt;REX>. It said\nit owns 96 pct of Rexnord\'s outstanding following the purchase\nof all Rexnord\'s common validly tendered pursuant to its 26.25\ndlr per share cash tender offer ended February 27.\n    Banner also said it received 310 mln dlrs pursuant to a\ncredit agreement with &lt;Citicorp Industrial Credit Inc> and the\n&lt;Bank of Nova Scotia [...]
+'U.S. REAFFIRMS OPPOSITION TO EC OILS TAX PLAN A meeting among government agencies\ntoday reaffirmed the strong opposition of the United States to\na proposed new tax on vegetable oils and fats in the European\nCommunity, U.S. trade officials said.\n    Representatives of the major government agencies agreed at\na trade policy review group meeting, which includes officials\nof the deputy secretary rank, to continue diplomatic pressure\non EC member states.\n    \"We (all agencies) are to [...]
+'&lt;CCL INDUSTRIES INC> 4TH QTR NET Shr 15 cts vs 18 cts\n    Net 4,500,000 vs 5,300,000\n    Revs 156.7 mln vs 152.0 mln\n    YEAR\n    Shr 72 cts vs 1.11 dlrs\n    Net 21.7 mln vs 33.0 mln\n    Revs 695.4 mln vs 653.5 mln\n    Note: Shr profit relates to class B non-voting shares.\n Reuter\n&#3;',0
+'EIA SAYS DISTILLATE STOCKS OFF 3.4 MLN BBLS, GASOLINE OFF 100,000, CRUDE UP 3.2 MLN\n ',0
+'(G.T.C. TRANSCONTINENTAL GROUP LTD) 1ST QTR NET Shr 11 cts vs nine cts\n    Net 2.1 mln vs 1.6 mln\n    Revs 60.8 mln vs 32.9 mln\n    Avg shrs 19.7 mln vs 17.2 mln\n    Note: period ended January 31.\nREUTER\n Reuter\n&#3;',0
+'PIEDMONT AVIATION RECESSES MEETING WITHOUT TAKING ACTION ON MERGER PROPOSALS\n ',0
+'EIA SAYS DISTILLATE, GAS STOCKS OFF IN WEEK Distillate fuel stocks held in\nprimary storage fell by 3.4 mln barrels in the week ended Feb\n27 to 128.4 mln barrels, the Energy Information Administration\n(EIA) said.\n    In its weekly petroleum status report, the Department of\nEnergy agency said gasoline stocks were off 100,000 barrels in\nthe week to 251.5 mln barrels and refinery crude oil stocks\nwere up 3.2 mln barrels to 333.0 mln.\n    The EIA said residual fuel stocks fell 2.2 ml [...]
+'CANADA CENTRAL BANK HEAD SEES MODERATE GROWTH Bank of Canada Governor John Crow said he\nexpects the Canadian economy will grow moderately in the coming\nyear, despite the near flat growth in the final quarter of\n1986.\n    \"We see moderate growth,\" Crow told a news conference\nfollowing presentation of the central bank\'s annual report in\nthe House of Commons today.\n    He said there were positive signs of growth in the economy,\nparticularly the drawdown of business inventories i [...]
+'ALLIS-CHALMERS &lt;AH> PROPOSES RESTRUCTURING Allis-Chalmers Corp said it asked\nlenders and other groups to approve a restructuring plan that\nwould cause a dilution of the company\'s existing common stock.\n    The company said it would sell all of its businesses other\nthan the American Air Filter business, make a public financing\nof more than 100 mln dlrs and pay part of the currently\noutstanding debt with the proceeds.\n    Under the plan, which was presented to institutional\nle [...]
+'AMVESTORS FINANCIAL CORP &lt;AVFC> 4TH QTR NET Oper shr profit 11 cts vs loss 27 cts\n    Oper net profit 662,625 vs loss 774,002\n    Revs 43.9 mln vs 18.4 mln\n    Year\n    Oper shr profit 37 cts vs loss 37 cts\n    Oper net profit 1,487,796 vs loss 1,119,626\n    Revs 150.1 mln vs 51.7 mln\n    NOTE: 1986 4th qtr and yr oper net excludes 6,134 dlrs and\n720,500 dlrs or 20 cts per share, respectively, for realized\ninvestment gains.\n    1986 qtr and yr oper net also excludes 102,300 [...]
+'PIEDMONT &lt;PIE> TAKES NO ACTION Piedmont Aviation Inc said\nits board meeting recessed today without taking action on\nproposals to combine Piedmont with other corporations.\n    Piedmont has received opposing bids from Norfolk Southern\nCorp and US Air Corp.\n    Earlier today, Trans World Airlines Inc offered to either\nbuy Piedmont suitor US Air or, alternatively, to merge with\nPiedmont and U.S. Air.\n    IN a prepared statement, Piedmont said there would be no\nfurther announceme [...]
+'YEUTTER CONCERNED ABOUT U.S. EXPORT PICTURE U.S. Trade Representative Clayton\nYeutter said he expects imports to fall soon but he was\nconcerned about the lack of improvement in U.S. exports given\nthe dollar\'s decline in the last 18 months.\n    \"I\'m convinced we\'re about to see an improvement on the\nimport side. I\'m more concerned about the export side,\" he told\na House Appropriations subcommittee.\n    Part of the blame goes on other countries which have not\ngenerated the e [...]
+'HOUSE TRADE BILL DRAFTING POSTPONED The House Ways and Means trade\nsubcommittee postponed until next week its opening session to\nstart drafting major changes to U.S. trade laws, a committee\naide said.\n    The subcommittee had not yet completed the preparatory work\nto start writing the legislation, the aide said.\n Reuter\n&#3;',0
+'&lt;LUMONICS INC> YEAR LOSS Oper shr loss 20 cts vs profit 66 cts\n    Oper net loss 1,995,000 vs profit 5,820,000\n    Revs 65.2 mln vs 53.0 mln\n    Avg shrs 9,891,000 vs 8,811,000\n    Note: 1986 loss excludes extraordinary loss of 2,413,000\ndlrs or 25 cts shr including corporate reorganization,\ndiscontinuing of U.S. operations and inventory writedown of\nU.S. subsidiaries vs yr-ago loss of 3,140,000 dlrs or 36 cts\nshr.\n Reuter\n&#3;',0
+'HCC INDUSTRIES &lt;HCCI> QUARTERLY DIVIDEND Qtly div three cts vs three cts\n    Pay March 27\n    Record March 16\n Reuter\n&#3;',0
+'SOUTHLAND &lt;SLC> UNIT RAISES CRUDE PRICES Southland Corp\'s Citgo Petrleum Corp\nsaid it raised the contract price it will pay for all grades of\ncrude oil by one dlr a barrel, effective today.\n    The increase brings Citgo\'s posted price for West Texas\nIntermediate to 17.00 dlrs a bbl. West Texas Sour is also now\npriced at 17.00 dlrs/bbl, and Light Louisiana South is posted\nat 17.35 dlrs/bbl.\n    On February 25 Citgo lowered its crude postings 50 cts to\n1.50 dlrs per bbl, and  [...]
+'&lt;WESTERN SECURITY BANK> 4TH QTR NET Shr profit ten cts vs loss six cts\n    Net profit 43,000 vs loss 26,000\n    Year\n    Shr profit 46 cts vs profit 12 cts\n    Net profit 193,294 vs profit 51,029\n    Assets 44.4 mln vs 25.3 mln\n    Deposits 40.0 mln vs 21.4 mln\n    Loans 25.3 mln vs 15.2 mln\n Reuter\n&#3;',0
+'RECENT U.S. OIL DEMAND UP 2.1 PCT FROM YEAR AGO U.S. oil demand as measured by\nproducts supplied rose 2.1 pct in the four weeks ended February\n27 to 16.39 mln barrels per day (bpd) from 16.05 mln in the\nsame period a year ago, the Energy Information Administration\n(EIA) said.\n    In its weekly petroleum status report, the Energy\nDepartment agency said distillate demand was down 2.1 pct in\nthe period to 3.37 mln bpd from 3.44 mln a year earlier.\n    Gasoline demand averaged 6.60  [...]
+'COFFEE PRICE DROP NOT AFFECTING COLOMBIA\'S DEBT the sharp fall in international coffee\nprices will not affect colombia\'s external credit situation,\nfinance minister cesar gaviria told reuters.\n    \"our foreign debt is high, but we can pay, and I hope the\nforeign banking community will maintain its position toward us,\"\nhe said.\n    He said the current decline on world coffee markets was not\ntotally unexpected and would have no immediate bearing on\ncolombia\'s financial state, [...]
+'USDA WOULD SCRAP COTTON, RICE, BEAN PRICE FLOORS The package of proposed farm policy\nchanges that the Reagan administration sent to Congress today\nincludes a provision that would eliminate minimum price support\nlevels for upland cotton, rice and soybeans.\n    The package, obtained by Reuters, also includes a\nprovision, outlined in advance by USDA officials, that would\nincrease the annual permissible cut in the basic price support\nlevels for all major crops to 10 pct from five pct [...]
+'SOUTH AFRICAN FOREIGN RESERVES UP SHARPLY South Africa\'s total gold and\nforeign assets rose by 700 mln rand in February to 6.2 billion\nrand after rising by almost one billion rand in January,\nReserve Bank Governor Gerhard de Kock said.\n    De Kock, interviewed on state-run television, gave no\nbreakdown of the reserves.\n    He also said that to curb inflation, salary increases would\nhave to be below the inflation rate. The state must set an\nexample by keeping wage increases belo [...]
+'WTC INTERNATIONAL &lt;WAF> SETS SOUTH AFRICA TRUST WTC International N.V. said it\nhas sold its affiliates in South Africa to an independent\ntrust, created to continue the operations in that country.\n    The purchase price was about 8.4 mln dlrs, represented by a\nten-year interest-bearing note, payable annually at 11 pct, to\nbe paid by the trust out of proceeds from the South African\noperations, the company said.\n    WTC said its board concluded in view of the social,\npolitical a [...]
+'IVORY COAST SAYS COFFEE PRICE FALL SHORT-LIVED Ivory Coast today predicted that the\npresent coffee price crash recorded after the collapse of the\nrecent International Coffee Organisation (ICO) meeting in\nLondon would not last long.\n    Commenting on Monday\'s failure by producer and consumer\nnations to agree on new export quotas needed to tighten an\noversupplied coffee market, Ivorian Agriculture Minister Denis\nBra Kanon told reporters that traders would eventually be\nobliged to [...]
+'N.Z. CURRENT ACCOUNT DEFICIT NARROWS IN JANUARY New Zealand\'s current account deficit\nnarrowed to 180 mln N.Z. Dlrs in January from 203 mln, revised\nfrom 207 mln, in December and 305 mln in January 1986, in a\nsmoothed measurement, the Statistics Department said.\n    Unsmoothed figures show a deficit of 162 mln dlrs for\nJanuary against 107 mln, revised from 75 mln for December 1986\nand 575 mln in January 1986.\n    The smoothed series -- adjusted to iron out random\nfluctuations - [...]
+'REAGAN\'S REMARKS HELP GOLD TO RECOVER IN HONG KONG Gold rose by about 50 U.S. Cents an\nounce, following a statement by President Ronald Reagan that\nthe arms-for-hostages deal with Iran \"was a mistake,\" dealers\nsaid.\n    Bullion rose to 409.40/90 dlrs from an initial low of\n408.90/409.40. This compares with the opening of 409.00/50 and\nNew York\'s close of 410.00/50.\n    Dealers noted mild short-covering in the metal after some\ninitial selling by local investors. Trading was f [...]
+'TAIWAN ISSUES MORE CDS TO CURB MONEY SUPPLY GROWTH The central bank has issued 7.08 billion\ndlrs worth of certificates of deposit (CDs), bringing the value\nof CD issues so far this year to 93.29 billion, a bank\nspokesman told Reuters.\n    The new CDs, with maturities of six months, one year and\ntwo years, carry interest rates ranging from 3.9 to 5.15 pct.\n    The issues are designed to help curb the growth of the M-1B\nmoney supply which has expanded along with Taiwan\'s foreign\n [...]
+'UNUSUALLY DRY WEATHER AFFECTS CHINA\'S AGRICULTURE Abnormally warm and dry weather over most\nparts of China is seriously affecting crops, the New China News\nAgency said.\n    It said the drought has made rice planting difficult in\neight provinces, including Guangxi, Sichuan and Hunan. Plant\ndiseases and insect pests have increased in wheat-producing\nareas, it said.\n    The agency said some areas of Guangxi, Hubei, Shanxi and\nother provinces have been suffering a drought for more  [...]
+'TAIWAN SHIPBUILDER LOOKS FOR JAPANESE VENTURES Taiwan\'s state-owned China Shipbuilding\nCorp (CSBC) plans to seek joint production agreements with\nJapan and further diversify into ship repairing to try to trim\nits debts, chairman Louis Lo said.\n    He told Reuters in an interview that CSBC\'s first joint\nproduction venture, to build two hulls for &lt;Onomichi Dockyard\nCo Ltd>, was a success. Talks on similar projects have been\nheld with other Japanese firms, including Mitsubishi  [...]
+'CREDITORS SEEK SWIFT RESCUE PACKAGE FOR JAPAN LINE A group of creditor banks hopes to work\nout a rescue package for Japan Line Ltd &lt;JLIT.T>, one of the\nworld\'s largest tanker operators, by the end of Japan\'s\nbusiness year on March 31, a spokesman for the Industrial Bank\nof Japan Ltd &lt;IBJT.T> (IBJ) said.\n    Japan Line\'s cumulative debt was 68.98 billion yen at the\nend of September, which exceeded shareholders\' equities and\nreserves totalling 63.40 billion.\n    In Decem [...]
+'AUSTRALIAN WHEAT EXPORTS RISE IN FEBRUARY Australian wheat shipments rose to\n1.33 mln tonnes in February from 1.01 mln in January, an\nAustralian Wheat Board official said.\n    February\'s shipments were down on the 1.54 mln tonnes\nshipped in February 1986.\n    Cumulative shipments for the first five months of the\nOctober/September wheat year were 6.12 mln tonnes, as against\n6.54 mln a year earlier, the official said.\n    The major destinations in February were: China (419,196\nt [...]
+'OPEC STICKING FIRM ON OFFICIAL PRICES - SUBROTO OPEC countries are all sticking firmly to\nofficial crude oil prices but the volatility of spot prices is\nlikely to continue into the third quarter, Indonesian Minister\nof Mines and Energy Subroto told Reuters.\n    Subroto, attending a Pacific Energy Cooperation conference,\nblamed recent rapid spot price changes on unbalanced supply and\ndemand. \"If we stick to the production limitation, the third\nquarter will be in better balance.\" [...]
+'THAI COFFEE EXPORTS RISE IN 1986 Thai coffee exports rose to 22,068\ntonnes in 1986 from 20,430 a year earlier, the Customs\nDepartment said.\n REUTER\n&#3;',0
+'SOUTH KOREAN MONEY SUPPLY RISES IN FEBRUARY South Korea\'s M-2 money supply rose 0.39\npct to 33,992.0 billion won in February from 33,858.4 billion\nin January, when it fell a revised 0.04 pct from December,\nprovisional Bank of Korea figures show.\n    The February figure was up 18.89 pct from a year earlier.\n    M-1 money supply rose 4.13 pct to 8,492.1 billion won in\nFebruary from January, when it fell 7.82 pct from December. The\nFebruary figure marked a year-on-year rise of 18.4 [...]
+'PAKISTAN\'S FOREIGN EXCHANGE RESERVES FALL Pakistan\'s foreign exchange reserves\nfell to 8.43 billion rupees in February from 8.96 billion in\nJanuary, compared with 12.97 billion in February 1986, the\nState Bank of Pakistan said.\n    The bank gave no reason for the fall but local bankers said\nbig import bills had affected the reserves.\n    The Federal Bureau of Statistics has not yet released last\nmonth\'s import and export figures.\n REUTER\n&#3;',0
+'THAILAND REDUCES MAIN RICE CROP PROJECTION Thailand\'s main paddy crop is expected\nto fall to 15.4 mln tonnes in the 1986/87 (Nov/Oct) season from\na previous 15.68 mln estimate in November and an actual 17.35\nmln a year ago, the Thai Rice Mills Association said.\n    It said a joint field survey late last month by the\nassociation, the Commerce Ministry and the Bank of Thailand\nindicated that paddy output in Thailand\'s northeast region is\nlower than expected because of a drought i [...]
+'HOECHST GROUP PRE-TAX PROFIT FALLS IN 1986 Hoechst AG &lt;HFAG.F> said its group\npre-tax profit in 1986 would be slightly lower than the 3.16\nbillion marks posted in 1985, while parent company pre-tax\nprofits rose slightly from the 1.62 billion in 1985.\n    Group turnover fell slightly to 38 billion marks from 42.72\nbillion in 1985, and parent company turnover fell to around 14\nbillion marks from 15.35 billion, the company said in a\nstatement.\n REUTER\n&#3;',0
+'BHP TO FLOAT GOLD UNIT WITH ONE-FOR-THREE ISSUE The Broken Hill Pty Co Ltd &lt;BRKN.S>\n(BHP) said it plans a renounceable one-for-three issue of\nrights to float a new company, &lt;BHP Gold Mines Ltd> (BHPGM),\nwhich will hold most of BHP\'s gold interests.\n    In a statement BHP said the 25-cent par rights would be\npriced at 50 cents for 430 mln of the BHPGM shares on offer.\nBHP will subscribe for the remaining 540 mln shares, or 56 pct\nof issued capital, on the same terms.\n    B [...]
+'HK BANK EXPECTED TO POST 10 TO 13 PCT PROFIT RISE The Hongkong and Shanghai Banking Corp\n&lt;HKBH.HK> is likely to show a rise in profit of between 10 and\n13 pct for 1986, reflecting stronger than expected loan growth,\nshare analysts polled by Reuters said.\n    Their estimates of the bank\'s net earnings for last year\nranged from 2.99 to 3.1 billion H.K. Dlrs. Results will be\nannounced on Tuesday. The 1985 net profit was 2.72 billion.\n    They forecast a final dividend of 29 cent [...]
+'HUGHES TOOL DIRECTORS REJECT MERGER WITH BAKER The directors of Hughes Tool Co\n&lt;HT> said they would recommend to shareholders that they reject\na merger with Baker International Corp &lt;BKO> today.\n    Hughes vice-president Ike Kerridge said the recommendation\nwould be put to shareholders at a meeting scheduled for 10 A.M.\nLocal time (1600 GMT) to discuss the proposed merger.\n    Kerridge said the board met yesterday to discuss the merger\nbut decided against it.\n    The Hughe [...]
+'CANON INC (CANN.T) YEAR ENDED DECMEBER 31 Group shr 18.34 yen vs 58.72\n    Net 10.73 billion yen vs 37.06 billion\n    Pretax 27.76 billion yen vs 84.78 billion\n    Operating 30.06 billion yen vs 88.81 billion\n    Sales 889.22 billion vs 955.78 billion\n    Note - The company attributed the profit fall largely to\nthe yen\'s appreciation during the period. Domestic sales rose\n0.4 pct to 274.17 billion yen from a year earlier while exports\ndeclined 9.9 pct to 615.04 billion.\n REUTE [...]
+'NEW CURRENCY PROBLEM SEEN AMONG U.S, EUROPE, JAPAN The highly visible drama involving the\nyen\'s sharp rise against the U.S. Dollar is obscuring the fact\nthat the Japanese currency has hardly budged against major\nEuropean currencies, thus creating a new set of exchange rate\ndistortions, Japanese and European research officials said.\n    The officials, looking beneath the rhetoric of statements\nby the Group of Five (G-5) industrial nations, told Reuters the\ncurrency movements of t [...]
+'THAI TIN EXPORTS RISE IN JANUARY Thailand exported 1,816 tonnes of tin\nmetal in January, up from 1,731 in December and 1,330 a year\nago, the Mineral Resources Department said.\n    It said major buyers last month were Singapore, Japan,\nBritain, the Netherlands, Malaysia and the U.S.\n REUTER\n&#3;',0
+'U.K. MONEY MARKET OFFERED EARLY ASSISTANCE The Bank of England said it had invited\nan early round of bill offers from the discount houses. The\nBank forecast the shortage in the system today at around 1.15\nbillion stg.\n    Among the main factors affecting liquidity, bills maturing\nin official hands and the take-up of treasury bills will drain\nsome 732 mln stg and exchequer transactions some 245 mln. In\naddition, bankers\' balances below target and a rise in note\ncirculation will  [...]
+'BELGOLUX TRADE MOVES INTO SURPLUS IN 1986 The Belgo-Luxembourg Economic Union\n(BLEU) moved into a narrow trade surplus of 4.7 billion francs\nin 1986 after a 140.4 billion franc deficit in 1985, figures\ngiven by a spokesman for the National Statistics Institute\nshow.\n    He said imports fell last year to 3,061.8 billion francs\nfrom 3,304.1 in 1985 while exports were also lower at 3,066.6\nbillion francs against 3,163.7 billion.\n    In December, the BLEU had an 11.9 billion franc t [...]
+'SPAIN RAISES BANKS\' RESERVE REQUIREMENT The Bank of Spain said it raised the\nreserve requirement for banks and savings banks to 19 pct of\ndeposits from 18 pct to drain excess liquidity which threatened\nmoney supply and inflation targets.\n    In a statement issued late last night, the central bank\nsaid the measure would take effect from March 13.\n    \"In recent weeks, there has been excess liquidity in the\nSpanish economy which, if not controlled, would threaten the\nmonetary an [...]
+'INDIA AND JAPAN TO DISCUSS IRON ORE PRICES The state-owned Minerals and Metals\nTrading Corp will send a team to Japan next week to negotiate\nan iron ore export contract for 1987/88 beginning April 1,\ntrade sources said.\n    Japan, the biggest buyer of Indian iron ore with imports of\naround 23 mln tonnes a year, has asked India to reduce prices\nfrom the current average of 18 dlrs a tonne, the sources said.\n    \"Japan has said it may be forced to reduce ore imports from\nIndia nex [...]
+'TAIWAN FOREIGN EXCHANGE RESERVES HIT NEW HIGH Taiwan\'s foreign exchange reserves hit a\nnew high of more than 51 billion U.S. Dlrs on March 4, compared\nwith 50 billion in mid-February and 25.1 billion a year\nearlier, the central bank said.\n    Bank governor Chang Chi-Cheng told reporters the increase\ncame mainly from the bank\'s purchases of more than one billion\nU.S. Dlrs on the local interbank market between February 18 and\nMarch 4.\n    He said the rise showed signs of slowing [...]
+'BELGIAN ECU COIN ISSUE PRICED, SALE DATE SET A limited Belgian issue of silver Ecu\ncoins with a face value of five Ecus will go on sale from March\n23 at a price of 500 Belgian francs each, a Finance Ministry\nspokesman said.\n    Gold Ecu coins with a face value of 50 Ecus will be sold\nfrom the same day. The spokesman told Reuters the price for\nthese would be fixed just before they go on sale but was likely\nto be between 8,500 and 9,000 francs.\n    At least two mln silver coins an [...]
+'U.K. MONEY MARKET GIVEN 17 MLN STG EARLY HELP The Bank of England said it provided just\n17 mln stg assistance to the money market in response to an\nearly round of bill offers.\n    Earlier, the Bank had estimated the shortage in the system\ntoday at around 1.15 billion stg.\n    The central bank purchased bills for resale to the market\non April 2 at an interest rate of 10-15/16 pct.\n REUTER\n&#3;',0
+'FIRS SLIGHTLY RAISES EC BEET SUGAR OUTPUT ESTIMATE The French sugar market intervention\nboard, FIRS, raised its estimate of 1986/87 beet sugar\nproduction in the 12-member European Community to 13.76 mln\ntonnes white equivalent in its end-February report from 13.74\nmln a month earlier.\n    Its forecast for total EC sugar production, including cane\nand molasses, rose to 14.10 mln tonnes from 14.09 mln.\nPortugal, which joined the Community in January 1986, was\nestimated at 12.75 ml [...]
+'PAPUA NEW GUINEA PLANS RESOURCES INVESTMENT AGENCY The Papua New Guinea Government\nwill establish a public corporation to invest in resources\nprojects, Minerals and Energy Minister John Kaputin said.\n    \"We intend to provide a means through which less privileged\nindividuals can become part owners and beneficiaries from the\ndevelopment of mining and petroleum projects,\" he told\nParliament.\n    Existing policy allowing the state up to 30 pct equity in\nmajor mining projects and  [...]
+'NIGERIAN CURRENCY FIRMS AT LATEST AUCTION The Nigerian naira firmed 2.6 pct against\nthe dollar after 17 banks were disqualified from bidding at\ntoday\'s weekly foreign exchange auction, the central bank said.\nThe naira finished at 3.8050 to the dollar, against 3.9050 last\nweek.\n    Only 38.39 mln dlrs of the 50 mln dlrs on offer was sold,\nwith all 27 bidding banks successfully obtaining hard currency.\n    The effective rate, including a central bank levy, for\ntransactions in the [...]
+'U.S. TELLS JAPAN TO DO MORE TO CUT TRADE SURPLUS U.S. Undersecretary of State for Economic\nAffairs Allen Wallis said he had urged Japan to do much more to\nreduce its large trade surplus with the United States.\n    \"Our central message to Japan this week was that while we\nhave made progress in some areas, much needs to be done,\" he\ntold a press conference after three days of talks.\n    \"What we need is a resolution of trade issues, we need\nvisible efforts to restructure the eco [...]
+'TAIWAN BUYS 60,000 TONNES OF U.S. MAIZE The joint committee of Taiwan\'s maize\nimporters has awarded contracts to two U.S. Companies to supply\ntwo shipments of maize, totalling 60,000 tonnes, a committee\nspokesman told Reuters.\n    Continental Grain Co of New York received the first 30,000\ntonne cargo contract, priced at 93.86 U.S. Dlrs per tonne,\nwhile Peavey Co of Minneapolis won the second shipment, also\n30,000 tonnes, at 93.36 dlrs per tonne.\n    Both shipments are c and f T [...]
+'GERMAN ECONOMIC OUTLOOK SEEN FAIRLY BRIGHT The outlook for the West\nGerman economy is relatively bright, with gross national\nproduct expected to expand by three pct this year, Kiel\nUniversity\'s Institute for World Economy said.\n    The GNP forecast by the institute, one of five leading\neconomic research bodies in West Germany, is more optimistic\nthan that of the other institutes, some of which have recently\nreduced their GNP forecasts to between two and 2.5 pct.\n    In a report [...]
+'CREDITOR BANKS MAY BUY INTO SINGAPORE COFFEE FIRM The nine creditor banks of the\nSingapore coffee trader &lt;Teck Hock and Co (Pte) Ltd> are\nthinking of buying a controlling stake in the company\nthemselves, a creditor bank official said.\n    Since last December the banks have been allowing the\ncompany to postpone loan repayments while they try to find an\noverseas commodity company to make an offer for the firm.\n    At least one company has expressed interest and\nnegotiations are [...]
+'U.K. 4TH QTR TRADE DEFICIT 2.6 BILLION STG, CURRENT ACCOUNT DEFICIT 760 MLN - OFFICIAL\n ',0
+'ECONOMIC SPOTLIGHT - POLISH SANCTIONS Poland says U.S. Sanctions have cost its\neconomy 15 billion dlrs and has made clear it wants Washington\nto take a lead in repairing the damage after lifting remaining\nrestrictions two weeks ago.\n    Polish officials are unable to provide a precise breakdown\nof the figure, saying it takes into account a number of\nhypothetical losses. Some of them are \"too sophisticated to\nconvert into financial terms,\" one banking source said.\n    But Weste [...]
+'U.K. FOURTH QUARTER TRADE DEFICIT 2.6 BILLION STG Britain had a visible trade deficit of\n2.6 billion stg in the fourth quarter of 1986 against a revised\ndeficit of 2.9 billion in the third quarter, official\nstatistics show.\n    Seasonally-adjusted figures issued by the Central\nStatistical Office (CSO) show the current account was in\ndeficit by 760 mln stg against an upwardly revised third\nquarter shortfall of 930 mln.\n    For 1986 as a whole, visible trade was in deficit by 8.3\ [...]
+'BELGIAN WHOLESALE PRICES FALL IN JANUARY Belgian wholesale prices fell by 5.9\npct in January from a year earlier after a 5.7 pct year on year\nfall in December, figures from the economics ministry show.\n    A ministry spokesman said the wholesale price index, base\n1953 and excluding value added tax, stood at 250.9 in January.\nThis compared with 251.9 in December, 265.5 in Janua~y, 1986\nand 267.2 in December, 1985.\n    In January 1986, wholesale prices were 3.9 pct lower than a\nye [...]
+'CARGILL U.K. STRIKE TALKS POSTPONED TILL MONDAY Talks set for today between management\nand unions to try to solve the labour dispute at Cargill U.K.\nLtd\'s Seaforth oilseed crushing plant have been rescheduled for\nMonday, a company spokesman said.\n    Oilseed processing at the mill has been at a standstill\nsince December 19.\n REUTER\n&#3;',0
+'FRENCH INTERVENTION RATE CUT LIKELY, DEALERS SAY The Bank of France is likely to cut its\nmoney market intervention rate by up to a quarter point at the\nstart of next week.  This follows a steady decline in the call\nmoney rate over the past 10 days and signals from the Finance\nMinistry that the time is ripe for a fall, dealers said.\n    The call money rate peaked at just above nine pct ahead of\nthe meeting of finance ministers from the Group of Five\nindustrial countries and Canada [...]
+'U.K. GRAIN/POTATO FUTURES VOLUME DOWN IN FEBRUARY Traded volumes for U.K. Grain and potato\nfutures in February were down on the previous month while\npigmeat and pig cash settlement futures were higher, official\nfigures show.\n    Combined wheat and barley futures trade declined to 892,700\ntonnes from 1.19 mln in January, and the value fell to 97 mln\nstg from 129 mln, Grain and Feed Trade Association (GAFTA)\nfigures show.\n    A total of 984,960 tonnes were registered for main crop [...]
+'BUNDESBANK LEAVES CREDIT POLICIES UNCHANGED The Bundesbank left credit policies\nunchanged after today\'s regular meeting of its council, a\nspokesman said in answer to enquiries.\n    The West German discount rate remains at 3.0 pct, and the\nLombard emergency financing rate at 5.0 pct.\n REUTER\n&#3;',0
+'TURKEY TO IMPORT 100,000 TONNES OF CRYSTAL SUGAR Turkey has announced a tender to import\n100,000 tonnes of white crystal sugar with an advertisement in\nlocal newspapers.\n    Turkish Sugar Factories said in the advertisement there was\na 50 pct option to increase or decrease the amount and bids\nshould reach it before March 24.\n    The semi-official Anatolian Agency recently quoted Turkish\nMinister of Industry and Trade Cahit Aral as saying Turkey will\nexport 100,000 tonnes of suga [...]
+'U.K. MONEY MARKET GIVEN FURTHER SMALL ASSISTANCE The Bank of England said it provided the\nmoney market with a further 20 mln stg of assistance during the\nmorning. It again bought bills for resale to the market on\nApril 2 at a rate of 10-15/16 pct. Earlier this morning, it\nbought 17 mln stg of bills at the same rate and for resale on\nthe same date.\n    The Bank has thus given a total of 37 mln stg so far today,\nwhich leaves the bulk of a 1.15 billion stg shortage still in\nthe sys [...]
+'ICE UNCHANGED AT SOVIET OIL PORT OF VENTSPILS Ice conditions are unchanged at the\nSoviet Baltic oil port of Ventspils, with continuous and\ncompacted drift ice 15 to 30 cms thick, the latest report of\nthe Finnish Board of Navigation said.\n    Icebreaker assistance to reach Ventspils harbour is needed\nfor normal steel vessels without special reinforcement against\nice, the report said.\n    It gave no details of ice conditions at the other major\nSoviet Baltic export harbour of Klaip [...]
+'SWISS OFFERS NEW SERIES OF MONEY MARKET PAPER The Swiss Finance Ministry is inviting\ntenders for a new series of three-month money market\ncertificates to raise about 150 mln Swiss francs, the Swiss\nNational Bank said.\n    Bids would be due on March 10 and payment on March 12.\n    The last issue of three-month paper conducted on February\n12 yielded 2.969 pct.\n REUTER\n&#3;',0
+'EGYPTIAN CENTRAL BANK DOLLAR RATE UNCHANGED Egypt\'s Central Bank today set the dollar\nrate for commercial banks for March 6 at 1.373/87 dollars,\nunchanged from the previous rate.\n REUTER\n&#3;',0
+'BAKER INTERNATIONAL CORP SUES HUGHES TOOL SEEKING MERGER COMPLETION\n ',0
+'USAIR GROUP REJECTS TRANS WORLD AIRLINES TAKEOVER BID\n ',0
+'EARLY MARCH OPEC OUTPUT SEEN WELL BELOW CEILING OPEC crude oil output in the first few\ndays of March was running at about 14.7 mln bpd, down from a 16\nmln bpd average for February and well below the 15.8 mln bpd\nceiling the group adopted in December, a Reuter survey shows.\n    The figures were polled by Reuters correspondents from oil\ntraders, industry executives and analysts in Europe, the Middle\nEast, Africa, Latin America and Asia.\n    They back recent statements by OPEC minis [...]
+'BAKER &lt;BKO> SUES TO FORCE HUGHES &lt;HT> MERGER Baker International corp said it has\nfiled suit in state court in Houston to compel Hughes Tool Co\nto complete its proposed merger with Baker.\n    Late yesterday, Hughes said it had terminated the merger\nagreement because Baker would not agree to an alternative\ndivestiture plan devised by Hughes.  Hughes\' board had\npreviously found unacceptable a U.S. Justice Department consent\ndecree that would have required broader divestiture [...]
+'SPAIN DEREGULATES BANK DEPOSIT INTEREST RATES Spain\'s Finance Ministry deregulated bank\ndeposit rates in an effort to raise competition among banks and\nbring legislation into line with the European Community (EC), a\nministry spokesman said.\n    The measure was published today in the Official State\nGazette. It takes effect tomorrow and lifts restrictions on\nrates, now limited to six pct on deposits of up to 180 days.\n    The government also enacted a decree cutting to one pct\nfr [...]
+'USAIR &lt;U> REJECTS TWA &lt;TWA> TAKEOVER BID USAir Group Inc said its board has\nrejected Trans World Airlines Inc\'s offer to acquire USAir for\n52 dlrs per share in cash as grossly in adequate and not in the\nbest interests of USAir shareholders, employees or passengers.\n    The company said the unsolicited bid by the Carl C.\nIcahn-led TWA was \"highly conditional.\"\n    USAir said its board and that of Piedmont Aviation Inc\n&lt;PIE> met separately yesterday to consider USAir\'s [...]
+'U.S. FIRST TIME JOBLESS CLAIMS FALL IN WEEK New applications for unemployment\ninsurance benefits fell to a seasonally adjusted 332,900 in the\nweek ended Feb 21 from 368,400 in the prior week, the Labor\nDepartment said.\n    The number of people actually receiving benefits under\nregular state programs totaled 3,014,400 in the week ended Feb\n14, the latest period for which that figure was available.\n    That was up from 2,997,800 the previous week.\n     \n Reuter\n&#3;',0
+'JAGUAR SEES STRONG GROWTH IN NEW MODEL SALES Jaguar Plc &lt;JAGR.L> is about to sell its\nnew XJ-6 model on the U.S. And Japanese markets and expects a\nstrong reception based on its success in the U.K., Chairman Sir\nJohn Egan told a news conference.\n    Commenting on an 11 pct growth in 1986 group turnover to\n830.4 mln stg and pre-tax profits at 120.8 mln stg, slightly\nbelow 1985\'s 121.3 mln, Egan said Jaguar aimed at an average\nprofit growth of 15 pct per year. However, the intr [...]
+'CCC ACCEPTS BONUS BID ON WHEAT FLOUR TO IRAQ The Commodity Credit Corporation,\nCCC, has accepted bids for export bonuses to cover sales of\n25,000 tonnes of wheat flour to Iraq, the U.S. Agriculture\nDepartment said.\n    The department said the bonuses awarded averaged 116.84\ndlrs per tonne.\n    The shipment periods are March 15-April 20 (12,500 tonnes)\nand April 1-May 5 (12,500 tonnes).\n    The bonus awards were made to Peavey Company and will be\npaid in the form of commodities  [...]
+'DIAMOND SHAMROCK RAISES CRUDE POSTED PRICES ONE DLR, EFFECTIVE MARCH 4, WTI NOW 17.00 DLRS/BBL\n ',0
+'NORD RESOURCES CORP &lt;NRD> 4TH QTR NET Shr 19 cts vs 13 cts\n    Net 2,656,000 vs 1,712,000\n    Revs 15.4 mln vs 9,443,000\n    Avg shrs 14.1 mln vs 12.6 mln\n    Year\n    Shr 98 cts vs 77 cts\n    Net 13.8 mln vs 8,928,000\n    Revs 58.8 mln vs 48.5 mln\n    Avg shrs 14.0 mln vs 11.6 mln\n    NOTE: Shr figures adjusted for 3-for-2 split paid Feb 6,\n1987.\n Reuter\n&#3;',0
+'NO QUAKE DAMAGE AT CHUQUICAMATA - MINE SPOKESMAN The earthquake which hit northern Chile\ntoday, registering 7.0 on the open-ended Richter scale, caused\nno damage to the copper mine at Chuquicamata, a mine spokesman\nsaid.\n    Chuquicamata public relations director Guillermo Barcelo\ntold Reuters by telephone from the mine that the quake had\ncaused no problems and operations continued as usual.\n    A spokesman for the state Chilean Copper Commission in\nSantiago confirmed there had  [...]
+'ORBIT INCREASES OIL AND GAS RESERVE VALUES &lt;Orbit Oil and Gas Ltd> said\nthe value of its oil and gas reserves increased by 19 pct to\n52.6 mln dlrs from 44.2 mln dlrs reported at year-end 1985,\naccording to an independent appraisal.\n    Orbit said it has reserves of 2.4 mln barrels of oil and\nnatural gas liquids and 67.2 billion cubic feet of natural gas.\n    In addition, 75 pct owned &lt;Sienna Resources Ltd> has\nCanadian reserves of 173,000 barrels of oil and 1.6 bcf of\nnatu [...]
+'CCC ACCEPTS BONUS BID ON SEMOLINA TO EGYPT The Commodity Credit Corporation,\nCCC, has accepted a bid for an export bonus to cover a sale of\n2,000 tonnes of semolina to Egypt, the U.S. Agriculture\nDepartment said.\n    The department said the bonus was 233.91 dlrs per tonne and\nwas made to International Multifoods Corp. The bonus will be\npaid in the form of commodities from CCC stocks.\n    The semolina is for shipment during June 1987, it said.\n    An additional 13,000 tonnes of s [...]
+'FIVE GROUPS APPLY TO BUY FRENCH TELEPHONE GROUP Five consortia have applied to buy the\nFrench state-owned telephone equipment manufacturer &lt;Cie\nGenerale de Constructions Telephoniques (CGCT)>, which will\ngive the owners control of 16 pct of the French telephone\nswitching market, sources close to Finance Minister Edouard\nBalladur said.\n    The French government has given itself until the end of\nApril to decide which applicant will be accepted, they added.\n    While several for [...]
+'BLIZZARD CLOSES BOSPHORUS Blizzard conditions halted shipping\nthrough the Bosphorus waterway and piled snow up to 70 cms deep\nin central Istanbul, paralysing the city for the second day\nrunning.\n    Snow whipped by 48 kph winds continued to fall on Istanbul\nand northwest Anatolia after 36 hours and weather reports\npredicted no relief for another two days.\n    Port officials said at least six large vessels in the Black\nSea and 13 in the Sea of Marmara were waiting for conditions  [...]
+'JAPAN FUND &lt;JPN> SEEKERS CONFIDENT OF FINANCING The &lt;Sterling Grace Capital Management\nL.P.> group said it is confident financing can be arranged if\nThe Japan Fund\'s board recommend\'s the group\'s acquisition\nproposal.\n    The group, which also includes &lt;Anglo American Security\nFund L.P.> and T.B. Pickens III, Tuesday proposed an entity it\ncontrols acquire for cash all the assets of Japan Fund for 95\npct of the fund\'s aggregate net asset value.\n    The group said it  [...]
+'PEGASUS GOLD INC &lt;PGULF> 3RD QTR DEC 31 NET Shr profit 20 cts vs loss two cts\n    Net profit 2,665,000 vs loss 202,000\n    Revs 12,141,000 vs 5,993,000\n    Nine mths\n    Shr profit 35 cts vs loss 11 cts\n    Net profit 4,653,000 vs loss 1,167,000\n    Revs 35.1 mln vs 18.0 mln\n Reuter\n&#3;',0
+'&lt;KELTIC INC> YEAR NET Shr 99 cts vs 1.25 dlrs\n    Net 418,733 vs 235,572\n    Revs 2,777,425 vs 2,024,116\n    Note: 1986 shr after November, 1986 600,000 class A\nsubordinate floating share issue\n Reuter\n&#3;',0
+'U.K. MONEY MARKET GIVEN HELP, OFFERED FACILITIES The Bank of England said it had given the\nmoney market 206 mln stg of assistance this afternoon and\noffered the discount houses borrowing facilities to take out\nthe rest of the 1.10 billion stg shortage, revised down from an\ninitial 1.15 billion estimate.\n    It made no alteration to its established dealing rates,\nbuying 95 mln stg of band one bank bills at 10-7/8 pct and 111\nmln of band two bank bills at 10-13/16 pct. This brings  [...]
+'E.F. HUTTON &lt;EFH> STARTS PUROLATOR &lt;PCC> BID E.F. Hutton Group Inc said it has\nstarted its previously announced offer to purchase up to\n6,332,471 common shares of Purolator Courier Corp at 35 dlrs\neach.\n    In a newspaper advertisement, the company said the offer,\nproration period and withdrfawal rights will expire April One\nunless extended.  The offer is conditioned on receipt of at\nleast 5,116,892 Purolator shares, or a 66.7 pct interest, and\nis the first step in a merge [...]
+'YEUTTER PUTS CURRENCY BURDEN ON TAIWAN, KOREA Responsibility for the appreciation of\nthe Taiwan dollar and the South Korean Won lies soley with\nthose countries, said U.S. trade representative Clayton Yeutter\n    Speaking to the Asia Society, Yeutter said that it is in\nthose countries\' own long-term interest to raise the value of\ntheir currencies against the dollar.\n    Yeutter was responding to a question about what the U.S.\ncould do to encourage appreciation of those currencies [...]
+'PRINCEVILLE DEVELOPMENT CORP &lt;PVDC> YEAR LOSS Shr diluted loss 31 cts vs profit 17 cts\n    Net loss 2,806,005 vs profit 1,513,395\n    Revs 15.0 mln vs 10.4 mln\n    Avg shrs diluted 8,982,754 vs 8,804,899\n    NOTE: Current year includes loss of 3.4 mln dlrs from\ntakeover defense expenses. Also includes losses of 1.8 mln dlrs\nvs 332,000 dlrs from equity in limited partnerships.\n Reuter\n&#3;',0
+'ORANGE-CO &lt;OJ> HOLDER RAISES STAKE Orange-Co Inc said its\nlargest shareholder, &lt;Summit Resoureces Inc>, has increased its\nstake to 15 pct from 14 pct and now owns 644,727 shares.\n Reuter\n&#3;',0
+'HORIZON CORP &lt;HZN> 4TH QTR NET Oper shr profit 1.66 dlrs vs loss eight cts\n    Oper net profit 12.0 mln vs loss 572,000\n    Revs 27.4 mln vs 4,311,000\n    Year\n    Oper shr profit 1.36 dlrs vs loss 43 cts\n    Oper net profit 9,817,000 vs loss 2,433,000\n    Revs 35.0 mln vs 13.8 mln\n    Avg shrs 7,224,000 vs 6,731,000\n    NOTE: 1985 net includes tax credits of 492,000 dlrs in\nquarter and 2,433,000 dlrs in year.\n    1985 net both periods excludes 168,000 dlr loss from\ndiscon [...]
+'&lt;INTERNATIONAL THOMSON ORGANISATION LTD> YEAR Shr 33p vs 38p\n    Net 97 mln vs 111 mln\n    Revs 1.71 billion vs 1.76 billion\n    NOTE: Figures in sterling.\n    Share results after deducting preferred share dividends of\none mln pounds sterling in 1986.\n Reuter\n&#3;',0
+'EQUATORIAL COMMUNICATIONS CO &lt;EQUA> 4TH QTR LOSS Shr loss 3.84 dlrs vs nil\n    Net loss 56,879,000 vs profit 23,000\n    Rev 10.3 mln vs 17.7 mln\n    Year\n    Shr loss 4.60 dlrs vs profit 14 cts\n    Net loss 67,818,000 vs profit 1,807,000\n    Rev 50.9 mln vs 56.1 mln\n    Avg shares 14,734,000 vs 12,801,000\n    NOTE: Fourth qtr net includes a one-time restructuring\ncharge of 45.2 mln dlrs. 1985 net income includes extraordinary\ngain of 3.2 mln dlrs, or 25 cts.\n Reuter\n&#3;',0
+'INTERNATIONAL THOMSON ORGANISATION LTD YEAR SHR 33P VS 38P\n ',0
+'TRIMEDYNE &lt;TMED> TO SPIN OFF STAKE IN UNIT Trimedyne Inc said it will\ndistribute one Class B common share of &lt;Automedix Sciences Inc>\nfor each four Trimedyne shares held of record on March Nine.\n    The company said in the spinoff it is distributing its\nentire 44 pct interesdt in Automedix.  The spun-off stock will\nnot be saleable for 13 months, the company said.\n Reuter\n&#3;',0
+'CASEY\'S GENERAL STORES INC &lt;CASY> 3RD QTR JAN 31 Shr 16 cts vs 13 cts\n    Net 1,900,000 vs 1,600,000\n    Sales 68.2 mln vs 69.6 mln\n    Nine mths\n    Shr 60 cts vs 43 cts\n    Net 7,100,000 vs 4,700,000\n    Sales 214.0 mln vs 219.5 mln\n Reuter\n&#3;',0
+'FRENCH FREE MARKET CEREAL EXPORT BIDS DETAILED French operators have requested licences\nto export 40,000 tonnes of free market feed wheat, 32,500\ntonnes of soft bread wheat, 375,000 tonnes of barley and\n465,000 tonnes of maize at today\'s European Community tender,\ntrade sources here said.\n    Rebates requested ranged between 134 and 136.50 European\ncurrency units (Ecus) a tonne for the feed wheat, 137.39 and\n141.50 Ecus a tonne for the bread wheat, 137.93 and 142.95 Ecus\nfor th [...]
+'DIAMOND SHAMROCK &lt;DIA> RAISES CRUDE OIL POSTINGS Diamond Shamrock said it raised its\nposted prices for all grades of crude oil one dlr a barrel,\neffective yesterday.\n    The one dlr increase brings West Texas Intermediate, WTI\nthe U.S. benchmark crude, to 17.00 dlrs a bbl, the company\nsaid.\n    Diamond Shamrock joined Sun Co, Coastal, Citgo and Murphy\nOil in raising crude oil posted prices one dlr a barrel\nyesterday.\n Reuter\n&#3;',0
+'OAK HILL SPORTSWEAR CORP &lt;OHSC> 4TH QTR NET Shr 27 cts vs 28 cts\n    Net 1,026,000 vs 1,025,000\n    Sales 27.8 mln vs 25.4 mln\n    Year\n    Shr 95 cts vs 16 cts\n    Net 3,682,000 vs 598,000\n    Sales 102.1 mln vs 100.4 mln\n    Avg shrs 3,858,000 vs 3,700,000\n Reuter\n&#3;',0
+'OAK INDUSTRIES INC &lt;OAK> 4TH QTR LOSS Oper shr loss five cts vs loss 50 cts\n    Oper net loss 3,862,000 vs loss 15,900,000\n    Sales 42.6 mln vs 38.8 mln\n    Avg shr 72.1 mln vs 31.7 mln\n    Year\n    Oper shr loss 51 cts vs loss 2.10 dlrs\n    Oper net loss 30.3 mln vs 51.3 mln\n    Sales 151.7 mln vs 153.1 mln\n    Avg shrs 59.4 mln vs 24.4 mln\n    Backlog 57.1 mln vs 52.9 mln\n    NOTES: Operating losses exclude profits from discontinued\noperationgs of 1,000,000 dlrs, or one [...]
+'REGIS CORP &lt;RGIS> REGULAR DIVIDEND SET Qtly div 4-1/2 cts vs 4-1/2 cts prior\n    Pay April 15\n    Record March 24\n Reuter\n&#3;',0
+'MANNESMANN SEEKS STAKE IN U.S. FIRM Mannesmann AG &lt;MMWG.F>, the\ndiversified engineering and pipe-making group, is interested in\ntaking a stake in a U.S. Company or companies but has not yet\nfound a suitable firm, a spokesman said in reply to questions.\n    Mannesmann managing board chairman Werner Dieter told the\nbusiness weekly Wirtschaftswoche in an interview that\nMannesmann wanted to invest in a U.S. Company in order to\nstrengthen its presence on the U.S. Market.\n    Diete [...]
+'AMERICAN INT\'L GROUP INC &lt;AIG> 4TH QTR NET Shr 1.83 dlrs vs 77 cts\n    Net 296.6 mln vs 120.1 mln\n    Year\n    Shr 4.90 dlrs vs 2.76 dlrs\n    Net 795.8 mln vs 420.5 mln\n    NOTE: Includes gains of 139.2 mln vs 46.8 mln in year and\n94.0 mln vs 11.6 mln from capital gains from investments.\n Reuter\n&#3;',0
+'SYSTEMS FOR HEALTH CARE IN ONE-FOR-50 SPLIT Systems for Health Care Inc said it\nrepositioned the company through a one-for-50 reverse stock\nsplit.\n    It said there are now 3,002,500 common shares outstanding\nwith a quoted price of about 7/8 bid, compared to 150,125,000\nshares outstanding prior to the split.\n    In another recent development, Systems for Health Care\nformally changed its name to its present form from Orcas Corp.\n Reuter\n&#3;',0
+'ROYAL DUTCH/SHELL U.S. EARNINGS SHARPLY LOWER Royal Dutch/Shell Group &lt;RD.AS> earnings\nfor 1986 from the U.S. Fell sharply because of difficult market\nconditions, lower crude and gas prices and also due to\ndifferent accounting methods, Shell chairman Peter Holmes said.\n    The Shell Oil dollar net income fell 47 pct in the year,\nwhile the additional effect of currency movements reduced the\ncontribution to group net income by 57 pct to 472 mln stg.\n    The group earlier reporte [...]
+'BANKERS WELCOME SPANISH RESERVE REQUIREMENT HIKE Bankers welcomed the Bank of Spain\'s\ndecision to raise the reserve requirement for banks and savings\nbanks, saying it reflected the socialist government\'s\ndetermination not to ease up in the fight against inflation\ndespite the painful social effects of four years of austerity.\n    The central bank last night raised the requirement by one\npercentage point to 19 pct from March 13, saying that excess\nliquidity threatened money suppl [...]
+'GAMBRO AB &lt;GAMB ST> 1986 YEAR 133.5 mln crowns vs 101 mln.\n    Sales 1.61 billion vs 1.51 billion.\n    Proposed dividend 0.80 crowns vs 0.40 crowns.\n REUTER\n&#3;',0
+'TRANSPORTATION AGENCY GIVES FINAL OKAY FOR US AIR PACIFIC SOUTHWEST ACQUISITION\n ',0
+'S AFRICA MINE MANAGERS FACE CHARGES IN DISASTER Seven managers and employees at\nGeneral Mining Union Corp Ltd\'s Kinross Mines Ltd will face\ncharges of culpable homicide following last year\'s disaster\nwhen 177 gold miners died, the Attorney General\'s Office said.\n    The mineworkers were killed last September at Kinross when\na fire set off toxic fumes which suffocated miners underground.\n    Three of the accused face alternative charges of breaking\nsafety regulations set out in [...]
+'WESTERN CANADA HURT BY INTERNATIONAL FORCES Western Canada\'s resource-based economy\nis being hurt by international market forces and there is\nlittle Ottawa can do about it, Finance Minister Michael Wilson\nsaid.\n    \"If you can tell me how we can get the international energy\nprice up and how we can get the price for copper up and how we\ncan get the price for wheat up, then we will listen,\" Wilson\ntold the House of Comnons Finance Committee.\n    Although under pressure from oil [...]
+'AMERICAN SOFTWARE &lt;AMSWA> SETS STOCK SPLIT American Software Inc said its board\ndeclared a three-for-two stock split on Class A and Class B\ncommon shares, payable March 31, record March 16.\n    The company said it expects to increase its semiannual\ndividend 12.5 pct to six cts per share post-split from eight\ncts pre-split.\n Reuter\n&#3;',0
+'COMDATA &lt;CDN> IN MERGER AGREEMENT Comdata Network Inc said\nit has entered into a letter of intent with a limited\npartnership managed by Welsh, Carson, Anderson and Stowe (WCAS)\nto merge Comdata into a corproration to be formed by WCAS.\n    Comdata said in the merger each share of the company\'s\nstock would be converted at the holders election into either 15\ndlrs in cash or a combination of 10 dlrs in cash and a unit of\nsecurities including common stock.\n    Comdata said the t [...]
+'SOYBEAN GROUP HEAD URGES USDA ACTION ON LOAN The Agriculture Department must make\na decision soon on how to change the current U.S. soybean loan\nor more soybeans will continue to be forfeited to the\ngovernment and foreign soybean production will increase, the\npresident of the American Soybean Association, ASA, said.\n    \"The USDA will have to bite the bullet one way or another\n... USDA can dodge and dart around it (the soybean loan) as\nmuch as they want, but they have to eventua [...]
+'&lt;WAJAX LTD> YEAR NET Shr 78 cts vs 1.16 dlrs\n    Net 6.7 mln vs 9.5 mln\n    Revs 278 mln vs 290 mln\n Reuter\n&#3;',0
+'AMERICAN SOFTWARE INC &lt;AMSWA> 3RD QTR JAN 31 NET Shr 42 cts vs 19 cts\n    Net 2,903,000 vs 1,307,000\n    Revs 13.1 mln vs 8,937,000\n    Avg shrs 6,877,360 vs 6,874,970\n    Nine mths\n    Shr 98 cts vs 62 cts\n    Net 6,740,000 vs 4,085,000\n    Revs 33.9 mln vs 27.8 mln\n    Avg shrs 6,875,706 vs 6,605,879\n Reuter\n&#3;',0
+'NO SOVIET WHEAT BONUS TALK PLANNED FOR MEETING U.S. Agriculture Secretary Richard\nLyng does not intend to discuss a wheat export enhancement\ninitiative to the Soviet Union at a cabinet-level Economic\nPolicy Council meeting set for tomorrow, an aide to Lyng said.\n    \"He (Lyng) does not intend to bring it up,\" the aide said,\nadding that the subsidy offer remains \"dormant.\"\n    Lyng plans to spend \"about five minutes\" reviewing the status\nof farm legislation on Capitol Hill b [...]
+'BANKAMERICA &lt;BAC> TO SELL GERMAN BANKING UNIT BankAmerica Corp said it agreed to\nsell &lt;Bankhaus Centrale Credit AG>, its German consumer banking\nsubsidiary, and German credit card operations to &lt;Banco de\nSantander> of Spain.\n    Terms were not disclosed. The deal is expected to close in\nthe second quarter, the bank holding company said.\n    Bankhaus Centrale Credit, with 31 branches, had total\nassets of 927 mln marks at year-end 1986. The credit card\noperation services  [...]
+' French official reserves 375.95 billion francs end Jan (421.00 billion end Dec) - official\n ',0
+'COPLEY PROPERTIES INC &lt;COP> 4TH QTR NET Shr 30 cts vs 36 cts\n    Net 1,211,000 vs 1,428,000\n    Revs 1,536,000 vs 1,743,000\n    Year\n    Shr 1.36 dlrs vs 62 cts\n    Net 5,438,000 vs 2,498,000\n    Revs 6,567,000 vs 2,971,000\n    NOTE: Company began operations after its July 29, 1985\npublic offering, therefore annual data are not directly\ncomparable.\n Reuter\n&#3;',0
+'UNITIL CORP &lt;UTL> 4TH QTR NET Shr 79 cts vs 72 cts\n    Net 581,915 vs 536,040\n    Revs 13.9 mln vs 13.3 mln\n    Year\n    Shr 3.28 dlrs vs 3.21 dlrs\n    Net 2,413,407 vs 2,360,048\n    Revs 54.9 mln vs 54.2 mln\n Reuter\n&#3;',0
+'RYDER &lt;RDR> BUYS BRITISH CALEDONIAN UNIT Ryder System Inc said it has acquired\nCaledonian Airmotive Ltd from &lt;British Caledonian Group PLC>\nfor undisclosed terms.\n    Caledonian Airmotive repairs and rebuilds aircraft engines.\n Reuter\n&#3;',0
+'TRELLEBORG TAKE LARGER SLICE OF BOLIDEN Swedish tyres, process equipment and\ncomponents firm &lt;Trelleborg AB> said it was taking a larger\nstake in mining and metals concern Boliden AB &lt;BLDS.ST> than it\nhad originally intended.\n    Trelleborg had previously announced it was exercising an\noption to acquire up to 65 pct of Boliden\'s voting rights.\n    In a statement, the company said they had received offers\nof up to 68 pct of the rights, and that they would accept all.\n Reut [...]
+'POLAROID &lt;PRD> UP ON REAFFIRMED OPINION Shares of Polaroid Corp rose following\na reiterated recommendation by Merrill Lynch and Co that\nfocused on strong earnings momentum for the company, traders\nsaid.\n    \"We have been recommending the stock since it was in the\n50s, but we reiterated today because of expectations of strong\nearnings momentum, its benefits from the lower dollar and\nanticipation of nice gains in margins,\" Merrill Lynch\nanalyst Charles Ryan said. He said a ne [...]
+'SWEDISH MATCH AB &lt;SMBS.ST> 1986 YEAR Profit after net financial items\n    500 mln crowns vs 359 mln\n    Sales 10.90 billion crowns vs 10.72 billion\n    Proposed dividend 12.50 crowns vs 10.50 crowns\n REUTER\n&#3;',0
+'FRENCH OFFICIAL RESERVES FALL SHARPLY IN JANUARY French official reserves fell 45.06\nbillion francs to 375.95 billion at the end of January from\n421.00 billion at the end of December, the Finance Ministry\nsaid in a statement.\n    It said the fall was largely due to sales of foreign\ncurrency that preceded the January 11 realignment of the\nEuropean Monetary System (EMS).\n    Foreign currency reserves fell by 8.91 billion francs\nduring the month, the ministry said.\n    This reflec [...]
+'SL INDUSTRIES INC &lt;SL> 2ND QTR JAN 31 NET Oper shr 22 cts vs 20 cts\n    Oper net 1,153,000 vs 1,068,000\n    Revs 15.7 mln vs 15.8 mln\n    Six mths\n    Oper shr 38 cts vs 38 cts\n    Oper net 2,039,000 vs 2,051,000\n    Revs 31.4 mln vs 31.6 mln\n    NOTE: exlcudes 145,000 discontinued operations for 1986\noper net for six mths for sale of electronics division.\n    Oper shr for qtr and six mths 1986 adjusted for stock split\nand dividend distribution in November.\n Reuter\n&#3;',0
+'GENERAL REFRACTORIES &lt;GRX> TO SELL OPERATIONS General Refractories Co said it\nagreed to sell its European refractories and building products\noperations for about 62 mln dlrs to an Austrian investor group.\n    The European operations had sales of 186 mln dlrs in 1985,\nthe last year for which results have been released, the company\nsaid.\n    The sale, to a group headed by Girozentrale Bank of\nAustria, is subject to shareholder approval by April 24, 1987,\nit said. Its board has  [...]
+'BRAZIL HAS NO SET COFFEE EXPORT TARGETS - IBC Brazil has no set target for\nits coffee exports following this week\'s breakdown of\nInternational Coffee Organization talks on export quotas,\nPresident of the Brazilian Coffee Institute, IBC, Jorio Dauster\nsaid.\n    He told a press conference Brazil now had to reconsider its\nexport plans and that the 15.5 mln bag export figure which it\nhad proposed for itself earlier should no longer be taken as\nthe country\'s export target to ICO-me [...]
+'PEPSICO &lt;PEP> UPGRADED BY KIDDER PEABODY Kidder Peabody and Co analyst Roy Burry\nissued a strong buy recommendation on Pepsico Inc, citing an\nimproved profit outlook for both domestic soft drinks and\nFrito-Lay snack foods.\n    Pepsico climbed 7/8 to 34-3/4 on 615,000 shares by\nmidmorning.\n    Burry forecast earnings of 2.00 dlrs per share in 1987 and\n2.30 dlrs in 1988. In 1986 the company earned 1.75 dlrs per\nshare. Burry previously had a sell recommendation on Pepsico.\n\"We [...]
+'SHAD SEES PROGRESS ON INSIDER TRADING Securities and Exchange Commission\nchairman John Shad said progress was being made in stopping\ninsider trading, but the chairman of a House subcommittee with\njurisdiction over securities laws said he was concerned about\nconditions on Wall Street.\n    \"Greed has created a feeding frenzy on Wall Street and in\nthe process laws are broken and multi-billion dlr corporations\nhave become easy prey,\" Rep. Edward Markey, D-Mass, the\nchairman of the [...]
+'OPEC SAYS FEBRUARY OUTPUT UNDER CEILING OPEC output in February was \"well below\"\nthe 15.8 mln bpd ceiling it set in December and all countries\nare strictly adhering to their quotas, the OPEC news agency\nOpecna quoted an OPEC secretariat official as saying.\n    The official was quoted as saying that lower output was the\nresult \"of member countries\' firm determination to defend the\norganisation\'s official price of 18 dlrs per barrel, and to\nrefrain from selling any quantity be [...]
+'CANADIAN IMPERIAL BANK OF COMMERCE 1ST QTR SHARE BASIC 61 CTS VS 64 CTS\n ',0
+'PERKIN-ELMER &lt;PKN> ACQUIRES HIGH TECH FIRM Perkin-Elmer Corp said it\nacquired &lt;Atomika Technische Physik>, based in Munich, West\nGermany, a high technology concern specializing in surface\nscience instruments.\n    Terms of the acquisition were not disclosed.\n    It said Atomika will became a part of its Physical\nElectronics Division, based in Eden Prairie, Minn., The\ndivision is part of its Materials Surface Technology Group.\n Reuter\n&#3;',0
+'U.S. OKAYS USAIR &lt;U> PACIFIC SOUTHWEST PURCHASE The U.S. Department of Transportation\nsaid it gave final approval to USAir Group\'s proposed 400 mln\ndlr acquisition of Pacific Southwest Airlines.\n    The department said the acquisition is not likely to\nsubstantially lessen competition and would not harm the public\ninterest.\n    The department had given its tentative approval of the\nacquisition in January.\n    The department said it decided to make final its tentative\ndecisio [...]
+'MCI &lt;MCIC> PRESIDENT SEES PROFIT IMPROVEMENT MCI Communications Corp President\nBert Roberts said he expects MCI\'s financial performance to\nimprove in the current quarter compared to the previous\nquarter.\n    He said American Telephone and Telegraph Co long-distance\nrate cuts had cut into MCI\'s fourth quarter performance but\nadded: \"There\'s going to be a continuing impact (on profits) but\nwe expect this quarter to be better than the fourth quarter.\"\n    The current quarte [...]
+'NATIONAL GYPSUM CO 4TH QTR NET Net 5,521,000 vs NA\n    Revs 358.1 mln vs 359.0 mln\n    Year\n    Net 55.3 mln vs NA\n    Revs 1.43 billion vs 1.34 billion\n    NOTE: Current year includes earnings of 49.6 mln dlrs for\nthe four months ended April 30, 1986. Year-ago earnings not\ncomparable because of acquisition by Aancor Holdings Inc on\nApril 29, 1986.\n Reuter\n&#3;',0
+'ZAYRE CORP 4TH QTR SHR 73 CTS VS 60 CTS\n ',0
+'&lt;DET OESTASIATISKE KOMPAGNI A/S> (EAST ASIATIC CO) Results for year 1986 -\n    Group pre-tax profit 385 mln crowns vs 380 mln\n    Net turnover 14.17 billion crowns vs 16.69 billion\n    Dividend eight pct vs nil\n    Group profit after tax 16 mln crowns vs 244 mln\n Reuter\n&#3;',0
+'&lt;SIGNTECH INC> NINE MTHS JAN 31 NET Shr 55 cts vs 24 cts\n    Net 1.9 mln vs 800,000\n    Revs 17.6 mln vs 12.8 mln\n Reuter\n&#3;',0
+'&lt;CANADIAN IMPERIAL BANK OF COMMERCE> 1ST QTR Period ended January 31\n    Shr 61 cts vs 64 cts\n    Shr diluted 60 cts vs 60 cts\n    Net 96.5 mln vs 87.0 mln\n    Loans 44.87 billion vs 48.07 billion\n    Deposits 69.86 billion vs 68.45 billion\n    Assets 83.92 billion vs 78.93 billion\n    Note: shr after preferred dividends\n Reuter\n&#3;',0
+'&lt;TRIUMPH CAPITAL INC> TO MAKE ACQUISITION Triumph Capital Inc said it has signed a\nletter of intent to acquire First Securities Transfer Systems\nInc of Pompano Beach, Fla., for undisclosed terms.\n    The company said it is also entering the commercial finance\nbusiness through the formation of Triumph Financial corp.\n    It said the new wholly-owned unit has extended a 350,000\ndlr secured line of credit to Micro Designs Inc.\n Reuter\n&#3;',0
+'CONCHEMCO INC &lt;CKC> SETS QUARTERLY Qtly div 10 cts vs 10 cts prior\n    Pay April Six\n    Record March 16\n Reuter\n&#3;',0
+'DST SYSTEMS INC &lt;DSTS> REGULAR PAYOUT SET Qtly div five cts vs five cts prior\n    Pay April 17\n    Record March 16\n Reuter\n&#3;',0
+'FED NOT EXPECTED TO TAKE MONEY MARKET ACTION The Federal Reserve is not expected to\nintervene in the U.S. government securities market to add or\ndrain reserves, economists said.\n    Most economists said they did not expect the Fed to add\nreserves with Federal funds trading below six pct.\n    They said the funds rate\'s softer tone may indicate that\nthe need to add reserves in the current bank reserve\nmaintenance period is smaller than previously estimated.\n    Fed funds opened a [...]
+'BROWN GROUP INC 4TH QTR SHR 77 CTS VS 76 CTS\n ',0
+'REGAL INTERNATIONAL &lt;RGL> UPS BELL &lt;BPSIQ> BID Bell Petroleum Services Inc said\nRegal International Inc has doubled its offer for Bell stock to\none Regal share for each Bell share from half a share\npreviously.\n    The company said it is seriously considering the new offer\nbut has also received an expression of interest for a possible\nmerger into a Fortune 500 company it did not identify that will\nbe investigated at meetings to be held later this week.\n    It said it will e [...]
+'EQK GREEN ACRES LP &lt;EGA> RAISES QUARTERLY Qtly div 26-1/4 cts vs 25 cts prior\n    Pay Aug 14\n    Record June 30\n Reuter\n&#3;',0
+'MERCANTILE STORES CO INC 4TH QTR SHR 3.26 DLRS VS 3.17 DLRS\n ',0
+'WINLAND ELECTRONICS INC 4TH QTR LOSS Shr loss one ct vs profit 15 cts\n    Net loss 10,863 vs profit 176,344\n    Revs 672,073 vs 766,066\n    Year\n    Shr loss seven cts vs loss one ct\n    Net loss 77,804 vs loss 16,627\n    Revs 1,717,810 vs 1,317,402\n Reuter\n&#3;',0
+'ANTIBIOTICS IN FEED AID DEADLY BACTERIA: STUDY A study of salmonella poisoning has\nuncovered new evidence that the common practice of feeding\nantibiotics to cattle is helping to create deadly bacteria that\ncan infect humans and resist medicines.\n    Researchers at the federal Centers for Disease Control\ntracked the spread of an unusual strain of salmonella that is\nresistant to the drug chloramphenicol and were able to link the\nresulting food poisoning to farms that used the drug  [...]
+'EC REJECTS ALL FREE MARKET WHEAT EXPORT  OFFERS AT WEEKLY TENDER - TRADERS\n ',0
+'EC AWARDS 123,000 TONNES BARLEY EXPORT  LICENCES AT 138.75 ECUS PER TONNE - TRADERS\n ',0
+'FRENCH CEREAL EXPORTS THROUGH ROUEN FALL French cereal exports through the port of\nRouen fell 6.4 pct to 725,023 tonnes during the period February\n1 to 25, from 774,704 for the period February 1 to 26 last\nyear, trade sources said.\n    Main destinations were Saudi Arabia with 158,109 tonnes of\nbarley, the Soviet Union 147,214 of wheat, Italy 104,704 of\nwheat, Spain 91,381 of wheat and maize, China 52,500 of wheat\nand Algeria 41,000 of wheat.\n    Between February 26 and today, fi [...]
+'NATIONAL CONVENIENCE &lt;NCS> TO HAVE 3RD QTR LOSS National Convenience Stores Inc said it\nexpects to report a loss for the third quarter ending March 31\ndue to continued poor sales in Texas, especially in Houston.\n    In last year\'s third quarter, National Convenience earned\n1,788,000 dlrs or eight cts per share, including a gain of\n2,883,000 dlrs from the sale of 186 stores to another operator.\n It said the results also included earnings from gasoline\noperations of 2,500,000 d [...]
+'MARATHON RAISES CRUDE POSTED PRICES 50 CTS A BBL, EFFECTIVE TODAY, WTI AT 17 DLRS/BBL.\n ',0
+'REPORT DUE ON OIL IMPORTS AND NATIONAL SECURITY A presidential commission that has\nbeen studying oil imports, including their effect on national\nsecurity, is to to make its report soon, the White House said.\n    Spokesman Marlin Fitzwater said the panel, set up last\nOctober to examine U.S. oil import needs, would make its report\nsoon, probably within the next few weeks.\n    He said National Security Adviser Frank Carlucci \"will wait\nuntil that report is in and then see if there  [...]
+'CHRYSLER SETS THREE-FOR-TWO STOCK SPLIT, RAISES DIVIDEND\n ',0
+'U.S. COMMERCE DEPT\'S ORTNER SAYS YEN IS 10 OR 15 PCT UNDERVALUED\n ',0
+'U.S. COMMERCE DEPT\'S  ORTNER SAYS DOLLAR FAIRLY PRICED AGAINST EUROPEAN CURRENCIES\n ',0
+'BROWN GROUP INC &lt;BG> 4TH QTR JAN 31 NET Shr 77 cts vs 76 cts\n    Net 13,843,000 vs 14,478,000\n    Sales 374.6 mln vs 368.3 mln\n    Avg shrs 18,003,000 vs 19,025,000\n    Year\n    Shr 2.16 dlrs vs 2.65 dlrs\n    Net 39,503,000 vs 51,573,000\n    Revs 1.41 billion vs 1.41 billion\n    Avg shrs 18,269,000 vs 19,497,000\n    NOTE: 1986 period ended February One\n    Company changed fiscal yearend to January 31 from October\n31. 1986 results were restated to reflect the change.\n Reut [...]
+'EC AWARDS EXPORT LICENCES FOR 25,000  TONNES MAIZE - PARIS TRADE.\n ',1
+'ZAMBIAN LATE 1986 COPPER OUTPUT UP, SALES DOWN Zambian copper production rose 3.2 pct to\n113,275 tonnes in fourth quarter 1986 from 109,767 in the same\n1985 period but sales fell 18.7 pct to 119,967 tonnes from\n147,537, Zambia Consolidated Copper Mines, ZCCM, said.\n    A spokesman for the government-controlled mining company\nsaid the country\'s cobalt production fell 24 pct to 879 tonnes\nover the same period, while cobalt sales rose 92 pct to 1,734\ntonnes. He did not give figures [...]
+'BAD WEATHER CLOSES ALEXANDRIA PORT, OIL TERMINAL Strong winds and high seas\ntoday closed Alexandria, Egypt\'s biggest port, and an oil\npipeline terminal nearby, officials said.\n    Facilities of the Suez-Mediterranean Arab Petroleum\nPipelines Company at Sidi Kreir, 32 km southeast of Alexandria,\nwere closed this morning after one tanker loaded and sailed.\n    Officials said that five other tankers were waiting outside\nthe terminal for conditions to improve.\n Reuter\n&#3;',0
+'PEGASUS GOLD INC &lt;PGULF> 4TH QTR NET Shr profit 20 cts vs loss two cts\n    Net profit 2,665,000 vs loss 202,000\n    Revs 12.1 mln vs 5,993,000\n    Year\n    Shr profit 35 cts vs loss 11 cts\n    Net profit 4,653,000 vs loss 1,167,000\n    Revs 35.1 mln vs 18.0 mln\n    NOTE: Current qtr includes gain of 1.1 mln dlrs from tax\nbenefit.\n Reuter\n&#3;',0
+'U.S. COMMERCE\'S ORTNER SAYS YEN UNDERVALUED Commerce Dept. undersecretary of\neconomic affairs Robert Ortner said that he believed the dollar\nat  current levels was fairly priced against most European\ncurrencies.\n    In a wide ranging address sponsored by the Export-Import\nBank, Ortner, the bank\'s senior economist also said he believed\nthat the yen was undervalued and could go up by 10 or 15 pct.\n    \"I do not regard the dollar as undervalued at this point\nagainst the yen,\" h [...]
+'EC REJECTS WHEAT EXPORT BIDS, GRANTS BARLEY The European Community\'s cereal\nmanagement committee rejected all bids to export free market\nsoft wheat at today\'s weekly tender, traders said.\n    The committee awarded 123,000 tonnes of free market barley\nexport licences at a maximum export refund of 138.75 Ecus per\ntonne.\n&#3;',0
+'CORNING GLASS WORKS &lt;GLW> UNIT TRANSFERS STOCK Corning Glass Works\' subsidiary\nCorning International Corp said it agreed to transfer 55 pct of\nits capital stock of an Argentine glass manufacturer to a\nEuropean group.\n    It said it will transfer the capital stock of Rigolleau,\nS.A., to the group controlled by Camillo Gancia, an Argentine\nindustrialist.\n    The company said the transaction would reduce Corning\'s\nownership in Rigolleau to approximately 20 pct. The company\nsa [...]
+'ZAYRE CORP &lt;ZY> 4TH QTR JAN 31 NET Shr 73 cts vs 60 cts\n    Net 43,792,000 vs 36,480,000\n    Rev 1.78 billion vs 1.34 billion\n    Year\n    Shr 1.49 dlrs vs 1.61 dlrs\n    Net 88,974,000 vs 94,647,000\n    Rev 5.35 billion vs 4.04 billion\n    NOTE: 4th qtr net includes pre-tax gain of 9.7 mln dlrs\nfrom sale of real estate and real estate development company.\n    Fiscal 1986 net includes extraordinary charge of 3.5 mln\ndlrs, or six cts a share. All per share data reflects a\ntw [...]
+'FARMERS CONCERNED ABOUT BRITISH SUGAR OWNERSHIP The National Farmers Union, NFU, remains\nconcerned about the future ownership of British Sugar despite\nlast week\'s decision by the government to block bids from\nItaly\'s Gruppo Ferruzzi and Britain\'s Tate &amp; Lyle Plc.\n    The union\'s sugar beet committee met yesterday to consider\nthe implications of a government Monopolies and Merger\nCommission, MMC, report issued last week. \"We are still\nconcerned about S and W Berisford bei [...]
+'ZAYRE &lt;ZY> PLANS MORE STORE OPENINGS IN 1987 Zayre Corp said it plans to\nopen 25 additional Zayre Stores, 35 new T.J. Maxx stores and 50\nHit or Miss Shops in 1987.\n    In addition, Zayre said it plans to add six new BJ\'s\nWholesale Clubs and eight new HomeClubs to its warehouse group.\n    Earlier, the company reported 1986 earnings, ended January\n31, of 89.0 mln dlrs, or 1.49 dlrs per share, versus 94.6 mln\ndlrs, or 1.61 dlrs per share, in fiscal 1985. It also reported\nfourth [...]
+'DUTCH GROWTH LIKELY TO SLOW, JOBLESS RISE IN 1987 Leaks of a major Dutch official\neconomic forecast due to be published on Monday indicate\nreduced economic growth and a renewed rise in unemployment this\nyear, political and market sources say.\n    Concern over an anticipated fall in Dutch competitiveness\nthis year against a background of an average 2-1/2 pct wage\nincrease, zero inflation and a firm guilder has triggered some\ncalls for a change in monetary policy to help boost grow [...]
+'CHRYSLER &lt;C> SETS STOCK SPLIT, HIGHER DIVIDEND Chrysler Corp said its board declared a\nthree-for-two stock split in the form of a 50 pct stock\ndividend and raised the quarterly dividend by seven pct.\n    The company said the dividend was raised to 37.5 cts a\nshare from 35 cts on a pre-split basis, equal to a 25 ct\ndividend on a post-split basis.\n    Chrysler said the stock dividend is payable April 13 to\nholders of record March 23 while the cash dividend is payable\nApril 15 t [...]
+'BANCO SANTANDER TO BUY WEST GERMANY\'S CC-BANK &lt;Banco Santander> signed a letter of\nintent with Bank of America &lt;BAC> to purchase its West German\naffiliate &lt;Bankhaus Centrale Credit AG>, CC-Bank, the bank said\nin a statement amplifying an earlier report from Frankfurt.\n    \"The incorporation of CC-Bank in our group will provide a\nmajor boost...For chanelling investment between Spain and the\nEuropean Community,\" the statement said.\n    \"This operation enables us to tak [...]
+'CANADIAN IMPERIAL SEES LOWER LOAN LOSSES &lt;Canadian Imperial Bank of Commerce>,\nearlier reporting higher net income for the first quarter ended\nJanuary 31, said it expects loan losses to be lower than last\nyear\'s 697.0 mln dlrs.\n    However, the bank said it will maintain the high level of\nprovisioning for loan losses established last year because of\nmany market uncertainties. Commerce bank set loan loss\nprovisions of 636.0 mln dlrs in fiscal 1986, ended October 31.\n    The b [...]
+'MERCANTILE STORES CO INC &lt;MST> 4TH QTR NET Qtr ends Jan 31\n    Shr 3.26 dlrs vs 3.17 dlrs\n    Net 47.9 mln vs 46.7 mln\n    Revs 673.1 mln vs 630.2 mln\n    12 mths\n    Shr 7.54 dlrs vs 6.95 dlrs\n    Net 111.1 mln vs 102.4 mln\n    Revs 2.03 billion vs 1.88 billion\n.\n&#3;',0
+'INDIA BOUGHT AT LEAST EIGHT CARGOES SUGAR--TRADE India bought eight cargoes of white\nsugar at a buying tender this week but also gave sellers\noptions to sell an extra eight cargoes at the same prices,\ntraders said.\n    Four international firms shared the business which gave\neach of them sales of two cargoes of Mar/Apr shipment sugar at\n233 dlrs CIF and options on two cargoes of Apr/May.\n    This brings recent options India has given traders to some\n200,000 tonnes at fixed prices [...]
+'UNITEL VIDEO SHAREHOLDER PROPOSES POSSIBLE SALE OR LIQUIDATION OF COMPANY\n ',0
+'ALLEGHENY POWER SYSTEM INC &lt;AYP> SETS PAYOUT Qtly div 73 cts vs 73 cts prior\n    Pay March 31\n    Record March 16\n Reuter\n&#3;',0
+'&lt;SELKIRK COMMUNICATIONS LTD> 4TH QTR NET Oper shr 57 cts vs 73 cts\n    Oper net 6,051,000 vs 7,818,000\n    Revs 50.0 mln vs 56.0 mln\n    Year\n    Oper shr 1.06 dlrs vs 1.24 dlrs\n    Oper net 11,301,000 vs 13,203,000\n    Revs 171.9 mln vs 207.4 mln\n    NOTE: Current oper net excludes extraordinary income of\n180,000 dlrs in qtr and 1,119,000 dlrs in year vs previous\nlosses of 2,345,000 dlrs and 515,000 dlrs, respectively.\n                        \n Reuter\n&#3;',0
+'HOUSTON OIL ROYALTY TRUST &lt;RTH> PAYOUT LOWER Mthly div 2.108 cts vs 2.158 cts prior\n    Pay March 26\n    Record March 16\n Reuter\n&#3;',0
+'ENGELHARD CORP SETS THREE FOR TWO STOCK SPLIT AND RAISES QUARTERLY\n ',0
+'PARIS TRADE DETAILS EC GRAIN TENDER RESULT The EC Commission rejected all bids for\nfree market bread-making and feed wheat and all bids for the\nspecial West German tender at today\'s weekly EC cereals tender,\ntrade sources said here.\n    It granted export licences for 123,000 tonnes of free\nmarket barley at a maximum rebate of 138.75 Ecus per tonne and\n25,000 tonnes of maize at a maximum rebate of 133.75 Ecus, they\nsaid.\n    Licences for 100,000 tonnes of the barley were awarded [...]
+'HOLDER PROPOSES UNITEL &lt;UNV> SALE OR LIQUIDATION Michael Landes, a major stockholder\nin Unitel Video Inc, said he has asked the company to consider\nliquidating, or selling some or all of its assets.\n    \"Mr. Landes has requested the company to implement a\nprogram to maximize shareholder values, which might include a\nsale of all or part of the company or a liquidation,\" he said\nin a filing with the Securities and Exchange Commission.\n    Landes and another Unitel Video invest [...]
+'HUGES TOOL COMPANY SAYS BAKER INTERNATIONAL MERGER PLAN NOT TERMINATED\n ',0
+'ROYAL DUTCH/SHELL GROUP OF COS 4TH QTR NET Shr Royal Dutch Petroleum Co &lt;RD> 2.30 dlrs vs 2.90 dlrs\n    Final Royal Dutch dividend of 8.30 guilders for total 12.80\nguilders vs 12.80 guilders for 1985\n    Shr Shell Transport and Trading Co PLC &lt;SC> 1.38 dlrs vs\n1.65 dlrs\n    Final Shell Transport dividend 118.0 pence for total of\n172.0 pence vs 140.0 pence for 1985\n    Group Net 1.07 billion vs 1.24 billion\n    Group Sales 20.42 billion vs 25.84 billion\n    Year\n    Shr R [...]
+'WORLD GRAIN TRADE RECOVERY MAY BE UNDERWAY World grain trade could be turning\nthe corner and heading toward recovery in the 1986-87 season, a\nCargill, Inc. analyst said.\n    Writing in the March issue of the Cargill Bulletin, David\nRogers of Cargill\'s Commodity Marketing Division cited a\ngradual rise in world wheat trade in recent months, with a slow\nrise in wheat prices after recent historic lows.\n    He said the wheat trade, because wheat can be produced in\nmany nations, is a [...]
+'INVESTMENT FIRM BOOSTS PUROLATOR &lt;PCC> STAKE Halcyon Investments, a New York\ninvestment partnership that deals mainly in risk arbitrage and\nstock trading, said it raised its Purolator Courier Corp stake\nto 726,700 shares, or 9.5 pct, from 474,900, or 6.2 pct.\n    In a filing with the Securities and Exchange Commission,\nHalcyon, whose managing partner is Alan B. Slifka and Co, said\nit bought 201,800 Purolator common shares between Feb 3 and\nMarch 2 at prices ranging from 28.689 [...]
+'AETNA &lt;AET> TO SELL CANADIAN OPERATIONS Aetna Life and Casualty Co said\nits Aetna Life and Casualty of Canada Ltd subsidiary has agreed\nin prnciple to sell its casualty-property subsidiary, Aetna\nCasualty Co of Canada to &lt;Laurentian Group> of Montreal for\nundisclosed terms.\n    The company said the agreement is subject to Canadian\ngovernment approval.\n Reuter\n&#3;',0
+'NPPC DELEGATES APPROVE DISEASE AND DRUG PROGRAMS Delegates from the National Pork\nProducers Council, NPPC, yesterday approved programs for\ncontrol and eradication of pseudorabies and establishment of a\nnational safe drug use program.\n    The delegate body, attending the American Pork Congress in\nIndianapolis, approved a pseudorabies control and eradication\nprogram at the state level after a recommendation from NPPC\'s\nPRV (pseudorabies virus) oversight committee.\n    The PRV com [...]
+'SOUTHERN MINERAL CORP &lt;SMIN> 4TH QTR LOSS Shr loss two cts vs profit three cts\n    Net loss 77,400 vs profit 134,000\n    Revs 418,500 vs 435,900\n    Year\n    Shr profit eight cts vs profit 27 cts\n    Net profit 315,100 vs profit 1,082,700\n    Revs 1,761,900 vs 2,511,200\n    NOTE: Per-share figures adjusted for four-for-three stock\ndistribution effective Dec 14, 1984\n    1985 results include an extraordinary tax benefit of 55,000\ndlrs, or one ct a share in each period\n Reut [...]
+'BANK OF ENGLAND RESISTS PRESSURE FOR RATE CUT The Bank of England again fought against\nmoney and bond market pressure for a pre-Budget interest rate\ncut, leaving the pound to take the strain with a further rise\nin its trade-weighted index to a six-month high.\n    It closed at its best level since September 12, at 71.4 pct\nof its 1975 value on the index, as foreign investors continued\nto buy into a currency which offers high relative returns and\nthe possibility of short-term capit [...]
+'ENGELHARD CORP &lt;EC> SETS STOCK SPLIT Engelhard Corp said its board\ndeclared a three-for-two stock split and raised the quarterly\ndividend to 19-1/2 cts per share presplit from 19 cts, both\npayable March 31 to holders of record March 17.\n Reuter\n&#3;',0
+'EGYPTIAN 1986 CRUDE OIL OUTPUT DOWN ON 1985 Non-Opec Egypt produced 40.3 mln tonnes\n(about 295 mln barrels) of crude in 1986 against 44.3 mln\ntonnes (about 323 mln barrels) in 1985, according to official\nfigures released today by the Egyptian General Petroleum Corp.\n(EGPC).\n    Officials say Egypt can produce up to one mln bpd per day,\nbut production was cut when world prices plunged last year.\n    In an attempt to help OPEC stabilize the world market,\nEgypt cut its 1987 product [...]
+'TRADERS DETAIL IRISH INTERVENTION BARLEY TENDER The European Commission authorised the\nexport of 33,500 tonnes of Irish intervention barley at today\'s\ntender for non-European Community destinations at 53.10 Ecus\nper tonne, grain traders said.\n Reuter\n&#3;',0
+'H AND H OIL TOOL CO &lt;HHOT> 4TH QTR LOSS Shr loss six cts vs profit two cts\n    Net loss 196,000 vs profit 71,000\n    Revs 2,512,000 vs 5,776,000\n    Year\n    Shr loss 1.09 dlrs vs loss 18 cts\n    Net loss 3,509,000 vs loss 587,000\n    Revs 12.0 mln vs 21.0 mln\n    Note: 1986 year includes special charge of 1,600,000 dlrs,\nor 50 cts per shr on write-down of rental equipment.\n Reuter\n&#3;',0
+'CB AND T FINANCIAL CORP &lt;CBTF> YEAR NET Shr 2.10 dlrs vs 1.72 dlrs\n    Shr diluted 1.98 dlrs vs 1.72 dlrs\n    Net 2,228,000 vs 1,730,000\n Reuter\n&#3;',0
+'AMOSKEAG BANK &lt;AMKG> TO ACQUIRE ENTREPO Amoskeag Bank said it signed an\nagreement to acquire &lt;Entrepo Financial Resources Inc>, a\nPhiladelphia-based company which leases and remarkets high\ntechnology equipment.\n    Terms of the acquisition were not disclosed.\n    It said Entrepo has assets of 20 mln dlrs.\n Reuter\n&#3;',0
+'WASHINGTON NATIONAL CORP &lt;WNT> VOTES DIVIDEND Qtly div 27 cts vs 27 cts prior qtr\n    Pay 1 April\n    Record 16 March\n Reuter\n&#3;',0
+'KAINES SELLS JORDAN TWO CARGOES OF WHITE SUGAR Trade house Kaines said it sold Jordan\ntwo cargoes of white sugar at its buying tender today.\n    The sale comprised two 12,000 to 14,000 tonne cargoes (plus\nor minus 10 pct) for Mar/Apr shipment, a Kaines trader said.\n    Traders said the business was done at 235.5 dlrs a tonne\ncost and freight.\n Reuter\n&#3;',0
+'COMMUNITY BANK SYSTEM &lt;CBSI> BUYS NICHOLS BANK Community Bank Systems Inc and\nthe &lt;Nichols National Bank> said they have signed a definitive\nagreement for Nichols to become a member of the CBSI Group of\nbanks for an exchange of stock worth 2.8 mln dlrs.\n    CBSI said it expects to complete the deal, pending Nichols\'\nshareholder and regulatory approval, later this year.\n Reuter\n&#3;',0
+'EASTMAN KODAK ACQUIRES 18.7 PCT INTEREST IN ENZON INC\n ',0
+'TURKEY SEEKING 100,000 TONNES SUGAR - TRADE Turkey is holding a buying tender for\n100,000 tonnes of white sugar on March 24, traders here said.\n    The sugar is being sought for early arrival and will\nprobably be met with April/May shipment sugar, they added.\n    Earlier today newspapers in Turkey carried an advertisement\nfrom Turkish Sugar Factories inviting offers of 100,000 tonnes\nof crystal sugar with a 50 pct option to increase or decrease\nthe amount.\n    Over the 1983/85 p [...]
+'SHAD FAVORS SHORTENING DISCLOSURE PERIOD Securities and Exchange Commission\nChairman John Shad said the SEC favors shortening the current\n10-day period for disclosing takeover attempts but opposes\nputting restrictions on the use of so-called junk bonds.\n    \"We favor shortening the disclosure period to two days,\"\nShad told members of the House Telecommunications and Finance\nsubcommittee when asked for his recommendation.\n    He said the SEC\'s responsibility was to provide full [...]
+'CORRECTED - PEGASUS GOLD INC&lt;PGULF> 4TH QTR NET Shr profit 20 cts vs loss two cts\n    Net profit 2,665,000 vs loss 202,000\n    Revs 12,141,000 vs 5,993,000\n    Year\n    Shr profit 35 cts vs loss 11 cts\n    Net profit 4,653,000 vs loss 1,167,000\n    Revs 35.1 mln vs 18.0 mln\n    NOTE: company corrects reporting period to 4th qtr and year\nfrom 3rd qtr and nine mths\n Reuter\n&#3;',0
+'HUGHES TOOL &lt;HT> SAYS BAKER &lt;BKO> MERGER ALIVE Hughes Tool Co Chairman W.A. Kistler\nsaid its counter proposal to merge with Baker International\nCorp was still under consideration and that a merger was in the\nbest interests of both companies.\n    \"Our hope is that we can come to a mutual agreement that is\ngood for both companies,\" Kistler said of the proposed merger\nthat would result in a 1.2 billion dlr oil field service\ncompany. \"We\'re working very hard on this merger. [...]
+'AEQUITRON MEDICAL INC &lt;AQTN> 3RD QTR LOSS Period ended January 31\n    Shr loss five cts vs profit eight cts\n    Net loss 247,100 vs profit 345,300\n    Sales 4,529,300 vs 3,482,800\n    Nine mths\n    Shr profit six cts vs profit 18 cts\n    Net profit 261,300 vs profit 793,700\n    Sales 12.3 mln vs 9,957,200\n Reuter\n&#3;',0
+'LOWE\'S COS INC &lt;LOW> 4TH QTR JAN 31 NET Shr 18 cts vs 31 cts\n    Net 7,168,000 vs 11.3 mln\n    Sales 497.4 mln vs 475.6 mln\n    Avg shrs 39.6 mln vs 37.1 mln\n    Year\n    Shr 1.34 dlrs vs 1.64 dlrs\n    Net 52.2 mln vs 59.7 mln\n    Sales 2.28 billion vs 2.07 billion\n    Avg shrs 39.0 mln vs 36.5 mln\n    NOTE: Current year net both periods includes charge\n2,885,000 dlrs or seven cts shr from early note retirement and\ncharge seven cts shr from reversal of tax credits.\n    C [...]
+'FRANCE TO SELL STAKE IN SOCIETE GENERALE UNIT The French government is to\nsell to the public its 47.42 pct direct holding in Societe\nGenerale &lt;STGN.PA>\'s regional bank subsidiary &lt;Societe Generale\nAlsacienne de Banque>, SOGENAL, from next Monday, SOGENAL\nofficials said.\n    SOGENAL, founded in 1881 and nationalised in 1982, is the\nleading French regional bank and has branches in Austria,\nBelgium, Luxembourg, East and West Germany and Switzerland.\n    Chairman Rene Geronim [...]
+'MIDLAND &lt;MLA> SETS STOCK SPLIT Midland Co said its board declared a\ntwo-for-one stock split, subject to approval of a doubling of\nauthorized common shares at the annual meeting on April 9, and\nan increase in the quarterly dividend to 12 cts pre-split from\n10 cts.\n    The dividend is payable April 8, record March 17, and the\nsplit would be payable May 7, record April 23.\n Reuter\n&#3;',0
+'PRUDENTIAL INSURANCE YEAR EARNINGS The Prudential Insurance Company of\nAmerica, a privately held company, said today that net income\nin 1986 rose to 2.8 billion dlrs from the 2.3 billion dlrs\nreported the year earlier.\n    Assets under management rose to 177.5 billion dlrs in 1986\nfrom 150.1 billion dlrs in 1985, while consolidated assets\njumped to 134.5 billion dlrs from 115.7 billion dlrs.\n    Discussing its major subsidiaries, the company said that\nPrudential Capital and Inve [...]
+'EC OPENS SPECIAL REBATE FOR MAIZE - PARIS TRADE The EC Commission decided to open a\nspecial daily export rebate today for maize exports to Morocco,\nIsrael, Canary Islands and zone 5c (Sub-Saharan Africa), trade\nsources said here.\n    The rebate was set at 153 European currency units per tonne\nfor March and 133 for April through July.\n Reuter\n&#3;',1
+'AEQUITRON &lt;AQTN> SEES 4TH QTR CHARGE Aequitron Medical Inc said costs\nrelated to its previously announced plan to consolidate Life\nProducts operations in Boulder, Colo, are expected to total\n720,000 dlrs, or eight cts a share for the fourth quarter\nending April 30.\n    It said the costs including moving expenses, severance pay\nand future lease payments.\n    The company said it will consolidate Life Products into the\ncompany\'s headquarters and manufacturing operations in\nMin [...]
+'BIG B INC &lt;BIGB> 4TH QTR JAN 31 NET Shr 23 cts vs 17 cts\n    Net 1,742,000 vs 1,1512,000\n    Sales 62.6 mln vs 53.6 mln\n    Avg shrs 7,854,000 vs 6,617,000\n    Year\n    Shr 61 cts vs 61 cts\n    Net 4,469,000 vs 4,039,000\n    Sales 209.8 mln vs 175.4 mln\n    Avg shrs 78,369,000 vs 6,610,000\n Reuter\n&#3;',0
+'WILSHIRE &lt;WOC> CHIEF NAMED TO JACOBS &lt;JEC> BOARD Wilshire Oil Co of Texas, which has a\n9.8 pct stake in Jacobs Engineering Group Inc, said its\nchairman, Siggi Wilzig, was appointed to the Jabobs board.\n    In a filing with the Securities and Exchange Commission,\nWilshire, which holds 417,100 Jacobs common shares, said Wilzig\nwas appointed to the Jacobs board of directors on March 3 after\nthe company\'s annual shareholder meeting.\n    Wilshire also said that Jacobs Chairman  [...]
+'FEBRUARY U.S. RETAIL SALES NOT SIGN OF UPTURN U.S. retailers posted stronger than\nexpected sales in February, but not enough to prompt analysts\nto change their expectations of sluggish sales growth for the\nfirst half of 1987.\n     \"My feeling is that it (February) borrowed some of the\nbusiness we normally see later in the quarter and the real\nstrength of general merchandise sales will be in the second\nhalf of 1987,\" said Bear Stearns and Co analyst Monroe\nGreenstein.\n    \"I  [...]
+'QUARTZ ENGINEERING AND MATERIALS &lt;QRTZ> 1ST QTR Qtr ended Dec 31\n    Shr nil vs nil\n    Net loss 59,922 vs loss 357,203\n    Revs 714,263 vs 926,964\n Reuter\n&#3;',0
+'KODAK &lt;EK> BUYS STAKE IN ENZON &lt;ENZN> Eastman Kodak Co said it has\nacquired an 18.7 pct equity interest in Enzon Inc, a\npharmaceutical company specializing in protein therapy.\n    Kodak said it secured worldwide marketing rights for three\nof Enzon\'s PEG enzymes used in the treatment of oxygen toxicity\ndisorders, hyperuricemia and gout.\n    The company said it acquired two mln Enzon shares for 15\nmln dlrs, with loans to Enzon of two mln dlrs and interest of\n30,000 dlrs cre [...]
+'GEMCRAFT INC &lt;GEMH> YEAR NET Shr 42 cts vs 1.21 dlrs\n    Net 2,317,000 vs 5,847,000\n    Sales 360.0 mln vs 282.4 mln\n    Avg shrs 5,463,000 vs 4,829,000\n    NOTE: 1986 net includes 4,700,000 dlr pretax charge from\nwritedown of land and abandonment of land and pretax charges of\n5,800,00 dlrs from pending rescission offer, settlements with\nU.S. agencies, adjustment of the prior booking of residuals\narising from collateralized mortgage obligation bond issues,\nwritedowns of land [...]
+'APPLIED SOLAR ENERGY CORP &lt;SOLR> 1ST QTR NET Qtr ended Jan 31\n    Shr profit nine cts vs loss 30 cts\n    Net profit 317,000 vs loss 997,000\n    Sales 6,338,000 vs 3,119,000\n    Note: 1986 net includes extraordinary gain of 90,000 dlrs,\nor two cts per shr.\n Reuter\n&#3;',0
+'PACIFIC NUCLEAR SYSTEMS IN &lt;PACN> 4TH QTR LOSS Shr loss 19 cts vs profit seven cts\n    Net loss 851,000 vs profit 227,000\n    Revs 2,600,000 vs 4,800,000\n    Year\n    Shr loss 46 cts vs profit 19 cts\n    Net loss 2,100,000 vs profit 600,000\n    Revs 9,900,000 vs 15.9 mln\n Reuter\n&#3;',0
+'FED\'S JOHNSON STRESSES PRICE STABILITY Federal Reserve Board Vice Chairman\nManuel Johnson said that maintaining price stability was\ncritical to achieving non-inflationary economic growth in the\nworld and said that progress was being made.\n    \"It is worth reiterating that the Federal Reserve\'s\npromotion of price stability is critical to the successful\nimplementation of virtually all of the important ingredients\nfor growth,\" he told the Eastern Economic Association.\n    Johns [...]
+'ANGLO AMERICAN GOLD INVESTMENT CO LTD &lt;AAGIY> Year to Feb 28\n    Shr 1,700.3 cts vs 1,533.0\n    Pre-tax 373.3 mln rand vs 341.0 mln\n    Net 373.3 mln vs 336.5 mln\n    Tax nil vs 4.5 mln\n    Final div 900 cts making 1,600 cts vs 1,450\n    Div payable April 24, register March 20\n Reuter\n&#3;',0
+'HARRIS CUTS TRIAD SYSTEMS &lt;TRSC> STAKE TO 18 PCT Harris Associates L.P., a Chicago\ninvestment advisory partnership, said it lowered its stake in\nTriad Systems Corp to 1,355,296 shares, or 17.9 pct of the\ntotal outstanding, from 1,463,962 shares, or 19.3 pct.\n    In a filing with the Securities and Exchange Commission,\nHarris said it sold a net 108,666 Triad common shares between\nDec 16 and Feb 23 at prices ranging from 10.00 to 14.25 dlrs a\nshare.\n    It said its dealings in  [...]
+'U.S. TREASURY SAYS NO COMMENT ON YEN VALUE A Treasury Department spokesman\nrefused comment on statements by Robert Ortner, undersecretary\nof economic affairs for the Commerce Department, that the\nJapanese yen was undervalued.\n    Ortner, senior economist at the Commerce Department, told\nan Export-Import Bank conference \"the yen is still a little bit\nundervalued,\" and \"could go up another 10 or 15 pct.\"\n    Asked for reaction, a Treasury spokesman said officials\nwere aware of [...]
+' &#2;\nLIBRA BANK EXPECTS BRAZIL TO REACH DEBT ACCORD LONDON, March 5\n- London-based &lt;Libra Bank Plc> said when announcing its 1986\nannual results that it expected Brazil to reach agreement with\nits creditors over debt repayments.\n    \"In recent years Brazil has demonstrated its ability to\ngenerate surpluses sufficient to service its debt, and I have\nno doubt that, in due course, it will reach an agreement with\nthe banks and its other creditors,\" Libra managing director\nPet [...]
+'IDEA INC &lt;IDEA> TO BUY PRIVATE FIRM IDEA Inc said it signed a\nletter of intent to buy privately-held Structural\nInstrumentation Inc.\n    The purchase, for an undisclosed sum, will be made mostly\nwith IDEA common stock, the company said.\n    IDEA said the purchase will add about 32 cts per share to\nits fiscal 1988 earnings.\n    IDEA reported earnings of four cts per share for the\nquarter ended October 31, 1986.\n Reuter\n&#3;',0
+'DUCOMMUN INC &lt;DCO> SELLS DIVISION Ducommun Inc said it sold its\nAirdrome Parts Co division to a group of investors headed by\nAirdrome\'s management for a cash price of 12 mln dlrs.\n    Ducommun said the sale, coupled with its sale last month of\nMetermaster, were steps taken to improve the company\'s balance\nsheet and that no further sales are being contemplated.\n Reuter\n&#3;',0
+'HOOPER HOLMES SHERLOCK INC &lt;HOOP> 4TH QTR NET Shr 22 cts vs 25 cts\n    Net 472,000 vs 454,000\n    Revs 16.2 mln vs 15.2 mln\n    Avg shrs 2,135,315 vs 1,835,325\n    12 mths\n    Shr 71 cts vs 70 cts\n    Net 1,393,000 vs 1,285,000\n    Rwevs 61,805,000 vs 55,367,000\n    Avg shares 1,960,319 vs 1,835,325\n Reuter\n&#3;',0
+'TEXON ENERGY &lt;TXON> IN TALKS ON ACQUISITION Texon Energy Corp said it has entered\ninto a preliminary agreement to purchase an 80 pct interest in\na privately-held specialty plastics manufacturing company it\ndid not name.\n    Texon said completion of the acquisition is subject to the\nconsent of banks and third parties and the acquisition would be\nmade for promissory notes and common stock.\n Reuter\n&#3;',0
+'ALLIED &lt;ALD> AFFILIATE RESTATES LOSS LARGER Allied-Signal Inc\'s 49.7 pct owned\n&lt;Union Texas Petroleum Co> affiliate said it has restated its\nfourth quarter and full-year losses and revenues to increase\nthe provision for the proposed settlement of a price dispute\ninvolving Indonesian liquefied natural gas.\n    It said the restated increases the provision against 1986\nfourth quarter earnings to 23.5 mln dlrs from 15.5 mln dlrs\nestimated earlier.\n    Union Texas said its fou [...]
+'AMREP CORP &lt;AXR> 3RD QTR JAN 31 NET Shr 12 cts vs 34 cts\n    Net 787,000 vs 2,250,000\n    Revs 23.6 mln vs 23.6 mln\n    Nine mths\n    Shr 70 cts vs 1.06 dlrs\n    Net 4,598,000 vs 6,974,000\n    Revs 73.1 mln vs 73.6 mln\n    NOTE: Share adjusted for three-for-two stock split in\nDecember 1986.\n Reuter\n&#3;',0
+'ICI &lt;ICI> SEES GROWTH IN PHARMACEUTICALS Imperial Chemical Industries PLC\nexpects earnings from its pharmaceuticals operations to grow  \nto about 35 pct of world profits within the next five years\ncompared with a current 30 pct, chairman elect Denys Henderson\ntold financial analysts.\n    \"Over the next five years we expect to launch one major new\nproduct each year,\" Henderson said.\n    He also said research and development spending in this\nbusiness segment will be increased [...]
+'SAFECARD SERVICES &lt;SFCD> SETS SPLIT, UPS PAYOUT SafeCard Services Inc said\nits board declared a three-for-two stock split and is\nmaintaining the quarterly dividend on post-split shares at the\nsame six cts it now pays for an effective 50 pct increase.\n    Both the split and the dividend are payable April 30 to\nholders of record March 31.\n Reuter\n&#3;',0
+'WILTON ENTERPRISES INC &lt;WLTN> 2ND QTR JAN 31 NET Oper shr profit two cts vs loss 31 cts\n    Oper net 72,000 vs loss 1,130,000\n    Sales 7,896,000 vs 9,333,000\n    1st half\n    Oper shr profit 32 cts vs profit eight cts\n    Oper net profit 1,187,000 vs profit 299,000\n    Sales 21.3 mln vs 26.0 mln\n    NOTE: Current year net excludes tax credits of 54,000 dlrs\nin quarter and 945,000 dlrs in year.\n Reuter\n&#3;',0
+'ROTTERDAM PORT SUBSIDY TO END JULY 1 - MINISTER Dutch Social Affairs Minister Louw de\nGraaf announced he is withdrawing the annual 10 mln guilder\nlabour subsidy for Rotterdam\'s strike-hit general cargo sector\nas from July 1.\n    Late last month de Graaf said that if the dispute was not\nsettled by Monday this week he would withdraw the subsidy.\n    The chairman of the port employers\' organization, SVZ,\nJacques Schoufour, said he was unhappy with the decision and\nadded there was [...]
+'S.A.Y.&lt;SAYI> TO TAKE 3RD QTR LOSS FROM SALE S.A.Y. Industries Inc said it\nexpects a loss of about two mln dlrs in its third quarter ended\nFebruary 28 from the proposed sale of its Omnilab Inc health\ncare unit.\n    S.A.Y said its board of directors approved the unit\'s sale\nbecause Omnilab was losing about 140,000 dlrs a quarter.\n    \"We no longer see a near-term prospect for a reasonable\nreturn on our investment,\" Romilly Humphries, S.A.Y. president\nand chief executive offi [...]
+'SONESTA INTERNATIONAL HOTELS CORP &lt;SNST> 4TH QTR Shr profit 26 cts vs loss 86 cts\n    Oper net profit 780,000 vs loss 2,609,000\n    Revs 12.2 mln vs 17.1 mln\n    Year\n    Oper shr profit 5.28 dlrs vs loss 1.11 dlrs\n    Oper net profit 16.1 mln vs loss 3,311,000\n    Revs 64.9 mln vs 69.8 mln\n    NOTE: 1986 year net excludes 598,000 dlr tax credit.\n    1986 net includes pretax gains on sale of property of\n2,330,000 dlrs in quarter and 24.5 mln dlrs in year.\n Reuter\n&#3;',0
+'&lt;DOMCO INDUSTRIES LTD> 1ST QTR JAN 31 NET Shr four cts vs 12 cts\n    Net 248,000 vs 647,000\n    Revs 23.7 mln vs 21.9 mln\n Reuter\n&#3;',0
+'UNICORP AMERICAN &lt;UAC> ACQUISITION ADVANCES Unicorp American Corp said it has\nsigned a definitive agreement for the previously-announced\nacquisition of Lincoln Savings Bank.\n    The company said the transaction is still subject to\nregulatory approvals.\n Reuter\n&#3;',0
+'FIRST EASTERN CORP &lt;FEBC> COMPLETES ACQUISITION First Eastern Corp said it has\ncompleted the acquisition of Peoples Bank of Nanticoke, Pa., in\nan exchange of 11 First Eastern shares for each Peoples share.\n    Peoples has assets of about 24 mln dlrs.\n Reuter\n&#3;',0
+'BISHOP GRAPHICS &lt;BGPH> COMPLETES STORE SALE Bishop Graphics Inc\nsaid it completed the sale of its Newport Beach Art Supply\nCenter to Standard Brands Paint Co\'s &lt;SBP> Art Store unit.\n    Terms were not disclosed.\n    Bishop also said it has opened a new sales and service\noffice in Irvine, Calif.\n   \n Reuter\n&#3;',0
+'STRIKING BRAZILIAN SEAMEN HOLD PAY TALKS Striking Brazilian seamen, who say\nthey have made idle 158 ships and halted Brazilian exports,\ntoday held pay talks in Rio de Janeiro with Labour Minister\nAlmir Pazzianotto, union officials said.\n    Jorge Luis Leao Franco, a senior official of the National\nMerchant Marine Union, told Reuters he was optimistic the talks\nwould lead to an end of the stoppage, which began last Friday.\n    Brazil\'s 40,000 seamen are seeking a pay rise of 275  [...]
+'FED\'S JOHNSON SAYS DOLLAR IS VERY CLOSE TO APPROPRIATE EXCHANGE RATE LEVEL \n ',0
+'BROWN GROUP INC &lt;BG> VOTES REGULAR DIVIDEND Qtly div 37-1/2 cts vs 37-1/2 cts prior qtr\n    Pay 1 April\n    Record 16 March\n Reuter\n&#3;',0
+'BLOCKER ENERGY CORP &lt;BLK> YEAR NET Oper shr profit 11 cts vs loss 2.45 dlrs\n    Oper net profit 3,594,000 vs loss 81.9 mln\n    Revs 38.5 mln vs 48.2 mln\n    NOTE: 1986 net excludes 68.5 mln dlr gain from debt\nextinguishment.\n    1985 net includes 72.0 mln dlr writedown of drilling rigs.\n Reuter\n&#3;',0
+'LTX CORP &lt;LTXX> 2ND QTR JAN 31 LOSS Shr loss 28 cts vs loss 32 cts\n    Net loss 2,585,000 vs loss 2,885,000\n    Sales 27.6 mln vs 23.5 mln\n    Avg shrs 9,352,000 vs 9,049,000\n    1st half\n    Shr loss 63 cts vs loss 94 cts\n    Net loss 5,867,000 vs loss 8,405,000\n    Sales 51.9 mln vs 43.7 mln\n    Avg shrs 9,349,000 vs 8,966,000\n    NOTE: Prior year net includes tax credits of 1,827,000 dlrs\nin quarter and 5,347,000 dlrs in half.\n Reuter\n&#3;',0
+'YEUTTER SAYS U.S. BUDGET DEFICIT REDUCTION KEY TO TRADE DEFICIT SOLUTION\n ',0
+'CALPROP CORP &lt;CPP> 4TH QTR NET Shr 40 cts vs 25 cts\n    Net 1,369,602 vs 628,193\n    Revs 12.5 mln vs 4,909,369\n    Avg shrs 3,460,217 vs 2,610,913\n    Year\n    Shr 97 cts vs 54 cts\n    Net 2,952,830 vs 1,414,369\n    Revs 37.0 mln vs 13.5 mln\n    Avg shr 3,031,494 vs 2,609,313\n    Note: Prior qtr and year per share figures restated for 10\npct stock dividend of December 1986.\n Reuter\n&#3;',0
+'SIS CORP &lt;SISB> YEAR NET Shr one ct vs nil\n    Net 9,949,000 vs 3,799,000\n    Revs 15.5 mln vs 13.5 mln\n Reuter\n&#3;',0
+'AMOSKEAG CO &lt;AMOS> SETS QUARTERLY Qtly div 30 cts vs 30 cts prior\n    Pay March 31\n    Record March Five\n Reuter\n&#3;',0
+'MEDTRONIC INC &lt;MDT> SETS QUARTERLY Qtly div 22 cts vs 22 cts prior\n    Pay April 30\n    Record April 10 \n Reuter\n&#3;',0
+'SCITEX CORP &lt;SCIXF> 4TH QTR LOSS Shr loss 46 cts vs loss 1.17 dlrs\n    Net loss 4,990,000 vs loss 12.8 mln\n    Revs 47.0 mln vs 42.3 mln\n    Year\n    Shr loss 3.08 dlrs vs loss 1.28 dlrs\n    Net loss 33.7 mln vs loss 13.3 mln\n    Revs 132.8 mln vs 132.5 mln\n    Avg shrs 10.9 mln vs 10.4 mln\n    NOTE: Includes losses of 501,000 vs 83,000 in qtr and 2.2\nmln vs 83,000 in year from equity of 50 pct-owned companies.\n Reuter\n&#3;',0
+'STANLEY WORKS &lt;SWK> MAKES ACQUISITIONS Stanley Works said it has acquired Acme\nHolding corp, a maker of sliding and folding door hardware, and\nthe designs, patents and other righs of Plan-A-Flex Designer\nCo, which provides kits for home design and remodeling\nprojects.\n    It said Acme had 1986 sales of over 50 mln dlrs.\n    Terms were not disclosed.\n Reuter\n&#3;',0
+'ANITEC IMAGE TECHNOLOGY CORP &lt;ANTC> SETS PAYOUT Qtly div 7-1/2 cts vs 7-1/2 cts prior\n    Pay April 10\n    Record March 27 \n Reuter\n&#3;',0
+'GREEN MOUNTAIN POWER CORP &lt;GMP> SETS QUARTERLY Qtly div 45 cts vs 45 cts prior\n    Pay March 31\n    Record March 20 \n Reuter\n&#3;',0
+'DUAL-LITE INC &lt;MDT> SETS QUARTERLY Qtly div eight cts vs eight cts prior\n    Pay May 11\n    Record April 24 \n Reuter\n&#3;',0
+'SCIENCE MANAGEMENT CORP &lt;SMG> 4TH QTR OPER NET Oper shr profit 14 cts vs loss 31 cts\n    Oper net profit 374,000 vs loss 707,000\n    Revs 19.1 mln vs 15.5 mln\n    Avg shrs 2,610,000 vs 2,560,000\n    Year\n    Oper shr profit 20 cts vs loss 69 cts\n    Oper net profit 530,000 vs loss 1,376,000\n    Revs 69.1 mln vs 64.3 mln\n    Avg shrs 2,603,000 vs 2,565,000\n    NOTE: Excludes gain of 309,000 dlrs vs loss 72,000 dlrs in\nqtr and gains of 458,000 dlrs vs 23,000 dlrs in year from [...]
+'YEUTTER SAYS BUDGET CUT KEY TO BETTER U.S. TRADE A reduction of the U.S. federal budget\ndeficit will be needed to help eliminate the nation\'s huge\ntrade deficit, U.S. trade representative Clayton Yeutter said.\n    Speaking to the New York Chamber of Commerce and Industry,\nYeutter said \"Capital and trade flows are clearly\ninter-releated now.\n    \"Unless we get the budget deficit down, we will not get the\ntrade deficit down.\"\n    He did not elaborate on his views of the linkag [...]
+'CARMEL CONTAINER SYSTEMS LTD&lt;KML> YEAR OPER NET Oper shr 1.18 dlrs vs 58 cts\n    Oper net 2,266,000 vs 1,037,000\n    Revs 45.8 mln vs 41.4 mln\n    Avg shrs 1,924,000 vs 1,800,000\n    NOTE: Excludes gain of 73,000 dlrs vs 290,000 dlrs from\nbenefit of tax loss carryforward.\n    Results for Tel Aviv, Israel-based company translated at\nrate of one dlr to 1.485 new Israeli shekels.\n Reuter\n&#3;',0
+'NEW CURRENCY PROBLEM SEEN AMONG U.S, EUROPE, JAPAN The highly visible drama involving the\nyen\'s sharp rise against the U.S. Dollar is obscuring the fact\nthat the Japanese currency has hardly budged against major\nEuropean currencies, thus creating a new set of exchange rate\ndistortions, Japanese and European research officials said.\n    The officials, looking beneath the rhetoric of statements\nby the Group of Five (G-5) industrial nations, told Reuters the\ncurrency movements of t [...]
+'TANDEM COMPUTERS &lt;TNDM> SEES HIGHER NET Tandem Computers Inc said it expects\nhigher earnings and revenues in its second fiscal quarter\nending March 31 against a year ago.\n    \"We feel we will continue to see higher growth in the\nquarter,\" James Treybig, president and and chief executive\nofficer, told a meeting of securities analysts.\n    In the second fiscal quarter last year, Tandem earned\n9,950,000 dlrs or 29 cts per share on revenues of 176.3 mln\ndlrs.\n    Treybig decli [...]
+'FED\'S JOHNSON SAYS HE DOES NOT SEE INCREASING PRESSURE ON INTEREST RATES\n ',0
+'AUSTRALIA ATTACKS U.S. GATT FARM RULES EXEMPTION Australia accused the U.S. of increasing\nprotectionism on agricultural products and called for an end to\nWashington\'s special 32-year exemption from certain GATT rules\non agricultural trade.\n    Robert Arnott, Australia\'s delegate to the General\nAgreement on Tariffs and Trade (GATT), made the appeal at a\nspecial annual meeting which reviews the 1955 U.S. waiver.\n    \"Australia today said the United States\' goals of reducing\nU. [...]
+'FIRST UNION &lt;FUNC> TO BUY FLORIDA BANK First Union Corp said it has\nagreed to acquire First State Bancshares Inc of Pensacola,\nFla.,  and its First State Bank of Pensacola subsidiary for\nabout 457,000 common shares.\n    First State has assets of about 110 mln dlrs.  The\nacquisition, expected to be treated as a pooling of interests,\nis expected to be completed in the third quarter of 1987\nsubject to approval by regulatory agencies and First State\nshareholders.\n Reuter\n&#3;',0
+'OPPENHEIMER RAISES NWA &lt;NWA> EARNINGS ESTIMATE Oppenheimer and Co analyst Robert\nMcAdoo raised his 1987 earnings estimate for NWA Inc, parent of\nNorthwest Airlines, following a strong quarterly report by the\ncompany yesterday, according to Oppenheimer market strategist\nMichael Metz.\n    NWA shares rose 1-5/8 to 74-3/8 in active trading.\n    McAdoo raised his 1987 estimate to 7.50 dlrs a share from\nfive dlrs and maintained a buy recommendation on the stock,\nMetz said.\n    McA [...]
+'HOUSE 0/92 FARM PROPOSAL SEEN SPARKING DEBATE A House Agriculture Committee meeting\nlater today to draft a disaster aid bill is expected to spark a\ndebate between lawmakers who want to expand the 0/92, or\n\"de-coupling,\" provision to cover feedgrains, and those who\noppose 0/92 or want it severely limited, Congressional sources\nsaid.\n    The disaster aid bill as it now stands calls for a one-year\n0/92 pilot program for 1987 crop wheat and the 1988 winter\nwheat crop. The bill wou [...]
+'YELLOW FREIGHT &lt;YELL> SEES LOWER 1ST QTR NET Yellow Freight System Inc said\nits expects 1987 first quarter profits to be substantially\nbelow the 14.2 mln dlrs or 50 cts a share earned in the same\nperiod a year ago.\n    Revenues have been depressed by recent price discounting,\nadded costs from expansion programs, lower shipping volumes and\nincreased costs associated with severe weather conditions\non the East coast, company officials told analysts here.\n    An industry-wide rat [...]
+'NOVA SUBSIDIARY RAISES U.S. POLYETHYLENE PRICES Novacor Inc, a unit of &lt;Nova,\nan Alberta Corp>, said it would raise prices for U.S. customers\nby five cts a pound on linear low-density and low-density\npolyethylene, effective April 1.\n    The company did not immediately disclose the actual new\nprices.\n    A Novacor official later said in reply to an inquiry that\nthe new prices, effective April 1, would range from 31 U.S. cts\na pound to about 38 cts.\n    The official said the i [...]
+'MOULINEX STAKE SOLD TO SOME 50 INSTITUTIONS The 20 pct stake in Moulinex SA &lt;MOUP.PA>\nsold by &lt;Scovill Inc> of the U.S. Was spread among at least 50\ninstitutional investors worldwide, a spokesman for brokers\nJames Capel said. Capel handled the deal.\n    The buyers were based in centers ranging from Europe to\nNorth America and Japan, he added.\n    Moulinex\'s capital is split among Jean Mantelet, president\nof the company, with 42 pct, along with private investors\nholding 38 [...]
+'TALKING POINT/PIEDMONT &lt;PIE> Carl Icahn\'s bold takeover bid for\nUSAir Group &lt;U> has clouded the fate of Piedmont Aviation Inc,\nwhich was being courted by USAir.\n    Yesterday, Icahn\'s Transworld Airlines Inc &lt;TWA> made a 1.4\nbillion dlr offer for USAir Group. The move complicated a USAir\ntakeover offer for Piedmont, which was believed to be close to\naccepting the bid.\n    Today, USAir rejected Icahn\'s 52 dlr per share offer and\nsaid the bid was a last-minute effort t [...]
+'BAKER INT\'L &lt;BKO> HOPES TO COMPLETE MERGER Baker International Corp treasurer Eric\nMattson said the company hoped to iron out snags in a proposed\nmerger with Hughes Tool Co &lt;HT> but declined to say if or what\ncompromises might be acceptable to it.\n    The proposed merger that would create a 1.2 billion dlr\noilfield services company was thrown into limbo yesterday when\nHughes management, balking at the terms of a government consent\ndecree, offered a counter-proposal to Bake [...]
+'LUCKY STORES INC REINSTATES QUARTERLY DIVIDEND AT 12.5 CTS PER SHARE\n ',0
+'HOMESTEAD FINANCIAL &lt;HFL> UPS CASH DIVIDEND Homestead Financial Corp\nsaid it has increased the dividend on its Class A common shares\nto 6-1/4 cts a share, from five cts prior, while declaring an\ninitial dividend on its Class B common stock of 3-3/4 cts a\nshare.\n    Homestead said the two classes of stock emerged as part of\nits recapitalization plan which also doubled the number of\nauthorized common, comprising both classes, to 11 mln shares.\n    Homestead said the dividends a [...]
+'ELECTRO-SENSORS INC &lt;ELSE> YEAR OPER NET Oper shr 52 cts vs 51 cts\n    Oper net 626,013 vs 613,127\n    Sales 4,544,929 vs 4,402,572\n    NOTE: Earnings exclude extraordinary securities loss of\n29,532 dlrs, or two cts a share vs a gain of 81,358 dlrs, or\nseven cts a share\n\n Reuter\n&#3;',0
+'CHINA ADDS, CANCELS WHEAT COMMITMENTS - USDA China has added 90,000 tonnes of U.S.\nwheat to its purchases for delivery in the 1987/88 season and\ncancelled 30,000 tonnes of wheat purchases for delivery in the\n1986/87 season, the U.S. Agriculture Department said.\n    According to the department\'s Export Sales Report covering\ntransactions in the week ended February 26, China has\noutstanding wheat commitments for the 1986/87 season of 30,000\ntonnes and 420,000 tonnes for delivery in [...]
+'OPEC PRESIDENT SAYS OUTPUT WELL BELOW CEILING Opec Conference President Rilwanu Lukman\nsaid the group was producing well below the 15.8 mln bpd\nceiling it set in December, partly because liftings had been\ndelayed or postponed by customers unwilling to pay fixed Opec\nprices.\n    Lukman, during a brief visit to London on his way home from\nJamaica, told Reuters in a telephone interview that in\nFebruary, Opec had underproduced partly because members were\nstrictly abiding by producti [...]
+'LUCKY STORES INC &lt;LKS> REINSTATES QUARTERLY DIV Qtly div 12.5 cts vs nil\n    Pay April 3\n    Record March 16\n    Note: in quarters preceeding 4th qtr, dividend was 29 cts.\n Reuter\n&#3;',0
+'CARMEL CONTAINER SYSTEMS LTD&lt;KML> YEAR OPER NET Oper shr 1.18 dlrs vs 58 cts\n    Oper net 2,266,000 vs 1,037,000\n    Revs 45.8 mln vs 41.4 mln\n    Avg shrs 1,924,000 vs 1,800,000\n    NOTE: Excludes gain of 73,000 dlrs vs 290,000 dlrs from\nbenefit of tax loss carryforward.\n    Results for Tel Aviv, Israel-based company translated at\nrate of one dlr to 1.485 new Israeli shekels.\n Reuter\n&#3;',0
+'CUBAN CATTLE THREATENED BY DROUGHT Over 750,000 head of cattle are suffering\nthe effects of a severe shortage of feed as a result of a\nprolonged drought in the normally rich sugar and cattle\nproducing province of Camaguey, the newspaper Granma reported.\n    The province produces 23 pct of Cuba\'s beef and is the\nisland\'s number two province in milk production. Granma said\n20,000 head of cattle are now in imminent danger.\n    The newspaper said a \"cattle emergency\" had been dec [...]
+'U.S. TO SET ORANGE JUICE DUTIES MONDAY The Commerce Department on Monday\nwill set final dumping duties on frozen orange juice from\nBrazil, department officials said.\n    A preliminary duty of 8.54 pct was set last Oct 17 on the\nimports, which run at about 700 mln dlrs a year. Commerce\'s\nruling on Monday will reset the duties on the basis of more\ndetailed cost information, industry officials said.\n    The duties now are being assessed on a temporary basis,\npending a final ruling [...]
+'LONGVIEW FIBRE CO &lt;LFBR> QUARTERLY DIVIDEND Qtly div 40 cts vs 40 cts\n    Pay April 10\n    Record March 25\n Reuter\n&#3;',0
+'BEI HOLDINGS LTD &lt;BEIH> 1ST QTR JAN 31 NET Shr 13 cts vs eight cts\n    Net 1,364,712 vs 881,082\n    Rev 11.6 mln vs 11.5 mln\n    NOTE: Qtr includes extraordinary gain of 586,826 dlrs, or\nsix cts a share, versus 183,850 dlrs or two cts a share in\nfiscal 1986\'s first qtr.\n Reuter\n&#3;',0
+'ENDEVCO &lt;EI> AGREES TO BUY MISSISSIPPI PIPELINE Endevco Inc said it has agreed to acquire\na 17.5-mile, 16-inch pipeline in Marion and Pearl River\nCounties, Mississippi, for undisclosed terms.\n    The company said the pipeline was recently constructed from\nthe Poplarville gas field in Pearl River County to a proposed\ninterconnect with a pipeline operated by Occidental Petroleum\nCorp\'s &lt;OXY> United Gas Pipe Line Co subsidiary in Marion\nCounty but has nmot been placed in serv [...]
+'ATLANTIC CITY ELECTRIC CO &lt;ATE> SETS PAYOUT Qtly div 65-1/2 cts vs 65-1/2 cts prior\n    Pay April 15\n    Record March 19\n Reuter\n&#3;',0
+'KEMPER CORP &lt;KEMC> REGULAR PAYOUT SET Qtly div 15 cts vs 15 cts previously\n    Pay May 29\n    Record May Eight\n Reuter\n&#3;',0
+'FFB &lt;FFCT> SETS INITIAL QUARTERLY DIVIDEND FFB Corp, parent of the First\nFederal Bank of Connecticut FSB, said it declared an initial\nquarterly dividend of five cts per share.\n    The company said the dividend is payable March 31 to\nholders of record March 17.\n Reuter\n&#3;',0
+'UNION CARBIDE SAYS OPERATING PROFITS FOR 4th qtr WERE 181 MLN DLRS VS LOSS THREE MLN DLRS\n ',0
+'MONEY MARKET FUND ASSETS ROSE 552.5 MLN DLRS IN LATEST WEEK TO 237.46 BILLION\n ',0
+'COMBINED INTERNMATIONAL &lt;PMA> SEES STRONG 1987 Combined International Corp should have\nanother strong year, President Patrick G. Ryan told analysts,\nalthough he declined to forecast earnings specifically.\n    In 1986, the company reported operating income of 5.51 dlrs\na share, up from 4.84 dlrs a share a year earlier. Revenues\nincreased to 1.81 billion dlrs from 1.36 billion dlrs.\n    Ryan said Combined is testing a direct response long-term\ncare product through its Union Fide [...]
+'CANADA DLR DRIVEN BY FOREIGN BUYERS - WILSON Finance Minister Michael Wilson said\nlarge inflows of capital into Canada, principally into the\ncountry\'s bond market, is a major reason behind the sharp\nrecovery in the Canadian dollar.\n    He said the inflow of funds, mainly from Japan, Europe and\nthe United States, is the result of \"confidence in the\ndirection this country is going in.\"\n    \"That is the reason why the (Canadian) dollar today is\nhigher than 75 cts (U.S.) compare [...]
+'CHARTWELL GROUP LTD &lt;CTWL> 4th qtr net Shr nine cts vs three cts\n    Net 549,000 vs 72,000\n    Rev 7.0 mln vs 2.8 mln\n    Year\n    Shr 49 cts vs 32 cts\n    Net 2,441,000 vs 801,000\n    Rev 19.6 mln vs 9.7 mln\n   \n Reuter\n&#3;',0
+'PITT-DES MOINES INC &lt;PDM> TO ACQUIRE STEEL UNIT Pitt-Des Moines Inc said it will\nacquire &lt;Chicago Steel Corp> in exchange for a portion of its\nstock.\n Reuter\n&#3;',0
+'GIANT BAY &lt;GBYLF> DETAILS GORDON LAKE DEPOSIT Giant Bay Resources\nLtd said a metallurgical study of its Gordon Lake gold deposit\nindicated an overall recovery of 95 pct to 96 pct of the gold\ncan be achieved by either direct cyanidation of ore or\nflotation followed by cyanidation of concentrate.\n    Continuation of an underground program on the property will\nbegin in June, extending an existing drift along the\n200-foot-level where the main ore zone was encountered, Giant\nBay s [...]
+'CONSENSUS BUILDS FOR WORLD AGRICULTURAL REFORM Top U.S. and European farm trade and\ngovernment representatives called for a sweeping reform of\nworld agriculture to redress a critical demand and supply\nimbalance.\n    Speakers at a conference on world agricultural markets here\ndemonstrated a growing U.S.-European consensus on the need for\nan urgent and collective overhaul of world farm trade and\nproduction.\n    \"It is vital that we work together to bring more freedom and\nharmony [...]
+'REXCOM &lt;RXSC> TO ACQUIRE MARKETING FIRM Rexcom Systems Corp said it agreed to\nbuy all the assets of Postech Inc from Comtech Group\nInternational Ltd, a Canadian computer service company, for 70\npct of Rexcom\'s voting shares.\n    The purchase will be for Rexcom common and preferred stock.\n    Postech, the Canadian firm\'s U.S. marketing arm, sells\ncomputerized restaurant management systems and security systems\nin the U.S.\n    The deal is subject to approval by the boards of P [...]
+'ASCS BUYS PEANUT PRODUCTS, VEG OIL/SHORTENING The Agricultural Stabilization and\nConservation Service (ASCS) bought 2.3 mln pounds of peanut\nproducts at a cost of 2.1 mln dlrs and 7.4 mln pounds of\nvegetable oil/shortening for 2.0 mln dlrs, for domestic\ndistribution April 1-15 and April 16-30, an ASCS spokesman\nsaid.\n Reuter\n&#3;',0
+'GENERAL REFRACTORIES CO &lt;GRX> 4TH QTR NET Shr 17 cts vs 84 cts\n    Net 709,000 vs 3,605,000\n    Rev 86.4 mln vs 87.0 mln\n    Year\n    Shr 1.79 dlrs vs 1.10 dlrs\n    Net 7,452,000 vs 4,695,000\n    Rev 362.8 mln vs 316.0 mln\n    NOTE: 1986 net includes gains from sale of non-operating\nassets of 800,000 dlrsm versus 1.2 mln dlrs in 1985.\n    1985 net includes nonrecurring cost of 2.6 mln dlrs and\nprovision for separation pay of 1.5 mln dlrs.\n Reuter\n&#3;',0
+'HOUSE 0/92 FARM PLAN MARKUP DELAYED TILL TUESDAY A House Agriculture Committee meeting\nto draft a disaster aid bill containing a controversial 0/92\nprovision has been postponed until next Tuesday, committee\nstaff members announced.\n    The bill contains a provision implementing a 0/92 acreage\nreduction plan for 1986 wheat and 1987 winter wheat, thereby\nmaking payments available to farmers who were not able to plant\nlast year\'s winter wheat crop because of flooding.\n    Controve [...]
+'UNION CARBIDE &lt;UK> SAYS LONG TERM DEBT RISES Union Carbide Corp said its 1986\nlong term debt was 3.06 billion dlrs compared to 1.71 billion\ndlrs in 1985.\n    The company released its audited 1986 results.\n    The company also said its long term debt was reduced by\nabout 1.5 billion dlrs from the third quarter to the end of the\nyear by asset sales and equity offerings. Union Carbide sold\nits battery products, home and automobile products and\nagricultural products businesses in [...]
+'FIRST COMMERCIAL BANCORP &lt;FCOB> 4TH QTR LOSS Shr loss 49 cts vs loss 1.36 dlrs\n    Net loss 928,835 vs loss 1,648,665\n    Year\n    Shr loss 33 cts vs loss 4.21 dlrs\n    Net loss 593,533 vs loss 4,970,951\n    Assets 203.9 mln\n    Loans 151.5 mln\n    Deposits 192.0 mln\n    Note: 1986 loss included non-recurring expenses of\n1,275,000 dlrs comprised of asset write-downs, legal proceeding\nand a 930,000-dlr provision for loan losses.\n Reuter\n&#3;',0
+'HARCOURT BRACE JOVANOVICH INC &lt;HBJ> 4TH QTR NET Shr 23 cts vs 28 cts\n    Net 8,877,000 vs 9,530,000\n    Revs 342 mln vs 278.9 mln\n    Avg shrs 39.4 mln vs 34 mln\n    Year\n    Shr 1.91 dlrs vs 1.62 dlrs\n    Net 70.5 mln vs 50.5 mln\n    Revs 1.3 billion vs 990.5 mln\n    Avg shrs 37 mln vs 31.3 mln\n    NOTE: On Dec one, 1986, company acquired Holt, Rinehart and\nWinston and W.B. Saunders and The Dryden Press and their\nforeign subsidiaries. By including these companies for the\ [...]
+'LONE STAR&lt;LCE> AGREES TO BUY CONCRETE OPERATIONS Lone Star Industries Inc said\nit has agreed to acquire ready-mixed concrete and aggregates\nbusinesses from &lt;Riedel International Inc> of Portland, Ore.,\nfor an undisclosed amount of cash.\n    Lone Star\'s one sentence statement gave no further details\nand company spokesmen were not available.\n Reuter\n&#3;',0
+'SHELL FRANCAISE RETURNS TO PROFIT IN 1986 Shell Francaise &lt;SFMF.PA>, a subsidiary of\n&lt;Shell Petroleum NV>, returned to the black last year for the\nfirst time since 1982, with parent company net profit of 43 mln\nfrancs against losses of 968 mln in 1985 and 1.07 billion in\n1984. In 1982 it posted a profit of 329 mln.\n    The company said in a statement that cash flow had improved\nstrongly although it remained negative at 182 mln francs\nagainst 1.34 billion in 1985, due largel [...]
+'BRAZIL SUSPENDS IMPORT OF 500,000 TONNES MAIZE Brazil has suspended the importation\nof 500,000 tonnes of maize ordered last year because of the\nexcellent domestic maize harvest expected this year,\nAgriculture Minister Iris Resende said.\n    The Agriculture Ministry expects a record maize crop of\n27.7 mln tonnes, a 36 pct increase on last year\'s crop of 20.3\nmln tonnes.\n    Brazil\'s total grain crop is expected to be 65.3 mln\ntonnes. \"This is a record in the history of Brazili [...]
+'FAIRMOUNT CHEMICAL CO INC &lt;FMTC> 4TH QTR LOSS Shr loss 28 cts vs loss 29 cts\n    Net loss 584,100 vs loss 459,500\n    Sales 1,339,800 vs 1,6390,800\n    Year\n    Shr loss 64 cts vs loss 79 cts\n    Net loss 1,314,700 vs loss 1,237,100\n    Sales 7,249,600 vs 6,311,500\n Reuter\n&#3;',0
+'HUMANA INC &lt;HUM> REGULAR DIVIDEND Qtly div 19 cts vs 19 cts in prior qtr\n    Payable May one\n    Record April two\n Reuter\n&#3;',0
+'U.S. COMMERCIAL PAPER FALLS 1.27 BILLION DLRS IN FEB 25 WEEK, FED SAYS\n ',0
+'N.Y. BUSINESS LOANS RISE 523 MLN DLRS IN FEB 25 WEEK, FED SAYS\n ',0
+'FINANCIAL CORP &lt;FIN> UNIT BUYS BRANCHES Financial Corporation of\nAmerica\'s American Savings and Loan Association unit said it\nsigned a definitive agreement to buy three retail savings\nbranches from Gibraltar Financial Corp\'s &lt;GFC> Gibraltar\nSavings unit.\n    The purchase, which must be approved by the Federal Home\nLoan Bank and the California Department of Savings and Loans,\nwould increase American Savings\' deposits by about 40 mln dlrs.\n    The branches are in La Jolla [...]
+'PORK DELEGATES VOTE ON FARM BILL, FARM CREDIT Delegates from the National Pork\nProducers Council, NPPC, attending the American Pork Congress\nin Indianapolis, voted overwhelmingly to recommend the U.S.\ncongress not to change the farm bill. While there are no\nspecific pork items in that legislation, feed grain prices\ndirectly affect pork producer profits, the NPPC said.\n    Don Gingerich, a delegate from Iowa, said \"to have\nunpredictable changes come along periodically makes it ve [...]
+'CONFIDENCE IN OPEC FIRMS U.S. ENERGY FUTURES Renewed confidence in OPEC\'s ability to\nlimit production helped U.S. energy futures settle above\nyesterday\'s closing prices, according to analysts.\n    They also said the heating oil contract found additional\nsupport from a short-covering rally on the close.\n    April crude closed 24 cts higher to 17.75 dlrs. April\nheating oil was 1.47 cts higher to 47.91 cts a gallon.\n    \"Most traders expected follow through profit-taking from\nye [...]
+'TREASURY SAYS ONLY REAGAN, BAKER SPEAK ON DLR The U.S. Treasury repeated a White\nHouse statement that only President Reagan and Treasury\nSecretary James Baker are authorized to speak on the dollar.\n    A Department spokesman was commenting on remarks by\nCommerce Department Under-Secretary Robert Ortner that the yen\nwas undervalued 10 or 15 pct against the dollar but European\ncurrencies were fairly priced against the U.S. currency.\n    \"As Larry Speakes said on January 14 this ye [...]
+'USDA COMMENTS ON EXPORT SALES  Corn sales gained 2,494,900 tonnes in\nthe week ended February 26, the highest weekly total since\nAugust 1984 and two and three-quarter times the prior week\'s\nlevel, the U.S. Agriculture Department said.\n    In comments on its Export Sales Report, the department said\nsales of 1.0 mln tonnes to the USSR -- previously reported\nunder the daily reporting system -- were the first sales for\ndelivery to the USSR under the fourth year of the U.S.-USSR\nGrai [...]
+'FAIRFIELD COMMUNITIES INC &lt;FCI> 10 MOS DEC 31 Shr loss 1.62 dlrs vs profit 83 cts\n    Net loss 17.2 mln vs profit 8.3 mln\n    Revs 264.0 mln vs 338.0 mln\n    NOTE:Year ago figures based on 12 months ended February 28,\n1986 because company changed reporting period to end December\n31.\n   1986 10 months loss includes 10.3 mln dlrs writedown of\ncertain assets.\n                        \n Reuter\n&#3;',0
+'CARVER CORP &lt;CAVR> 4TH QTR NET Shr 20 cts vs 17 cts\n    Net 680,000 vs 533,000\n    Sales 6,473,000 vs 5,996,000\n    Year\n    Shr 57 cts vs 84 cts\n    Net 1,967,000 vs 2,099,000\n    Sales 20.8 mln vs 19.0 mln\n Reuter\n&#3;',0
+'INTER-CITY GAS CORP 4TH QTR SHR 36 CTS VS 68 CTS\n ',0
+'UNICORP &lt;UAC>, LINCOLN IN DEFINITVE PACT Unicorp American Corp said it signed a\ndefinitive agreement to acquire Lincoln Savings Bank FSB.\n    Under terms of the agreement announced in January, Lincoln\nwould be acquired by a unit of Unicorp which is minority-owned\nby Lincoln president Alton Marshall.\n    The acquisition will take place through a voluntary \nconversion of Lincoln to a federally chartered stock savings\nbank from a mutual federal savings bank.\n    In connection wi [...]
+'U.S. M-1 MONEY SUPPLY RISES 1.9 BILLION DLRS IN FEB 23 WEEK, FED SAYS\n ',0
+'U.S. BANK DISCOUNT BORROWINGS AVERAGE 233 MLN DLRS A DAY IN MARCH 4 WEEK, FED SAYS\n ',0
+'COFFEE FALL NOT SEEN AFFECTING COLOMBIA\'S DEBT The sharp fall in international coffee\nprices will not affect Colombia\'s external credit situation,\nfinance minister Cesar Gaviria told reuters.\n    He said the current depression on world coffee markets was\nnot totally unexpected and would have no immediate bearing on\nColombia\'s financial state which he described as sound.\n    \"Our foreign debt is high, but we can pay and I hope the\nforeign banking community will maintain its po [...]
+'U.S. M-1 MONEY SUPPLY RISES 1.9 BILLION DLRS U.S. M-1 money supply rose 1.9 billion\ndlrs to a seasonally adjusted 738.5 billion dlrs in the\nFebruary 23 week, the Federal Reserve said.\n    The previous week\'s M-1 level was revised to 736.6 billion\ndlrs from 736.7 billion dlrs, while the four-week moving\naverage of M-1 rose to 736.7 billion dlrs from 735.0 billion.\n    Economists polled by Reuters had forecast M-1 in a range\nfrom down 500 mln dlrs to up 4.5 billion dlrs.\n    The  [...]
+'HUMANA &lt;HUM> DECLARES SHAREHOLDERS RIGHTS PLAN Humana Inc said its board\napproved a shareholder rights plan, or so-called poison pill\nplan, to ensure its shareholders receive fair treatment in the\nevent of a proposed takeover.\n    Humana said it is now aware of any effort to gain control\nof the company.\n    Under the plan its board declared a dividend distribution\nof one right for each outstanding common share held as of March\n16. It said each right entitles holders to purcha [...]
+'FREMONT GENERAL CORP &lt;FRMI> 4TH QTR OPER NET Oper shr profit 63 cts vs loss 1.15 dlrs\n    Oper net profit 6,629,000 vs loss 12.4 mln\n    Revs 23.6 mln vs 22.4 mln\n    Year\n    Oper shr profit 1.65 dlrs vs loss 1.28 dlrs\n    Oper net profit 17.5 mln vs loss 13.8 mln\n    Revs 93.1 mln vs 86.8 mln\n    Note: Oper data does not include loss from discontinued\noperations of 7,932,000 dlrs, or 73 cts per shr in 4th qtr\n1985, loss of 40.5 mln dlrs, or 3.83 dlrs per shr in the 1986\ny [...]
+'GREAT WESTERN FINANCIAL &lt;GWF> UNIT BUYS BANKS Great Western Financial\nCorp\'s subsidiary Great Western Bank said it will purchase\nthree retail banking branches in south Florida with total\ndeposits of 90 mln dlrs.\n    Great Western said it will purchase branches in Deerfield\nBeach and Hollywood with approximately 80 mln dlrs in deposits\nfrom Guardian Savings and Loan Association, and one in Palm\nBeach with approximately 10 mln in deposits from Goldome\nSavings Bank.\n Reuter\n&#3;',0
+'HUGHES &lt;HT> CHANGES STANCE ON MERGER AFTER SUIT A one billion dlr lawsuit pushed\nHughes Tool Co into an about-face on its rejection of a\nproposed merger with Baker International Corp &lt;BKO>, Wall\nStreet analysts said.\n    Last night, Hughes said the planned merger with Baker was\noff. Baker then filed a suit seeking punitive damages from\nHughes for calling off the merger. At midday today Hughes said\nit was still interested in the merger.\n    The analysts also said Hughes may [...]
+'ARMTEK &lt;ARM> SELLS TIRE, TRUCK TIRE BUSINESS Armtek Corp, formerly known as\nArmstrong Rubber Co, said it signed agreements with &lt;Condere\nCorp> for the sale of its Natchez, Miss. tire plant and its S\nand A Truck Tire Sales and Services Corp.\n    Terms were not disclosed. Armtek spokesman John Sievers\nsaid S and A is a 50 mln dlr business.\n    Earlier this week, Armtek announced the sale of its\nindustrial tire and assembly business division to Dyneer Corp\nof Scotsdale, Ariz. [...]
+'ELXSI LTD &lt;ELXSF> 4TH QTR LOSS Shr loss four cts vs loss 34 cts\n    Net loss 2,922,000 vs loss 19.9 mln\n    Revs 4,071,000 vs 8,012,000\n    Year\n    Shr loss 23 cts vs loss 79 cts\n    Net loss 17.3 mln vs loss 46.2 mln\n    Revs 22.4 mln vs 28.6 mln\n Reuter\n&#3;',0
+'&lt;NEWSCOPE RESOURCES LTD> YEAR LOSS Shr loss 94 cts vs profit 28 cts\n    Net loss 6,319,337 vs profit 1,702,016\n    Revs 2,899,513 vs 5,239,106\n    Note: 1986 net includes 5,250,000 dlr writedown of oil and\ngas properties.\n Reuter\n&#3;',0
+'FERC ISSUES TAKE-OR-PAY GAS POLICY PLAN The Federal Energy Regulatory\nCommission (FERC) issued a proposed policy statement for the \nrecovery of take-or-pay costs imposed by existing natural gas\ncontracts between producers and pipelines.\n    It put out the statement, by 5-0 vote, for a 30-day comment\nperiod. It also put out an alternative policy statement by\nCommissioner Charles Stalon.\n    FERC said in a press release that \"the proposed policy\nstatement estblishes an exception  [...]
+'TIMES MIRROR CO &lt;TMC> QUARTERLY DIVIDEND Qtly div 41 cts vs 41 cts\n    Pay June 10\n    Record May 29\n Reuter\n&#3;',0
+'INTER-CITY GAS CORP &lt;ICG> 4TH QTR NET Shr 36 cts vs 68 cts\n    Net 10.0 mln vs 16.1 mln\n    Revs 441.6 mln vs 470.8 mln\n    YEAR\n    Shr 86 cts vs 1.77 dlrs\n    Net 29.1 mln vs 44.1 mln\n    Revs 1.43 billion vs 1.54 billion\n    Note: 1986 fl-yr net includes 9.3 mln dlr writedown of U.S.\noil and gas properties partly offset by 1.1 mln dlr\nextraordinary gain from tax gains and proceeds from sale of\nMinnesota utility operations. 1985 net includes extraordinary\ngain of 892,000 [...]
+'BROWN TRANSPORT CO INC &lt;BTCI> 4TH QTR NET Shr profit 26 cts vs profit 10 cts\n    Net profit 1,371,000 vs profit 482,000\n    Revs 48 mln vs 45.7 mln\n    Avg shrs 5.20 mln vs 5.15 mln\n    12 mths\n    Shr profit 1.05 dlrs vs loss 34 cts\n    Net profit 5,454,000 vs loss 1,766,000\n    Revs 191.7 mln vs 185.2 mln\n    Avg shrs 5.20 mln vs 5.15 mln\n Reuter\n&#3;',0
+'METRO MOBILE CTS INC &lt;MMCT> FIRST QTR LOSS Qtr ends Dec 31\n    Shr loss 33 cts vs loss 16 cts\n    Net loss 5,632,426 vs loss 2,373,358\n    Revs 3,277,976 vs 1,535,550\n    Avg shrs 16.9 mln vs 14.4 mln\n Reuter\n&#3;',0
+'&lt;SPAR AEROSPACE LTD> YEAR NET Shr basic 42 cts vs 1.41 dlrs\n    Shr diluted 42 cts vs 1.33 dlrs\n    Net 4,394,000 vs 13,070,000\n    Revs 191.0 mln vs 223.3 mln\n Reuter\n&#3;',0
+'PESCH UNIT SEEKS BALANCE OF REPUBLIC HEALTH Alpha Health Systems Corp, a\nwholly-owned subsidiary of Pesch and Co, said it submitted a\nmerger proposal to the board of REPH Acquisition Co, the parent\ncompany of Republic Health Corp, which is 64 pct owned by Pesch\ninterests.\n    The balance of REPH\'s common stock is owned by members of\nRepublic management, McDonnell Douglas Corp &lt;MD>, Donaldson,\nLufkin and Jenrette and Pacific Asset Holdings L.P.\n    Republic currently owns 44  [...]
+'SPAR SEES SEES STRONG FIVE-YEAR GROWTH &lt;Spar Aerospace Ltd>, reporting a\nsharply lower 1986 profit, said it anticipated solid profit and\nrevenue growth during the next five years.\n    \"Looking to the longer term, Spar is confident that its\ncontinuing concentration on advanced robotics, satellite-based\ncommunications and electro-optical defense systems will lead to\nsignificant growth in revenues and earnings over the next five\nyears,\" the company said.\n    It also forecast h [...]
+'CHESAPEAKE UTILITIES CORP &lt;CHPK> REGULAR DIV Qtly div 28-3/4 cts vs 28-3/4 cts prior\n    Pay April three\n    Record March 13\n Reuter\n&#3;',0
+'MEATPACKERS REJECT OCCIDENTAL &lt;OXY> UNIT OFFER United Food and Commercial Workers Union\nLocal 222 rejected a new contract proposal from Iowa Beef\nProcessors Inc and remain out of work, union spokesman Allen\nZack said.\n    In mid-December, Iowa Beef, a subsidiary of Occidental\nPetroleum Corp, closed its beef processing plant at Dakota\nCity, Nebraska, because it said \"it had no alternative to\nthreats by meatpackers to disrupt operations.\"\n    About 2,800 UFCWU members are aff [...]
+'SWIFT INDEPENDENT PACKING CO &lt;SFTPr> 1ST QTR NET Periods ended January 31\n    Net 1,443,000 vs 3,539,000\n    Revs 765.2 mln vs 685.8 mln\n Reuter\n&#3;',0
+'CHEMLAWN SAYS IT REJECTS 27 DLRS PER SHARE TENDER OFFER FROM WASTE MANAGEMENT\n ',0
+'FRANCE, YUGOSLAVIA COMMISSION TO BOOST TRADE France and Yugoslavia agreed to set up a\njoint economic commission as part of efforts to promote\ncommercial links and industrial cooperation between the two\ncountries.\n    The French Finance Ministry said the commission, to be\ncomposed of businessmen, was agreed during talks between\nForeign Trade Minister Michel Noir and Yugoslavian minister\nwithout portfolio Egon Padovan.\n    A ministry statement said both sides had agreed on the nee [...]
+'CHEMLAWN &lt;CHEM> REJECTS WASTE\'S &lt;WMX> OFFER ChemLawn Corp said its board\nrejected Waste Management Inc\'s 27 dlr-per-share tender offer\nand urged its shareholders not to tender their shares.\n    ChemLawn said its board asked management and its financial\nadvisor, Smith Barney, Harris Upham And Co Inc, to seek other\npurchasers of the company to maximize shareholder value.\n    ChemLawn also said it adopted a shareholder rights plan, or\n\"poison pill,\" during a 120-intermin s [...]
+'(CAMBIOR INC) FIVE MTHS DEC 31 NET Shr 39 cts vs not given\n    Net 8,801,000 vs not given\n    Revs 33.2 mln vs not given\n Reuter\n&#3;',0
+'CONAGRA &lt;CAG> TO ACQUIRE MONFORT &lt;MMFT> ConAgra Inc agreed to acquire\nMonfort of Colorado Inc in a stock transaction, both companies\nsaid.\n    According to the letter of intent signed by the companies,\nConAgra will acquire all of Monfort\'s 4.3 mln outstanding\nshares for 10.75 mln of its own shares.\n    Based on ConAgra\'s closing price of 34 dlrs today, the\ntransaction is worth about 356.5 mln dlrs. The merger is\nexpected to be completed in June, they said.\n    The compa [...]
+'HOUSE 0/92 PLAN SEEN SCALED-BACK TO 1987 WHEAT Key members of the House Agriculture\ncommittee have agreed to scale-back the 0/92 provision of a\npending disaster aid bill to cover only 1987 crop wheat, but a\nbroader 0/92 proposal is likely to be resurrected later,\nCongressional sources said.\n    The sources said key lawmakers including Reps. Glenn\nEnglish (D-Okla.), and Dan Glickman (D-Kan.) agreed to support\nan amendment to be offered next week by Rep. Charles Stenholm\n(D-Tex.)  [...]
+'FAVORED TRADE STATUS FOR MOSCOW STILL OPPOSED The Reagan administration wants to\nencourage expanded trade with the Soviet Union but does not\nbelieve Moscow yet warrants most-favored-nation treatment,\nDeputy Secretary of State John Whitehead said.\n    \"It seems to me that more trade between us is better than\nless trade,\" he told a forum on U.S.-Soviet trade relations.\n    To that end, the administration in January allowed foreign\npolicy controls on the export of oil and gas equi [...]
+'MCDONNELL DOUGLAS &lt;MD> NOT APPROACHED BY PESCH McDonnell Douglas Corp, which has a five\nmln dlr investment in Republic Health Corp &lt;REPH>, said it has\nnot been approached to sell its shares in Republic Health.\n    Earlier, Alpha Health Systems Corp, a unit of Pesch and Co,\nsaid it submitted a merger proposal to the board of REPH\nAcquisition Co, the parent of Republic Health. LeRoy A. Pesch\nis the principal stockholder of Pesch.\n    \"We have not been approached by Mr. Pesch [...]
+'PARADYNE &lt;PDN> PLEADS GUILTY TO CRIMINAL CHARGE Paradyne Corp said it pleaded guilty\nto criminal charges of conspiracy to defraud the Social\nSecurity Administration and agreed to pay 1.2 mln dlrs in fines\nand costs to the U.S. Government.\n    The company also reached agreements in principle for an 8.1\nmln dlr settlement of class action law suits.\n    About 2.9 mln dlrs of the class action settlement will be\nprovided by Paradyne\'s insurance carrier. The settlement is\ncontinge [...]
+'SOUTH AFRICAN FIRM TO CONTINUE TESTS South Africa\'s state-owned energy\nfirm Soekor said it would continue tests after striking oil\nsome 120 kms (75 miles) south-southwest of Mossel Bay.\n    During production tests, about 5,000 barrels of oil and\nfive mln cubic feet of gas per day were produced, it said.\n    \"This oil discovery will be followed-up as soon as possible\nby further seismic surveys and drilling. Should further\ndrilling and tests in the area yield positive results oil [...]
+'GREECE REPEATS IT CAN DECIDE ON AEGEAN DRILLING Greece, replying to a warning from Turkey\nthat it will stop Athens from seeking oil in the Aegean Sea,\nrepeated today that it has an exclusive right to decide where\nor when to drill in the area.\n    A government spokesman said in a statement that if Ankara\nbelieved Greece was contravening international law, it could\nbring the issue before the courts.\n    The spokesman was responding to a statement by Turkish\nForeign Ministry spokes [...]
+'NCA CORP &lt;NCAC> 4TH QTR LOSS Shr loss 45 cts vs loss 1.34 dlrs\n    Net loss 1,240,000 vs loss 3,621,000\n    Revs 6,264,000 vs 4,626,000\n    Year\n    Shr loss 90 cts vs loss 2.01 dlrs\n    Net loss 2,487,000 vs loss 5,406,000\n    Revs 20.8 mln vs 21.7 mln\n Reuter\n&#3;',0
+'BIOMEDICAL DYNAMICS CORP &lt;BMDC> 4TH QTR NET Shr profit one ct vs loss two cts\n    Net profit 52,405 vs loss 67,967\n    Sales 289,572 vs 188,713\n    Year\n    Shr loss one cts vs loss five cts\n    Net loss 51,019 vs loss 201,680\n    Sales 1.1 mln vs 490,935\n Reuter\n&#3;',0
+'SANTA FE SOUTHERN PACIFIC APPEALS MERGER RULING Santa Fe Southern Pacific Corp will\nlater today formally ask the U.S. Interstate Commerce\nCommission (ICC) to reconsider its earlier rejection of the\nmerger of the holding company\'s railroad assets, a company\nspokesman said.\n    \"We expect to file papers late tonight\" asking the ICC to\nreopen the rail merger case, spokesman Rich Hall said in a\ntelephone interview from the company\'s Chicago headquarters.\n    The ICC had rejected [...]
+'BRAZIL DEBT SEEN PARTNER TO HARD SELL TACTICS Brazil\'s recent announcement of a\nsuspension in interest payments on 68 billion dlrs of foreign\ndebt gave the banking system the jitters and confirmed views\namong many international economists and commodities analysts\nthat Brazil will continue to flex its trading muscles in 1987.\n    The developing world\'s most indebted nation is also its\nmost prolific exporter of agricultural commodities such as\ncoffee and soybeans, and might maxim [...]
+'IEA SAYS OPEC FEBRUARY CRUDE OUTPUT 16.1 MLN BPD OPEC produced an average 16.1 mln barrels\nper day (bpd) of crude oil in February, down from 16.5 mln the\nprevious month and an overall 17.3 mln bpd in fourth quarter\n1986, the International Energy Agency said.\n    A few OPEC countries last month exceeded the production\nquotas set at their last conference in December, but liftings\nwere reduced from several countries, it said in its latest\nmonthly oil market report.\n    These cutbac [...]
+'U.S. SENATE GROUP URGES SUBSIDIES FOR USSR A majority of the Senate Agriculture\nCommittee urged President Reagan to reverse his opposition to\nexport subsidies to the Soviet Union as a way to get its\nnegotiators to purchase some 500 mln dlrs in American wheat.\n    The group, led by committee chairman Patrick Leahy, a\nVermont Democrat, urged Reagan to step up negotiations with the\nSoviet Union by providing export subsidies to help U.S.\nfarmers.\n Reuter\n&#3;',0
+'ENFIELD CORP PLANS NOTES, PREFERRED ISSUE &lt;Enfield Corp Ltd> said it planned to\nissue 60 mln dlrs principal amount of notes and 1.6 mln class E\npreferred shares at 25 dlrs a share.\n    The notes would bear 8 pct yearly interest, mature March\n31, 2002 and be convertible to common shares on either March\n31, 1997 or the business day before a fixed redemption date at\n13.50 dlrs a share, Enfield said.\n    It said each preferred share would be convertible to 1.85\ncommon shares on e [...]
+'WICHITA &lt;WRO> TO BUY FOUNTAIN OIL &lt;FGAS> Wichita Industries Inc said it\nagreed to buy Fountain Oil and Gas Inc.\n    Wichita said it it will acquire all of the outstanding\nshares of Fountain in an exchange for about 11 mln newly issued\nWichita common shares. Wichita presently has about 3.6 mln\nshares outstanding.\n    The transaction calls for the issuance of 1-1/2 shares of\nWichita common for each outstanding Fountain share.\n    Wichita also said it made a number of refinan [...]
+'ARGENTINE INFLATION ROSE 6.5 PCT IN FEBRUARY Argentina\'s cost of living index\ngrew 6.5 pct in January, down from last month\'s 7.6 pct, the\nNational Statistics Institute said.\n    It said consumer prices rose 98.9 pct over the last 12\nmonths, against 81.9 pct inflation in the calendar year 1986.\n Reuter\n&#3;',0
+'PEMEX LOWERS FEBRUARY FAR EAST CRUDE OIL PRICES The Mexican state oil company\nPetroleos Mexicanos (PEMEX) said its Far East customers would\nbe charged 17.25 dlrs per barrel for Isthmus crude in February\nand 14.45 dlrs for the heavier Maya.\n    Pemex said this was 32 cts less than January Isthmus and 15\ncts less than January Maya.\n    Far East customers, primarily Japan which buys an average\n180,000 barrels per day of which 150,000 is Isthmus, pay\nretroactively while European and [...]
+'N.Z. DECEMBER QUARTER RETAIL SALES FALL 13.2 PCT Retail sales in the quarter ended\nDecember 31 fell a seasonally adjusted 13.2 pct compared with a\n7.8 pct rise in the September quarter and a 1.3 pct fall a year\nago period, the Statistics Department said.\n    Actual retail sales in the December quarter totalled 6.17\nbillion N.Z. Dlrs compared with 6.70 billion in the previous\nquarter and 6.10 billion a year ago period.\n    The largest decreases in the December quarter were recorde [...]
+'REPH ACQUISITION TO NEGOTIATE PESCH MERGER BID REPH Acquisition Co said its board\nappointed a special committee to negotiate the terms of an\noffer made earlier today by &lt;Pesch and Co> to merge with its\nRepublic Health Corp &lt;REPH> unit.\n    Pesch, through its Alpha Health Systems Corp unit, offered\nto acquire the 36 pct of Republic Health stock that it does not\nalready own.\n    Terms of Pesch\'s offer have not been disclosed.\n   \n Reuter\n&#3;',0
+'HUNT GROUP HAS COMDATA STAKE, SEEKS INFLUENCE An investor group led by members of\nthe Hunt family of Dallas, Texas, told the Securities and\nExchange Commission it has acquired a 6.2 pct stake in Comdata\nNetwork Inc &lt;CDN> and may try to influence company policy.\n    The investor group, led by Rosewood Financial Inc, said it\nopposes a company recapitalization plan worked out between\nComdata and Mason Best Co, a Texas investment firm, which last\nreported holding about 9.5 pct of  [...]
+'ARGENTINA-BRAZIL TRADE JUMPED 90 PCT IN 1986 Trade between Argentina and Brazil\njumped 90 pct in 1986 versus 1985, Foreign Minister Dante\nCaputo said.\n    Speaking to reporters, Caputo said the near doubling in\ntrade showed the \"tangible and immediate results\" of a wide-\nranging economic integration accord signed by the presidents of\nboth countries last July.\n    He said trade last year totalled 1.3 billion dlrs versus\n700 mln dlrs in 1985.\n    The accord provided for capital [...]
+'SANTA FE SOUTHERN PACIFIC APPEALS MERGER RULING Santa Fe Southern Pacific Corp will\nlater today formally ask the U.S. Interstate Commerce\nCommission (ICC) to reconsider its earlier rejection of the\nmerger of the holding company\'s railroad assets, a company\nspokesman said.\n    \"We expect to file papers late tonight\" asking the ICC to\nreopen the rail merger case, spokesman Rich Hall said in a\ntelephone interview from the company\'s Chicago headquarters.\n    The ICC had rejected [...]
+'E.A. VINER HOLDINGS LTD &lt;EAVKF> 4TH QTR LOSS Shr loss 10 cts vs profit seven cts\n    Net loss 918,000 vs profit 585,000\n    Revs 5,475,000 vs 4,430,000\n    YEAR\n    Shr profit 32 cts vs loss 24 cts\n    Net profit 2,909,000 vs loss 1,501,000\n    Revs 23.7 mln vs 15.0 mln\n    Note: 1986 4th qtr net includes 1.5 mln U.S. dlr, or 17 ct\nshr, writedown of stake in Heck\'s Inc &lt;HEX> and 300,000 U.S.\ndlr, or three ct shr, writedown of arbitrage positions. 1986\nfl-yr net includes [...]
+'CARPET FIRM UNIT CUTS ALLIED PRODUCTS&lt;ADP> STAKE A group led by GFI Nevada Inc, a\nsubsidiary of General Felt Industries, a Saddlebrook, N.J.\ncarpet maker, said it cut its stake in Allied Products Corp to\n169,888 shares, or 3.4 pct, from 288,652 shares, or 5.8 pct.\n    In a filing with the Securities and Exchange Commission,\nGFI said it sold 114,000 Allied Products common shares on March\n3 at 42 dlrs each and donated another 4,746 shares to two\nuniversities.\n    It said its de [...]
+'TALKS FAIL TO END BRAZILIAN SEAMEN\'S STRIKE Pay talks aimed at ending a\nweek-old national seamen\'s strike collapsed today and the\nstrike will continue, a union official said.\n    The walkout by Brazil\'s 40,000 seamen has idled 160 ships\nin various ports, Jorge Luis Leao Franco, a senior official of\nthe National Merchant Marine Union, told Reuters.\n    The strikers, who are seeking a 275 pct pay increase, have\nrejected offers of a 100 pct raise from the state oil company\nPetro [...]
+'SHEARSON HAS 5.4 PCT OF CHICAGO MILWAUKEE &lt;CHG> Shearson Lehman Brothers Inc, the\nbrokerage subsidiary of American Express Co &lt;AXP>, said it has\nacquired 131,300 shares of Chicago Milwaukee Corp, or 5.4 pct\nof its total outstanding common stock.\n    In a filing with the Securities and Exchange Commission,\nShearson said it bought the stake for 18.8 mln dlrs for\ninvestment purposes and has no intention of seeking control of\nthe company.\n Reuter\n&#3;',0
+'VINER &lt;EAVKF> VIABLE AFTER HECK\'S &lt;HEX> MOVE E.A. Viner Holdings Ltd said the earlier\nreported Chapter 11 bankruptcy filing of Heck\'s Inc &lt;HEX>, in\nwhich Viner holds 408,000 shares, would not materially affect\nViner\'s capital position or its ability to carry on its\nprofitable brokerage business.\n    Viner said its brokerage subsidiary, Edward A. Viner and Co\nhad regulatory capital of 24.5 mln U.S. dlrs at year-end 1986.\n    The company said Heck\'s Chapter 11 filing c [...]
+'TWA &lt;TWA> SUES USAIR &lt;U> OVER POISON PILL Trans World Airlines Inc said it filed\nsuit in Delaware Chancery Court against USAir Group Inc and its\nboard of directors seeking to invalidate its \"poison pill\"\nanti-takeover plan.\n    TWA vice president and general counsel Mark Buckstein said\nTWA also sought a declaratory judgement from the court that its\n52 dlr per share takeover offer for USAir would in no way\ninterfer with USAir\'s possible buyout of Peidmont Aviation Inc\n&l [...]
+'&lt;FOUR SEASONS HOTELS INC> YEAR NET Oper shr 99 cts vs 54 cts\n    Oper net 9,515,000 vs 3,449,000\n    Revs 509.3 mln vs 440.5 mln\n    Note: 1985 net excludes extraordinary gain of 1.2 mln dlrs.\n Reuter\n&#3;',0
+'&lt;IVEY PROPERTIES INC> RAISES QUARTERLY DIVIDEND Ivey Properties Inc said it\nraised its quarterly dividend to 18 cts a share from 14 cts and\ndeclared both an extra dividend of 27 cts a share and a 50 pct\nstock dividend.\n    It said the dividends will be paid April one to\nshareholders of record March  16.\n    For the stock dividend, Ivey said it will pay for\nfractional shares at 25 dlrs per share.\n   \n Reuter\n&#3;',0
+'MEXICO SUSPENDS OVERSEAS COFFEE SALES Mexico has temporarily suspended\noverseas coffee sales due to falling prices triggered by the\nfailure of the International Coffee Organisation (ICO) meeting\nto agree a quota system at its latest meeting, the official\nNotimex news agency said.\n    \"We\'re just waiting a while for prices to improve,\" an\nunidentified Mexican trader told the agency.\n    Mexico has already sold 80 pct of its export coffee\nproduced in the year to last September, [...]
+'GROUP BOOSTS SCANDINAVIA FUND &lt;SCF> STAKE A shareholder group led by a Swedish\ninvestment firm and a Norwegian investor said it raised its\nstake in the Scandinavia Fund Inc to 2,165,300 shares, or 33.3\npct of the total, from 1,978,900 shares, or 30.5 pct.\n    In a filing with the Securities and Exchange Commission,\nthe group, which includes Ingemar Rydin Industritillbehor AB,\nthe firm, and investor Erik Martin Vik, said it bought the\nadditional shares between Feb 24 and March  [...]
+'OFFSHORE INVESTMENT FIRM UPS FRANCE FUND STAKE VBI Corp, an offshore-based\ninvestment firm, told the Securities and Exchange Commission it\nraised its stake in the France Fund Inc &lt;FRN> to 681,800\nshares, or 9.1 pct of the total, from 551,000, or 7.4 pct.\n    VBI, which is based in Turks and Caicos Islands, the\nBritish West Indies, said it bought the additional shares\nbetween Feb 24 and March 4.\n    It has said it bought its France Fund stake for investment\npurposes only.\n Re [...]
+'COSTA RICA OPTIMISTIC ABOUT REFORMING ICO Costa Rica\'s economy minister said he\nsees new hope for winning changes in the International Coffee\nOrganisation system of export quotas.\n    Minister Luis Diego Escalante, who serves as president of\nthe Costa Rican Coffee Institute, said he was hopeful because\nof the support offered Costa Rica and other smaller producing-\nnations by such major consumers as the United States, Britain\nand the Netherlands at last week\'s ICO meeting in lon [...]
+'U.S. MONEY GROWTH SLOWS SHARPLY, ECONOMISTS SAY U.S. money supply growth is slowing\ndown rapidly, and some economists believe that all three of the\nFederal Reserve\'s main monetary aggregates may even have\ncontracted in February.\n    A contraction is unlikely to be a major concern for the\nFed, especially as it would follow a long period of torrid\ngrowth, but it could give the central bank extra leeway in the\nweeks ahead if it decided that a relaxation of monetary policy\nwas just [...]
+'ECUADOR\'S CONSUMER PRICES RISE 2.5 PCT IN FEBRUARY Ecuador\'s consumer price index rose 2.5\npct in February to 562.4 (base 1978), the National Statistics\nand Census Institute said.\n    The rise compared to a 1.8 pct rise in January and a 2.5\npct rise in February 1986.\n    The Institute said accumulated overall inflation for the\nfirst two months of this year was 4.0 pct compared to 5.0 pct\nfor the same period last year.\n    Inflation for the 12 months ending February 1987 was 25 [...]
+'WEST GERMAN FISHMEAL IMPORTS HIGHEST IN 15 YEARS West German gross fishmeal imports rose\n60,260 tonnes, or 14.6 pct, last year to 471,891 tonnes, the\nhighest level since 1972, trade sources said.\n    Re-exports fell by 6.6 pct, resulting in a surge in net\nimports from 175,901 to 251,708 tonnes, an increase of 43 pct.\n    Total West German consumption was estimated at around a\nhigh 287,000 tonnes, largely reflecting attractive prices. The\nsources, however, could not give comparati [...]
+'TPA OF AMERICA INC &lt;TPS> 4TH QTR LOSS Shr loss five cts\n    Net loss 753,000\n    Revs 8,932,000\n    Avg shrs 16.0 mln\n    Year\n    Shr loss seven cts\n    Net loss 995,000\n    Revs 27.9 mln\n    Avg shrs 14.8 mln\n    NOTE: Company started operating in August 1985.\n    Results reflect change in fiscal year from November 30 end.\n Reuter\n&#3;',0
+'SILVER STATE MINING &lt;SSMC> SEES PRODUCTION RISE Silver State Mining Corp said it expects\ngold production this year to be more than double 1986\'s 17,458\nounces.\n    The company\'s 1985 production was 2,050 ounces.\n Reuter\n&#3;',0
+'MCGRATH RENTCORP &lt;MGRC> SEES NET RISING McGrath RentCorp said as a\nresult of its December acquisition of Space Co, it expects\nearnings per share in 1987 of 1.15 to 1.30 dlrs per share, up\nfrom 70 cts in 1986.\n    The company said pretax net should rise to nine to 10 mln\ndlrs from six mln dlrs in 1986 and rental operation revenues to\n19 to 22 mln dlrs from 12.5 mln dlrs.\n    It said cash flow per share this year should be 2.50 to\nthree dlrs.\n Reuter\n&#3;',0
+'SILVER STATE MINING CORP &lt;SSMC> 4TH QTR NET Shr one ct vs one ct\n    Net 528,790 vs 286,969\n    Revs 2,537,803 vs 773,729\n    Year\n    Shr seven cts vs one ct\n    Net 2,429,576 vs 404,394\n    Revs 6,726,327 vs 1,150,961\n Reuter\n&#3;',0
+'SIZZLER RESTAURANTS INTERNATIONAL INC &lt;SIZZ> NET Shr 15 cts vs 14 cts\n    Net 2,547,000 vs 2,242,000\n    Revs 56.7 mln vs 44.0 mln\n    Avg shrs 17.6 mln vs 15.6 mln\n    Nine mths\n    Shr 54 cts vs 54 cts\n    Net 9,249,000 vs 8,334,000\n    Revs 173.3 mln vs 134.3 mln\n    Avg shrs 17.1 mln vs 15.5 mln\n Reuter\n&#3;',0
+'MCANDREWS AND FORBES ARE OFFERING 18.50 DLRS PER SHARE FOR REVLON STOCK\n ',0
+'U.K. MONEY MARKET DEFICIT REVISED TO 550 MLN STG The Bank of England said it had revised\nits estimate of the shortage in the money market back to its\ninitial forecast of 550 mln stg.\n    At midsession the central bank changed the shortfall to 500\nmln and provided assistance worth 96 mln stg through bank bill\npurchases in bands one and two at established dealing rates.\n REUTER\n&#3;',0
+'DONEGAL GROUP INC &lt;DGIC> YEAR NET Shr six cts\n    Net 155,764\n    Revs 6,506,792\n    NOTE: Company formed in August 1986.\n Reuter\n&#3;',0
+'PETER MILLER APPAREL GROUP 3RD QTR JAN 31 LOSS Shr loss 28 cts vs profit seven cts\n    Net loss 931,000 vs profit 7,000\n    Revs 2.3 mln vs 2.0 mln\n    Nine mths\n    Shr loss 55 cts vs profit seven cts\n    Net loss 1,619,000 vs profit 185,000\n    Revs 7.7 mln vs 7.1 mln\n    NOTE: Shr figures adjusted for issue of 600,000 shares in\nOctober, 1986. Avg shrs not given.\n    Full name is &lt;Peter Miller Apparel Group Inc>.\n Reuter\n&#3;',0
+'KRELITZ INDUSTRIES INC &lt;KRLZ> 3RD QTR NET Period ended Jan 31\n    Shr seven cts vs 14 cts\n    Net 136,000 vs 274,000\n    Sales 48.4 mln vs 38.2 mln\n    Nine mths\n    \n    Shr 30 cts vs 17 cts\n    Net 573,000 vs 328,000\n    Sales 140.0 mln vs 102.4 mln\n    NOTE: Prior year period ended Sept 30\n    Comparable periods reflect change in fiscal yearend to\nApril from December\n Reuter\n&#3;',0
+'DONEGAL &lt;DGIC> PROJECTS FULL YEAR RESULTS Donegal Group Inc, which today\nreported earnings of 155,764 dlrs on revenues of 6,506,792 dlrs\nfor the period from August 26 startup through the end of 1986,\nsaid it expects \"much improved\" profits for the full year 1987\non revenues of about 32 mln dlrs.\n Reuter\n&#3;',0
+'MACANDREWS AND FORBES HOLDINGS BIDS FOR REVLON McAndrews and Forbes Holdings Inc said\nit will offer 18.50 dlrs per share for all of Revlon Group\nInc\'s &lt;REV> outstanding common stock.\n    McAndrews said terms of the acquisition have not been\ndetermined and are subject to the acquisition of financing.\n    Revlon closed yesterday on the New York Stock Exchange at\n14-3/4.\n    The company said it would bid for all stock it or its\naffiliates do not already own.\n    McAndrews and  [...]
+'HOG AND CATTLE SLAUGHTER GUESSTIMATES Chicago Mercantile Exchange floor\ntraders and commission house representatives are guesstimating\ntoday\'s hog slaughter at about 300,000 to 305,000 head versus\n292,000 week ago and 316,000 a year ago.\n    Saturday\'s hog slaughter is guesstimated at about 30,000 to\n55,000 head.\n    Cattle slaughter is guesstimated at about 128,000 to\n130,000 head versus 129,000 week ago and 119,000 a year ago.\n    Saturday\'s cattle slaughter is guesstimated [...]
+'BOREALIS IN GOLD EXPLORATION PACT WITH FARAWAY &lt;Borealis Exploration Ltd> said\nit entered into an agreement with &lt;Faraway Gold Mines Ltd> of\nVancouver, British Columbia, under which Faraway will acquire\nan interest in Borealis\'s Whale Cove Gold Property in the\nKeewatin district of the Northwest Territories.\n    Faraway will spend 1.5 mln dlrs on exploration over three\nyears and will hold 50 pct of the property until all expenses\nare paid out, when the interest will drop to [...]
+'U.K. MONEY MARKET GETS 350 MLN STG AFTERNOON HELP The Bank of England said it provided\nassistance worth 350 mln stg during the afternoon session which\ntakes total help so far today to 446 mln stg against a shortage\nestimated at around 550 mln stg.\n    The central bank purchased outright bank bills comprising\n120 mln stg in band one at 10-7/8 pct and 227 mln stg in band\ntwo at 10-13/16 pct. It also bought treasury bills worth one\nmln stg in band one and two mln stg in band two at  [...]
+'IMRE &lt;IMRE> SELLS STOCK TO EUROPEAN INSTITUTIONS IMRE Corp said it has received\ncommitments for a group of European institutions to buy about\n400,000 IMRE shares for 2,500,000 dlrs, with closing expected\non March 16.\n                                                   \n Reuter\n&#3;',0
+'INSTRUMENTARIUM ACQUIRES NOKIA SUBSIDIARY Finland\'s medical group Instrumentarium\nOy &lt;INMR.HE> said it has acquired electronics components\nimporters and marketers &lt;Ferrado Oy> and &lt;Insele Oy>,\nsubsidiaries of Finland\'s electronics group Nokia Oy &lt;NOKS.HE>.\n    It said in a statement Ferrado and Insele will be merged\ninto Instrumentarium\'s Professional Electronics and Information\nSystems Division.\n    It did not disclose a price for the acquisitions but said\nit had [...]
+'FUQUA INDUSTRIES INC &lt;FQA> SETS QUARTERLY Qtly div six cts vs six cts prior\n    Pay April One\n    Record March 20\n Reuter\n&#3;',0
+'&lt;M-CORP INC> YEAR DEC 28 NET Shr 73 cts vs 55 cts\n    Net 1,691,878 vs 1,117,747\n    Revs 7.1 mln vs 4.9 mln\n    Avg shrs 2.3 mln vs 2.0 mln\n    NOTE: Share results reflect two-for-one stock split in\nJune, 1986.\n Reuter\n&#3;',0
+'DOME PETROLEUM REAFFIRMS DOME MINES STAKE FOR SALE AT RIGHT PRICE, SPOKESMAN SAYS\n ',0
+'COMMONWEALTH MORTGAGE &lt;CCMC> BUYS ARMONK FIRM Commonwealth Mortgage Co said\nit purchased Westfiar Funding Corp of Armonk, N.Y., for an\nundisclosed amount of cash.\n    Commonwealth said Westfair originated 60 mln dlrs of\nresidential mortgage loans during 1986.\n Reuter\n&#3;',0
+'&lt;M-CORP INC> RAISES DIVIDEND Semi-annual div 7-1/2 cts vs five cts\n    Pay April nine\n    Record March 26\n Reuter\n&#3;',0
+'PERMIAN &lt;PBT> RAISES CRUDE PRICES Permian Corp said that effective march 5\nit raised its posted prices for crude oil 50 cts a barrel.\n    The raise brought its posted prices for West texas\nIntermediate up by 50 cts to 17.00 dlrs a barrel.\n    West Texas Sour was also raised by 50 cts to 17.00 dlrs a\nbarrel.\n    A Permian spokesman said that the South Louisiana sweet\nposted prices was also raised 50 cts a barrel to 17.35 dlrs.\n Reuter\n&#3;',0
+'AMERICAN STORES CO 4TH QTR SHR 1.57 DLRS VS 1.60 DLRS\n ',0
+'CENTRAL SPRINKLER CORP &lt;CNSP> 1ST QTR JAN 31 NET Shr 19 cts vs 20 cts\n    Shr diluted 18 cts vs 18 cts\n    Net 578,000 vs 554,000\n    Sales 10.7 mln vs 10.4 mln\n    Avg shrs 3,006,s302 vs 2,795,820\n    Avg shrs diluted 4,271,488 vs 4,081,534\n Reuter\n&#3;',0
+'&lt;FAR WEST INDUSTRIES INC> RAISES DIVIDEND Annual div four cts vs 1.76 cts\n    Pay March 20\n    Record March 15\n Reuter\n&#3;',0
+'&lt;FAR WEST INDUSTRIES INC> YEAR NET Shr 23 cts vs 17 cts\n    Net 761,000 vs 490,000\n    Revs 7.3 mln vs 4.5 mln\n\n Reuter\n&#3;',0
+'U.K. OFFICIALS STUDY SALMONELLA/CALF FEED LINK U.K. Officials are studying the possible\nlink between the use of antibiotics in calf feeds and the\nspread of drug-resistant strains of salmonella in humans, a\nMinistry of Agriculture official said.\n    A study published in the New England Journal of Medicine\nyesterday stated that the spread of an unusual strain of\nsalmonella that is resistant to the drug chloramphenicol had\nbeen shown to be linked to farms that used the drug to promo [...]
+'CANADA RULES U.S. CORN INJURING CANADIAN FARMERS, UPHOLDS DUTY \n ',1
+'DOME&lt;DMP> REPEATS DOME MINES&lt;DM> STAKE FOR SALE Dome Petroleum Ltd\'s 23.2 pct stake of\ngold producer Dome Mines Ltd continues to be for sale \"at the\nright price,\" spokesman David Annesley said in response to an\ninquiry.\n    Reaffirming remarks made last year by chairman Howard\nMacdonald, Annesley said the company is considering selling its\nstake in Dome Mines.\n    Concerning Dome Petroleum\'s 42 pct stake in &lt;Encor Energy\nCorp Ltd>, Annesley said \"Encor is a strateg [...]
+'CANADA RULES U.S. CORN INJURING CANADIAN  FARMERS, UPHOLDS DUTY\n ',1
+'NEW DUTCH SPECIAL ADVANCES ANNOUNCED AT 5.3 PCT The Dutch central bank announced new\neleven-day special advances at an unchanged 5.3 pct to aid\nmoney market liquidity, covering the period March 9 to 20.\n    The amount will be set at tender on Monday March 9 between\n0800 and 0830 GMT. The new facility will replace the current\n4.8 billion guilders of seven-day advances expiring Monday.\n    Money dealers estimated today\'s money market shortage at 11\nto 11.25 billion guilders, barel [...]
+'SELECTERM INC &lt;SLTM> 4TH QTR LOSS Shr loss not given vs profit 16 cts\n    Net loss 309,000 vs profit 426,000\n    Revs 6,358,000 vs 6,747,000\n    Year\n    Shr profit 27 cts vs profit 76 cts\n    Net profit 713,000 vs profit 2,021,000\n    Revs 24.9 mln vs 27.1 mln\n    NOTE: Pretax net profits 113,000 dlrs vs 824,000 dlrs in\nquarter and 1,863,000 dlrs vs 3,606,000 dlrs in year.\n Reuter\n&#3;',0
+'STONE CONTAINER &lt;STO> COMPLETES WAITING PERIOD Stone Container Corp said it and\nSouthwest Forest Industries Inc &lt;SWF> completed all waiting\nperiod requirements under the Hart-Scott-Rodino Anti-Trust\nImprovements Act of 1976.\n    Stone said it will proceed with its previously proposed\nacquisition of Southwest.\n Reuter\n&#3;',0
+'ICO QUOTA TALKS FAILURE PARALYSE HAMBURG MARKET The failure of International Coffee\nOrganization talks on the reintroduction of quotas has\nparalysed business on the Hamburg green coffee market in the\npast week, trade sources said.\n    There was only sporadic activity for spot material, which\nwas mainly requirement buying, they said, adding that\npre-registered coffees were no longer available.\n    They said they expected Brazil and Colombia to open export\nregistrations for May sh [...]
+'RESIDENTIAL MORTGAGE INVESTMENTS INC &lt;RMI>PAYOUT Qtly div 24 cts vs 24 cts prior\n    Pay April 10\n    Record March 31\n Reuter\n&#3;',0
+'SOUTHWEST &lt;SWF>, STONE &lt;STO> COMPLY FOR MERGER Southwest Forest Industries said\nit and Stone Container Corp have complied with all federal\nwaiting period requirements for Stone\'s proposed 32.25 dlr per\nshare cash acquisition of Southwest.\n    Southwest currently has 12.3 mln shares outstanding. The\ncompanies entered into a merger agreement on January 27, and\nmade their initial findings with the Department of Justice and\nthe Federal Trade Commission on February three.\n     [...]
+'OKC LIMITED PARTNERSHIP &lt;OKC> SETS LOWER PAYOUT OKC Limited Partnership said it will make\na five ct per share distribution to unitholders, down from 15\ncts in December and payable March 30 to holders of record March\n18.\n    The partnership said the payout is the largest quarterly\ncash distribution allowable under terms of its letter of credit.\n Reuter\n&#3;',0
+'BIOTECH RESEARCH LABORATORIES INC &lt;BTRL> 4TH QTR Shr profit one ct vs loss seven cts\n    Net profit 63,761 vs loss 43,006\n    Revs 1,961,219 vs 1,413,859\n    Year\n    Shr loss seven cts vs loss 20 cts\n    Net loss 380,273 vs loss 1,108,151\n    Revs 6,245,012 vs 5,368,522\n    Shr out 5,950,000 vs 5,462,547\n Reuter\n&#3;',0
+'CANADA UPHOLDS COUNTERVAIL DUTY ON U.S. CORN The Canadian Import Tribunal ruled today\nsubsidized U.S. corn imports were injurious to Canadian growers\nand upheld a countervailing duty of 84.9 U.S. cts a bushel set\nearlier this year.\n    The ruling is the result of trade action launched in 1985\nby the Ontario Corn Producers Association that contended U.S.\nsubsidies were driving American corn prices below Canadian\nproduction costs.\n    A spokesman for the Department of Revenue said [...]
+'FEBRUARY U.S. JOBS GAINS SHOW STRONGER ECONOMY Momentum in th U.S. economy may be\npicking up given solid across-the board increases in the\nFebruary U.S. employment report, economists said.\n    U.S. non-farm payroll employment rose 337,000 in February,\ntwice what the financial markets expected. This follows a\n319,000 gain in January, revised down from a previously\nreported 448,000 increase.\n    \"Even if you look at January and February together, this is\nstill a much stronger rep [...]
+'AMERICAN STORES CO &lt;ASC> 4TH QTR NET Shr 1.57 dlrs vs 1.60 dlrs\n    Net 55.7 mln vs 56.5 mln\n    Revs 3.7 billion vs 3.6 billion\n    Year\n    Shr 3.79 dlrs vs 4.11 dlrs\n    Net 144.5 vs 154.5 mln\n    Revs 14.0 billion vs 13.9 billion\n    NOTE: 1986 4th qtr and yr per shr amts includes reduction\nof 15 cts per shr for establishment of reorganization reserves.\nTax increase reduced 1986 yr per shr by 26 cts.\n Reuter\n&#3;',0
+'BAKER SAYS G-6 PACT JUST A START Treasury Secretary James Baker said\nthe agreement among industrial nations in Paris last month is\nonly a start in Washington\'s drive to intensify economic\ncooperation among leading countries.\n    In a speech to the National Newspaper Association, Baker\nsaid \"the six steps beginning with the Plaza Agreement and\nculminating in the Paris Accord, are only a start.\"\n    He added \"we see our role as a steward of a process in which\nwe sit down with  [...]
+'TREASURY\'S BAKER FORECASTS REDUCTION IN JAPANESE TRADE SURPLUS THIS YEAR\n ',0
+'TREASURY\'S BAKER SAYS THERE HAS BEEN NO CHANGE IN U.S. POLICY ON DOLLAR\n ',0
+'FED NOT EXPECTED TO ACT IN MONEY MARKETS The Federal Reserve is unlikely to\noperate in the U.S. government securities market during its\nusual intervention period this morning, economists said.\n    Fed funds opened comfortably at 5-15/16 pct and remained at\nthat level. Yesterday Fed funds averaged 5.99 pct.\n Reuter\n&#3;',0
+'BOSTON BANCORP &lt;SBOS> SETS TWO FOR ONE SPLIT Boston Bancorp said its board declared a\ntwo-for-one stock split, payable March 31, record March 17.\n Reuter\n&#3;',0
+'BAKER DENIES CHANGE IN U.S. POLICY ON DOLLAR Treasury Secretary James Baker said\nthere has been no change in U.S. policy on the value of the\ndollar.\n    Baker, when asked if the policy was changed in view of\ncomments yesterday by a senior Commerce Department official who\nsaid he thought the Japanese yen was undervalued against the\ndollar by 10 to 15 pct, replied, \"No.\"\n    Yesterday Robert Ortner, Undersecretary of Commerce for\nEconomic Affairs, said he thought the yen was und [...]
+' &#2;\nCORRECTION - MACANDREWS AND FORBES HOLDINGS\n    In New York story headlined \"MacAndrews and Forbes Holdings\nbids for Revlon,\" pls read in headline and first paragraph,\n\"MacAndrews and Forbes considers bid for Revlon,\" and in first\nparagraph, \"MacAndrews and Forbes holdings Inc said it is\nconsidering making a proposal.\" (Corrects from \"bids for\nRevlon,\" in headline and \"will offer\"in first paragraph)\n&#3;\n\n',0
+'SOME SHIPPING RESTRICTIONS REMAIN ON RHINE Limited shipping restrictions due to high\nwater remain in force on parts of the West German stretch of\nthe Rhine river between the Dutch border and the city of Mainz\nbut most are expected to be lifted this weekend.\n    water authority officials said The restrictions, caused by\nhigh water levels, include speed limits and directives to keep\nto the middle of the river to prevent damage to the river\nbanks. The high water was expected to rece [...]
+'HAWKER SIDDELEY OFFER FOR CLAROSTAT &lt;CLR> ENDS &lt;Hawker Siddeley Group PLC>\'s offer of\n74 dlrs a share for all of Clarostat Mfg Co Inc\'s stock was\nscheduled to expire at 2400 EST yesterday.\n    Company officials were unavailable for comment as to why\nthe American Stock Exchange had stopped trading in Clarostat\'s\nstock for a pending news announcement.\n Reuter\n&#3;',0
+'TAFT &lt;TFB> GIVEN DEADLINE ON BUYOUT PROPOSAL Narragansett Capital Inc &lt;NARR>\nsaid it and Dudley S. Taft have requested a response from Taft\nBroadcasting Co by March 12.\n    Earlier today, Taft Broadcasting said Taft, the company\'s\nvice chairman, and Narragansett had offered 145 dlrs for each\nof Taft\'s 9.2 mln outstanding shares.\n    The company said the offer is conditioned on approval of\nits board, but a spokesman declined comment on whether or not\nthe board has schedul [...]
+'&lt;PETER MILLER APPAREL GROUP INC> 3RD QTR LOSS period ended January 31\n    Shr loss 28 cts vs profit seven cts\n    Net loss 931,000 vs profit 7,000\n    Sales 2,303,000 vs 2,006,000\n    Nine mths\n    Shr loss 55 cts vs profit seven cts\n    Net loss 1,619,000 vs profit 185,000\n    Sales 7,684,000 vs 7,059,000\n    Note: per share reflects issue of 600,000 shares in October\n1986.\n Reuter\n&#3;',0
+'SANTA FE SOUTHERN &lt;SFX> APPEALS MERGER RULING Santa Fe Southern Pacific Corp said it\nfiled a petition asking the U.S. Interstate Commerce Commission\nto reconsider its earlier rejection of the merger of the\nholding company\'s railroad assets.\n    The ICC had rejected in July the merger of the Santa Fe and\nSouthern Pacific Railroads on the grounds that it would reduce\ncompetition.\n    Santa Fe in its petition outlines an array of\npro-competitive agreements with other railroads  [...]
+'BAKER SEES LOWER JAPANESE TRADE SURPLUS U.S. Treasury Secretary James Baker\nsaid the Japanese trade surplus would begin to decline this\nyear.\n    He told the National Newspaper Association \"You\'re going to\nsee a reduction in the Japanese trade surplus -- some of it\nthis year\".\n    But he said the reduction would be due principally to the\nexchange rate shifts since the Plaza Agreement, and these\nshifts would take a long time to work their way through the\nsystem.\n Reuter\n&#3;',0
+'CINEPLEX ODEON CORP YEAR OPER SHR BASIC 1.04 DLRS VS 77 CTS\n ',0
+'MONFORT &lt;MNFT> SOARS ON ACQUISITION AGREEMENT Monfort of Colorado Inc soared 21-1/2\nto 75 in over-the-counter trading, responding to an\nannouncement late yesterday that the firm will be acquired by\nConagra Inc &lt;CAG>.\n    According to a letter of intent signed by both companies,\nConagra will offer 2.5 of its own shares for each of Monfort\'s\n4.3 mln outstanding shares.\n    Conagra fell one to 33 on the New York Stock Exchange.\nMonfort is an integrated beef and lamb producer [...]
+'NORDBANKEN TO AUCTION ITS FERMENTA SHARES Sweden\'s &lt;Nordbanken> banking group\nsaid it would sell the 4.2 mln B free shares deposited as loan\ncollateral by Fermenta AB\'s &lt;FRMS.ST> founder and former chief\nexecutive Refaat el-Sayed and it planned to buy them up itself.\n    The bank said the sale - by public auction on March 16 --\nwas because of a debtor\'s inability to repay an overdue loan.\n    The B free shares closed at 16.50 crowns on the bourse\'s\nunofficial list -- do [...]
+'UNITED INDUSTRIAL CORP &lt;UIC> 4TH QTR LOSS Shr loss 1.27 dlrs vs profit 43 cts\n    Net loss 17.0 mln vs profit 5,667,000\n    Sales 67.8 mln vs 70.1 mln\n    Year\n    Shr loss 69 cts vs profit 2.18 dlrs\n    Net loss 9,174,000 vs profit 29.1 mln\n    Sales 272.5 mln vs 269.4 mln\n    Avg shrs 13.3 mln vs 13.4 mln\n    NOTE: 1986 net includes tax credits of 14.5 mln dlrs in\nquarter and 8,408,000 dlrs in year.\n    1985 year net includes 616,000 dlr loss from discontinued\noperations [...]
+'&lt;CINEPLEX ODEON CORP> YEAR NET Oper shr basic 1.04 dlrs vs 77 cts\n    Oper shr diluted 89 cts vs 60 cts\n    Oper net 31.6 mln vs 12.5 mln\n    Revs 500.6 mln vs 170.9 mln\n    Avg shrs 29.1 mln vs 14.3 mln\n    Note: 1985 net excludes extraordinary gain of 1,756,000\ndlrs or 12 cts shr basic and eight cts shr diluted.\n    1986 net involves 53-week reporting period to reflect\nchange in yr-end to coincide with calendar yr.\n Reuter\n&#3;',0
+'MINE SAFETY APPLIANCES &lt;MNES> TO SELL UNIT Mine Safety Appliances Co said it\nagreed to sell its filter products division to Donaldson Co Inc\n&lt;DCI> for undisclosed terms.\n    It said the filter products unit will be relocated from its\nplant in Pennsylvania to a Donaldson facility in Illinois. It\nsaid it expects a number of the unit\'s 100 employees will be\noffered positions with Donaldson.\n Reuter\n&#3;',0
+'PROSPECT GROUP INC &lt;PROSZ> 4TH QTR LOSS Shr loss 10 cts vs loss 50 cts\n    Net loss 1,830,000 vs loss 3,584,000\n    Revs 40.7 mln vs 26.8 mln\n    Avg shrs 19.2 mln vs 7,115,847\n    12 mths \n    Shr profit 10 cts vs loss 91 cts\n    Net profit 1,422,000 vs loss 6,195,000\n    Revs 185.7 mln vs 126.9 mln\n    Avg shrs 14.8 mln vs 6,811,280\n    NOTES: In May 1986 Prospect raised 101,810,0000 dlrs from\nan initial public offering of common stock.\n    The company purchased in March [...]
+'FRANCE FUND INC &lt;FRN> SETS INITIAL DIVIDEND France Fund Inc said its board declared\nan initial dividend of 1.12 dlrs per share, payable April six,\nto holders of record March 20.\n    The fund said the dividend represents two cts per share for\nnet investment income realized during 1986 and 1.10 dlrs from\nnet taxable gains realized during the year.\n Reuter\n&#3;',0
+'HEINEKEN N.V. &lt;HEIN.AS> 1986 YEAR Pre-tax profit 513.2 mln guilders vs 545.5 mln\n    Net profit 285.3 mln guilders vs 265.4 mln\n    Consolidated net turnover 6.68 billion guilders vs 6.40\nbillion\n    Net profit per 25.00 guilder nominal share 11.11 guilders\nvs 10.33, taking into account one-for-three scrip issue last\nyear\n    Final dividend two guilders vs same, making total 3.50\nguilders vs same\n REUTER\n&#3;',0
+'NATIONAL SECURITY INSURANCE CO &lt;NSIC> 4TH QTR Oper shr loss 15 cts vs profit 57 cts\n    Oper net loss 151,000 vs profit 570,000\n    Year\n    Oper shr profit 2.08 dlrs vs loss 12 cts\n    Oper net profit 2,122,000 vs loss 127,000\n    NOTE: Net excludes realized capital loss 19,000 dlrs vs\ngain 896,000 dlrs in quarter and gains 1,646,000 dlrs vs\n1,331,000 dlrs in year.\n    1986 net both periods excludes tax credit 1,288,000 dlrs.\n Reuter\n&#3;',0
+'CYPRUS MINERALS &lt;CYPM> NAMED IN SUITS Cyprus Minerals Co said along with about\n40 other companies, it has been named a defendant in 23 product\nliability lawsuits filed in California by individual\ntireworkers aleging injury as a result of exposure to talc and\nother products.\n    It said other suits are expected to be brought.\n    Cyprus, which produces talc, said it has significant\nfactual and legal defenses and substantial insurance coverage\nand does not expect the suits to h [...]
+'DONALDSON &lt;DCI> TO BUY MINE SAFETY &lt;MNES> UNIT Donaldson Co Inc said it reached an\nagreement to buy the assets of the Filter Products Division of\nMine safety Appliances Co for undisclosed terms.\n    It said Filter Products will operate as part of Donaldson\'s\nIndustrial Group and its manufacturing operations will be\nrelocated to Dixon, Ill., from Evans City, Pa.\n    Donaldson said the acquisition complements its\nmicrofiltration business and internal research and development [...]
+'ARUNDEL CORP &lt;ARL> 4TH QTR NET Shr 1.73 dlrs vs 1.66 dlrs\n    Net 3,637,000 vs 3,789,000\n    Revs 27.6 mln vs 26.6 mln\n    Year\n    Shr 3.47 dlrs vs 2.34 dlrs\n    Net 7,815,000 vs 5,340,000\n    Revs 94.3 mln vs 81.9 mln\n Reuter\n&#3;',0
+'GULF STATES UTILITIES &lt;GSU> GETS QUALIFIED AUDIT Gulf States Utilities Co said\nauditor Coopers and Lybrand has issued a qualified opinion on\n1986 financial statements.\n    Gulf States said the audit opinion satated that without\nsufficient rate increases or funds from other sources, Gulf\nstates may be unable to maintain its financial viability,\nwhich is necessary to permit the realization of its assets and\nthe liquidation of its liabilities in the ordinary course of\nbusiness.\ [...]
+'FED SETS ONE BILLION DLR CUSTOMER REPURCHASE, FED SAYS\n ',0
+'MIDMISSISSIPPI RIVER OPENS TODAY FOR SEASON The Mississippi River is now open for\nbarge traffic up to the Twin Cities in Minnesota after repairs\nwere completed and the first barges moved upstream through Lock\nand Dam 20 near Quincy, Ill at 0600 CST today, an Army Corps of\nEngineers spokesman said.\n    About 14 to 15 inches of ice were reported between locks\nthree and four on the upper Mississippi River, but other\nsections were generally free of ice, the spokesman said.\n    Midwe [...]
+'FED SETS ONE BILLION DLR CUSTOMER REPO The Federal Reserve entered the\ngovernment securities market to arrange one billion dlrs of\ncustomer repurchase agreements, a spokesman for the New York\nFed said.\n    Fed funds were trading at 5-15/16 pct at the time of the\nindirect injection of temporary reserves, dealers said.\n Reuter\n&#3;',0
+'GERMAN CASH IN CIRCULATION UP AT FEBRUARY\'S CLOSE Cash in circulation in West Germany\nrose by 2.8 billion marks in the last week of February to 121.5\nbillion, a gain of 8.3 pct over the same month last year, the\nBundesbank said.\n    Cash in circulation is one of two components of the West\nGerman money supply which the German central bank is targeting\nto grow between three and six pct this year.\n    Gross currency reserves in the week rose by 200 mln marks\nto 109.5 billion. Fore [...]
+'SUN ELECTRIC CORP &lt;SE> 1ST QTR JAN 31 NET Shr profit 15 cts vs loss six cts\n    Net profit 1,051,000 vs loss 381,000\n    Revs 50.8 mln vs 41.8 mln\n    Avg shrs 7,033,00 vs 6,557,000\n    NOTE: 1987 net includes tax credits equal to six cts vs one\ncent in 1986.\n Reuter\n&#3;',0
+'ECUADOR SAYS SUSPENDS OIL EXPORTS DUE EARTHQUAKE Ecuador today suspended its crude oil\nexports indefinitely due to an earthquake last night that\ndamaged pumping and crude transport installations, an Energy\nand Mines MInistry statement said.\n    It said the state oil firm Corporacion Estatal Petrolera\nEcuatoriana (CEPE) notified foreign customers that it was\ndeclaring force majeure on its crude exports due to the tremor.\n    Ecuador\"s OPEC oil output quota is 210,000 barrels per  [...]
+'LEASEWAY TRANSPORTATION CORP &lt;LTC> 4TH QTR LOSS Oper shr loss 39 cts vs profit 62 cts\n    Oper net loss 4,628,000 vs profit 7,256,000\n    Revs 338.1 mln vs 327.9 mln\n    Year\n    Oper shr profit 1.12 dlrs vs profit 1.88 dlrs\n    Oper net profit 13.2 mln vs 22.2 mln\n    Revs 1.32 billion vs 1.29 billion\n    NOTE: Net excludes gains from discontinued leasing\noperations of 37.6 mln dlrs vs 40.3 mln dlrs in year and 32.6\nmln dlrs vs 34.3 mln dlrs in quarter.  Results restated fo [...]
+'NCH CORP &lt;NCH> 3RD QTR JAN 31 NET Shr 51 cts vs 44 cts\n    Net 4,710,000 vs 4,086,000\n    Sales 109.2 mln vs 98.2 mln\n    Nine mths\n    Shr 1.62 dlrs vs 1.39 dlrs\n    Net 15.0 mln vs 13.6 mln\n    Sales 314.6 mln vs 279.7 mln\n Reuter\n&#3;',0
+'NATIONWIDE HAD 1986 PROPERTY-CASUALTY LOSS &lt;Nationwide Mutual Insurance Co>\nsaid its property-casualty companies had a net loss of 56 mln\ndlrs last year while its life insurance operations earned 66.8\nmln dlrs.\n    Nationwide said its property-casualty group, the\nfourth-largest U.S. property-casualty insurer had a 106 mln dlr\nloss in 1986. Nationwide Life Insurance Co earned 62.8 mln dlrs\nin 1985, with last year\'s profit including record capital gains\nof 14.4 mln dlrs, up fr [...]
+'SUN &lt;SUN> RAISES HEATING OIL BARGE PRICE Sun Co\'s Sun Refining and Marketing\nsubsidiary said it increased the price it charges contract\nbarge customers for heating oil in New York harbor 0.50 cent a\ngallon, effective today.\n    They said the 0.50 cent increase brings Sun\'s contract\nbarge price to 49 cts. The recent price hike represents the\nfifth this week, totalling 4.75 cts. The increases are\nfollowing sharp spot and futures price rises, the company said.\n Reuter\n&#3;',0
+'FRENCH PRIMARY BOND MARKET SHOWS NEW SPARKLE The French primary bond market is showing\nsigns of renewed effervescence after several weeks of lethargy\nand the trend is expected to continue if hopes of imminent\ninterest rate cuts are fulfilled, market operators said.\n    The Bank of France is generally expected to give a signal\nto the market, possibly at the beginning of next week, by\nannouncing a quarter point cut in its intervention rate, which\nhas stood at eight pct since Januar [...]
+'FIRST WOMEN\'S BANK INVESTOR GROUP OFFER EXPIRES The investor group owning about 42 pct\nof the outstanding capital stock of &lt;The First Women\'s Bank>\nsaid a cash tender offer for the bank\'s remaining outstanding\nshares at 11 dlrs per share expired on March three.\n    The investors said about 132,000 shares, or about 20 pct of\nthe outstanding, had been tendered.\n Reuter\n&#3;',0
+'COMPUTER MEMORIES INC &lt;CMIN> 3RD QTR LOSS Period ended December 31.\n    Shr loss nine cts vs loss 1.92 dlrs\n    Net loss 950,000 vs loss 21,334,000\n    Revs 580,000 vs 22.2 mln\n    Nine Mths\n    Shr loss six cts vs loss 1.23 dlrs\n    Net loss 694,000 vs loss 13,710,000\n    Revs 5,129,000 vs 111.9 mln\n    Note: Current qtr includes tax loss of 118,000 vs loss of\n476,000 dlrs.\n Reuter\n&#3;',0
+'TRENWICK GROUP INC &lt;TREN> 4TH QTR NET Oper shr profit 18 cts vs loss four cts\n    Oper net profit 1,847,000 vs loss 282,000\n    Revs 25.9 mln dlrs vs 8,626,000 drs\n    12 mths\n    Oper shr profit 39 cts vs loss 24 cts\n    Oper net profit 3,262,000 vs loss 1,555,000\n    revs 67.5 mln vs 27.9 mln dlrs.\n    NOTE: 1986 qtr and year excludes investment gains of\n1,541,000 and 1,865,000, respectively, and 1985 qtr and year\nincludes investment gains of 301,000 dlrs and 1,424,000.\n  [...]
+'IMF URGES BELGIUM TO MAKE FURTHER SPENDING CUTS The Belgian government, which\nintroduced large-scale public spending reductions last year,\nhas been told by an International Monetary Fund team there is\nscope for further cuts in 1988.\n    The suggestion is contained in the preliminary conclusions\nof the annual IMF consultations with Belgium on its economic\npolicy, a copy of which was distributed to journalists at the\nweekly press conference following meetings of the cabinet.\n    T [...]
+'BUSH &lt;BSH> REVISES 4TH QTR, YEAR RESULTS UP Bush Industries Inc said that\nafter an audit it has revised upwards its 1986 fourth quarter\nand year end results. On February 12 it reported unaudited\nresults.\n    Under the audited amounts, 1986 fourth quarter income was\n1,098,978 mln dlrs, or 55 cts a share. The unaudited income for\nthe period was 1,014,000, or 51 cts per share.\n    For the year, the audited amounts showed earnings of\n2,505,978, or 1.25 dlrs per share. The prior r [...]
+'FURNITURE (UFURF) UPS BENCH CRAFT (SOFA) STAKE Universal Furniture Ltd said in a\nfiling with the Securities and Exchange Commission that it had\nincreased its stake in Bench Craft Inc common stock to\n2,548,975 shares or 45.3 pct of the total outstanding.\n    Universal said its Universal Furniture Industries N.V. unit\nbought 235,750 Bench Craft shares March 4 in the\nover-the-counter market.\n Reuter\n&#3;',0
+'CLEVITE INDUSTRIES INC &lt;CLEV> 4TH QTR OPER LOSS Oper net loss 411,000 vs profit 875,000\n    Sales 69.7 mln vs 70.5 mln\n    Year\n    Oper net profit 6,258,000 vs profit 4,785,000\n    Sales 299.5 mln vs 297.2 mln\n    Note: Company made initial public offering in June, 1986.\nAssuming the offering had occurred on Jan. 1, 1986, operating\nnet income per share would have been 85 cts a share for 1986.\n    1986 oper net excludes one-time charge of 16.8 mln dlrs, or\n2.46 dlrs a share, [...]
+'CMS ADVERTISING SETS 3-FOR-2 STOCK SPLIT &lt;CMS Advertising Inc> said its\nboard has approved a three-for-two stock split in the form of a\ndividend payable March 30 to holders of record March 16.\n    The company said a similar split was paid December eight,\nleaving it with 2,344,200 shares outstanding.\n    CMS Advertising said the next split will result in a\nproportionate reduction in the exercise price of its stock\npurchase warrants to 1.67 dlrs a share from 2.50 dlrs.\n Reuter\ [...]
+'CIE FINANCIERE DE PARIBAS &lt;PARI.PA> 1986 YEAR Parent company net profit 385 mln francs vs 226.9 mln\n    Dividend five francs vs no comparison\n    Note - The financial and banking group was privatised by\nthe government in January this year.\n Reuter\n&#3;',0
+' &#2;\nCORRECTION - HEINEKEN 1986 YEAR\n    In item headlined \"HEINEKEN N.V. &lt;HEIN.AS> 1986 YEAR\" please\nread in first line pre-tax profit 513.2 mln guilders vs 454.5\nmln.\n    Corrects year ago comparison to 454.5 mln from 545.5 mln.\n Reuter\n&#3;\n\n',0
+'BANK OF ENGLAND PRESSURE HOLDS BASE RATES This week\'s Bank of England resistance to\nstrong market pressure for lower interest rates succeeded in\nholding bank base rates at 11 pct.\n    But at a cost of threatening the Chancellor of the\nExchequer Nigel Lawson\'s policy, stated at the end of the Paris\nGroup of Six meeting last month, that he wanted to see sterling\nbroadly stable about then prevailing levels, market sources\nsaid.\n    Since then, the pound has risen to 71.8 pct on i [...]
+'LYNG DISAPPOINTED BY CANADA CORN INJURY DECISION U.S. Agriculture Secretary Richard\nLyng said he is \"very disappointed\" by a Canadian government\nfinding that U.S. corn has injured Ontario Corn growers.\n    \"This action is not helpful in the context of the ongoing\nU.S.-Canada free trade talks or in the new round of\nmultilateral trade negotiations,\" Lyng said in a statement.\n    The Canadian government today said Ottawa would continue to\napply a duty of 84.9 cents per bushel on [...]
+'BANCROFT &lt;BCV> SHAREHOLDERS REBUKE ZICO OFFER Bancroft Convertible Fund Inc, the\ntarget of an unfriendly cash offer by &lt;Zico Investment Holdings\nInc>, said its shareholders approved proposals requiring a\n66-2/3 pct affirmative vote of all outstanding shares before\nfundamental changes in its status could be made.\n    Previously, only a simple majority of outstanding shares\nwas needed to change Bancroft\'s investment status from a\ndiversified to a non-diversified fund, among  [...]
+'INT\'L TOTALIZATOR &lt;ITSI> SEES BETTER 1ST QTR International Totalizator Systems Inc\nVice President of Finance Joel Graff said he expects to report\nan improved first quarter compared to the 377,000 dlr loss\nreported in the year ago quarter.\n    \"A profit looks quite favorable,\" Graff said.\n    Last week, the automated ticket systems supplier reported a\nloss of 1.2 mln dlrs for the 1986.\n    Graff said \"we invested heavily in 1986, which we believe\nwill result in higher futu [...]
+'BOC GROUP COMPLETES SALE OF UNIT TO CONTROLS &lt;BOC Group Inc>\'s Airco\nDistributor Gases finalized the sale of its Virginia-based gas\nappaturs business to &lt;Controls Corp of America>, a newly formed\ninvestment group organized by former Airco employees.\n    Under the terms of the sale, Airco said Controls will\ncontinue to make the gas apparaturs product line under the\nAirco brand name, marketing the products exclusively through\nthe Airco\'s distributor network.\n Reuter\n&#3;',0
+'U.S. WHEAT GROWERS WANT EEP TO SOVIET UNION The U.S. National Association of\nWheat Growers (NAWG) urged the Reagan administration offer the\nSoviet Union wheat under the export enhancement program (eep).\n    In a letter to Agriculture Secretary Richard Lyng, NAWG\nstated its \"strong support\" for an eep offer to Moscow.\n    \"We believe that a solid case continues to exist for Soviet\nEEP eligibility, and the recently announced and reported Soviet\npurchases of U.S. corn indicate a  [...]
+'ABN SAYS PROFIT RISE ENCOURAGING IN VIEW DOLLAR Algemene Bank Nederland N.V. &lt;ABNN.AS>\nchairman Robertus Hazelhoff said the bank\'s 10.3 pct increase\nin net 1986 profit to 527 mln guilders from 478 mln in 1985 was\nencouraging in view of the sharply lower dollar.\n    Hazelhoff, speaking at a press conference after the release\nof ABN\'s 1986 results, said a sharp decrease in foreign\nearnings had been compensated by a strong domestic performance,\nnotably in the securities busines [...]
+'CANADIAN MONEY SUPPLY M-1 RISES 217 MLN DLRS IN WEEK, BANK OF CANADA SAID\n ',0
+'CANADIAN MONEY SUPPLY RISES IN WEEK Canadian narrowly-defined money supply\nM-1 rose 217 mln dlrs to 32.80 billion dlrs in week ended\nFebruary 25, Bank of Canada said.\n    M-1-A, which is M-1 plus daily interest chequable and\nnon-personal deposits, rose 556 mln dlrs to 75.19 billion dlrs\nand M-2, which is M-1-A plus other notice and personal\nfixed-term deposit rose 651 mln dlrs to 176.87 billion dlrs.s\n    M-3, which is non-personal fixed term deposits and foreign\ncurrency deposi [...]
+'FRENCH GOVERNMENT TO STEP UP AID TO JOBLESS The government plans to go ahead with a\nthree billion franc package to help the long-term unemployed,\nwith the aim of guaranteeing social security payments to\neveryone becoming redundant, government officials said.\n    At present only about one-third of the country\'s 2.6 mln\njobless, corresponding to 10.9 pct of the workforce, receive\nunemployment benefit.\n    Prime Minister Jacques Chirac told a television\ninterviewer, \"As soon as t [...]
+'USSR WHEAT BONUS OFFER SAID STILL UNDER DEBATE The Reagan administration continues\nto debate whether to offer subsidized wheat to the Soviet\nUnion, but would need assurances from the Soviets that they\nwould buy the wheat before the subsidy offer would be made, a\nsenior U.S. Agriculture Department official said.\n    \"I think it still is under active debate whether or not it\nwould be advisable\" to make an the export enhancement offer to\nthe Soviets, Thomas Kay, administrator of t [...]
+'SUN ELECTRIC CORP &lt;SE> 1ST QTR JAN 31 OPER NET Oper shr profit nine cts vs loss seven cts\n    Oper net profit 628,000 vs loss 491,000\n    Sales 50.7 mln vs 41.8 mln\n    Avg shrs 7,033,000 vs 6,557,000\n    Note: Oper net excludes extraordinary profit of 423,000\ndlrs, or six cts a shr, and 110,000 dlrs, or one ct a share,\nrespectively, in 1987 and 1986 quarters, from utilization of\ntax loss carryforwards.\n Reuter\n&#3;',0
+'CANADA CORN DECISION UNJUSTIFIED - YEUTTER U.S. trade representative Clayton\nYeutter said Canada\'s finding announced today that U.S. corn\nimports injure Canadian farmers is \"totally unjustified.\"\n    \"U.S. corn exports to Canada are so small that it is\ninconceivable that they injure Canadian corn farmers by any\nreasonable measure,\" Yeutter said in a statement.\n    He said if other countries follow Canada\'s lead it could\nresult in \"a rash of protectionist actions throughout [...]
+'CETEC CORP &lt;CEC> 4TH QTR NET Oper shr two cts vs eight cts\n    Oper net 41,000 vs 153,000\n    Sales 7,456,000 vs 7,965,000\n    Year\n    Oper shr 22 cts vs 50 cts\n    Oper net 434,000 vs 1,103,000\n    Sales 31 mln vs 33.6 mln\n    Note: Current qtr and year figures exclude loss from\ndiscontinued operations of 384,000 dlrs, or 20 cts per share.\n    Prior qtr and year figures exclude losses from discontinued\noperations of 1.9 mln dlrs, or 88 cts per share and 2.3 mln\ndlrs, or  [...]
+'RICHTON INTERNATIONAL CORP &lt;RIHL> 3RD QTR JAN 31 Shr 18 cts vs 39 cts\n    Net 507,000 vs 762,000\n    Sales 11.3 mln vs 11.7 mln\n    Avg shrs 2,789,000 vs 1,961,000\n    Nine mths\n    Shr 39 cts vs 90 cts\n    Net 1,076,000 vs 1,752,000\n    Sales 32.9 mln vs 33.3 mln\n    Avg shrs 2,771,000 vs 1,955,000\n Reuter\n&#3;',0
+'VALTEK INC &lt;VALT> 3RD QTR JAN 31 NET Shr 18 cts vs 19 cts\n    Net 400,413 vs 421,451\n    Revs 9,343,228 vs 8,213,449\n    Nine mths\n    Shr 39 cts vs 46 cts\n    Net 853,891 vs 1,011,999\n    Revs 24.6 mln vs 22.3 mln\n Reuter\n&#3;',0
+'THE WRITER CORP &lt;WRTC> 4TH QTR LOSS Shr loss 30 cts vs profit 11 cts\n    Net loss 1,247,000 vs profit 454,000\n    Revs 12.3 mln vs 17.5 mln\n    Year\n    Shr loss 24 cts vs profit 32 cts\n    Net loss 979,000 vs profit 1,303,000\n    Revs 60.6 mln vs 61.7 mln\n Reuter\n&#3;',0
+'ROCKY MOUNTAIN MEDICAL CORP &lt;RMEDU> 1ST QTR LOSS Dec 31\n    Shr loss one ct\n    Net loss 176,639\n    Revs 150,300\n    NOTE: Company went public in April 1986.\n Reuter\n&#3;',0
+'FIRST AMERICAN BANK AND TRUST &lt;FIAMA> YEAR NET Shr 91 cts vs 1.25 dlrs\n    Net 8,710,000 vs 11.7 mln\n    Avg shrs 9,526,287 vs 9,362,379\n    NOTE: Share adjusted for 10 pct stock dividend in May 1986.\n    Net includes loan loss provisions of 12.7 mln dlrs vs\n2,400,000 dlrs.\n Reuter\n&#3;',0
+'INDIA AGAIN IN MARKET FOR SUGAR - TRADE India has called a fresh buying tender\nfor up to four 13,000 tonne cargoes of white sugar on March 11,\ntraders here said.\n    The tender calls for one cargo of prompt sugar and two to\nthree with March/April shipment sugar, or the same as the eight\ncargoes bought at a tender two days ago. That tender originally\nonly sought two to three cargoes but resulted in the sale of\neight. India also granted the sellers options to sell twice\nthat amoun [...]
+'&lt;WARRANTECH CORP> 3RD QTR DEC 31 NET Shr profit nil vs loss nil\n    Net profit 28,565 vs loss 204,553\n    Revs 507,529 vs 6,563\n    Nine mths\n    Shr loss nil vs loss nil\n    Net loss 404,011 vs loss 649,495\n    Revs 938,345 vs 32,535\n Reuter\n&#3;',0
+'PIONEER GROUP &lt;PIOG> UNIT GETS MORE LAND The Pioneer Group Inc said its 70\npct-owned Teberebie Goldfields Ltd venture has been granted an\nadditional concession of land in Ghana to look for and mine\ngold.\n    The State Gold Mining Corp of Ghana granted the venture an\nadditional 14.5 square kilometers in Teberebie, Ghana,\ncontiguous to 11.5 square kilometers granted earlier, the\ncompany said.\n    The original concession appears to have a substantial\namount of gold bearing mate [...]
+'INSITUFORM &lt;IGLSF> RAISES STAKE IN UNIT Insituform Group Ltd of Guernsey,\nChannel Islands, said it has exercised an option to convert a\n250,000 stg loan to affiliate Insituform Permaline Ltd to\ncommon shares, raising its stake in the unit to 75 pct from 50\npct.\n    The remainder is held by Permaline\'s management and an\ninvestment group.\n    Insituform also said James Colclough has resigned from its\nboard for health reasons and secretary Scott Saltpeter has\nresigned, effecti [...]
+'COPPER MEETING AGREES GOALS OF STUDY GROUP The world\'s major copper producing and\nconsuming countries have reached \"a degree of consensus\" on\nobjectives and functions of a future study group aimed at\nreviewing the world copper market, officials said.\n    Governments represented at a meeting to consider a proposed\nforum for copper have recommended that another session be held\nin September to consider further the nature of such a group, a\nspokesman for the United Nations Confere [...]
+'LIFFE FEBRUARY VOLUMES DOWN, BUT EURODOLLARS UP Total futures and options turnover on the\nLondon International Financial Futures Exchange (LIFFE) fell\nslightly during February, although daily average Eurodollar\nvolume set a new record, LIFFE said today.\n    Total futures and options turnover last month was 822,378\ncontracts, down from January\'s 881,778, but sharply above the\ncomparative February 1986 figure of 463,146 lots, it said.\n    Eurodollar turnover during February was 14 [...]
+'COLOMBIAN OIL EXPORTS NOT AFFECTED BY QUAKE Colombian oil installations were not\ndamaged by an earthquake which shook Ecuador and southern\nColombia last night and there are no plans to suspend exports,\na spokesman for the state-run oil company Ecopetrol said.\n    He said no damage was reported, unlike in Ecuador where\nindefinite force majeure was declared on crude exports.\n    Colombia currently produces about 360,000 barrels per day\n(bpd) of crude. Exports in january totalled 12 [...]
+'CHICAGO MILWAUKEE &lt;CHG> GREETS SHEARSON STAKE Chicago Milwaukee Corp said it welcomed\nan investment by Shearson Lehman Brothers Inc in its company.\n    Yesterday, Shearson Lehman, a subsidiary of American\nExpress Co (AXP), disclosed in a Securities and Exchange\nCommission filing that it holds a 5.35 pct interest in Chicago\nMilwaukee.\n    Chicago Milwaukee\'s stock edged up 2-1/8 to 138 on turnover\nof 8,100 shares, as one of the biggest gainers on the NYSE. The\nstock has been  [...]
+'DAUPHIN DEPOSIT &lt;DAPN> TO MAKE ACQUISITION Dauphin Deposit Corp said it has\nsigned a letter of intent to acquire Colonial Bancorp Inc of\nNew Holland, Pa., in an exchange of 3.6 to 4.4 Dauphin shares\nfor each colonial share, depending on the market value of\nDauphin shares just before the merger takes place.\n    The company said the acquisition is subject to approval by\nColonial shareholders and regulatory authorities.  Colonial had\nassets at year-end of about 150 mln dlrs.\n Re [...]
+'VAN DORN CO &lt;VDC> SETS QUARTERLY Qtly div 27-1/2 cts vs 27-1/2 cts prior\n    Pay May One\n    Record April 17\n Reuter\n&#3;',0
+'M.D.C. HOLDINGS INC &lt;MDC> SETS QUARTERLY Qtly div 10 cts vs 10 cts prior\n    Pay March 31\n    Record March 16\n Reuter\n&#3;',0
+'CHUBB CORP &lt;CB> SETS QUARTERLY Qtly div 42 cts vs 42 cts prior\n    Pay April Seven\n    Record March 20\n Reuter\n&#3;',0
+'CRUDE OIL PRICES UP AS STOCKS, OUTPUT FALL U.S. crude oil prices rose above 18 \ndlrs a barrel this week and industry analysts said the price\ncould rise another dollar as inventories fall.\n    \"OPEC is keeping its production down, and in the cash market\nthere is tight supply of crude with short transportation time\nto major refining centers,\" said Daniel McKinley, oil analyst\nwith Smith Barney, Harris Upham and Co. \"That could send prices\n50 cts to a dollar higher,\" he added.\n [...]
+'MGE PLANNING APRIL 6 START UP OF HFCS CONTRACT The Minneapolis Grain Exchange (MGE)\nwill start trading futures contracts in high fructose corn\nsyrup on April 6 if the Commodity Futures Trading Commission\n(CFTC) approves the contract as expected next week.\n    Pat Henderson, spokesperson for the MGE, said the exchange\nexpects contract approval at CFTC\'s Tuesday meeting. It has\nbeen under review since the exchange submitted the proposal in\nDecember, 1985.\n    The proposed contrac [...]
+'FIRST FEDERAL BROOKSVILLE &lt;FFBV> SETS QUARTERLY Qtly div four cts vs four cts prior\n    Pay March 31\n    Record March 20\n    NOTE: First Federal Savings and Loan Association of\nBrooksville.\n Reuter\n&#3;',0
+'ALUMINUM CO OF AMERICA &lt;AA> REGULAR DIVIDEND Qtly div 30 cts vs 30 cts in prior qtr\n    Payable May 25\n    Record May one\n Reuter\n&#3;',0
+'&lt;TECHNIGEN PLATINUM CORP> IN METALS FIND Technigen Platinum corp said it\ninitial results of a 13-hole drilling program on its R.M. Nicel\nplatinum property in Rouyn-Noranda, Quebec, indicate\n\"extensive\" near-surface zones \"highly\" enriched in gold,\nplatinum and palladium were found in rocks on the periphery of\na sulphide deposit.\n    It said values of up to 0.073 ounce of platinum, 0.206\nounce palladium, three pct copper and 4.5 pct nickel were found\nover a drill section o [...]
+'SIEMENS WANTS TO AMEND TELECOM PLUS &lt;TELE> PACT Telecom Plus International Inc\nsaid &lt;Siemens AG>\'s Siemens Information Systems wants to amend\nits agreement to purchase Telecom\'s 65 pct interest in Tel Plus\nCommunications to delay payment of 25 mln dlrs for 11 months.\n    Telecom\'s shareholders are scheduled to vote on the 165 mln\ndlr transaction Monday.\n    Telecom said it advised Siemens it intends to close the\ntransaction on March 16, as scheduled, if it is approved by [...]
+'LUCKY STORES SAYS IT AND INVESTOR EDELMAN REACHED STANDSTILL AGREEMENT\n ',0
+'PIONEER GROUP UNIT GETS MORE GHANA GOLD LAND The Pioneer Group Inc said its 70\npct-owned Teberebie Goldfields Ltd venture was granted an\nadditional concession of land in Ghana to seek and mine gold.\n    The State Gold Mining Corp of Ghana granted the venture an\nadditional 14.5 square kilometers in Teberebie, Ghana,\ncontiguous to 11.5 square kilometers granted earlier.\n    The original concession appears to have a substantial\namount of gold bearing material containing about 2 gram [...]
+'INTERNATIONAL MULTIFOODS CORP &lt;IMC> DIVIDEND Qtly div 29-1/2 cts vs 29-1/2 cts prior\n    Pay April 15\n    Record March 27\n Reuter\n&#3;',0
+'HADSON CORP &lt;HADS> 4TH QTR NET Shr profit four cts vs loss 99 cts\n    Net profit 545,000 vs loss 13.1 mln\n    Revs 75.3 mln vs 37.9 mln\n    Avg shrs 14.8 mln vs 13.1 mln\n    Year\n    Shr profit 34 cts vs profit 34 cts\n    Net profit 4,908,000 vs profit 4,487,000\n    Revs 216.8 mln vs 117.7 mln\n    Avg shrs 14.6 mln vs 13.1 mln\n    NOTE: 1985 net included gain on sale of foreign properties\nof 15.5 mln dlrs or 1.19 dlrs per share and a writedown of oil\nand gas properties of  [...]
+'LUCKY STORES &lt;LKS>, EDELMAN IN STANDSTILL PACT Lucky Stores Inc said it and\ninvestor Asher Edelman agreed on a settlement that prohibits\nEdelman and his group from taking specified actions to obtain\ncontrol of the company and that limits the Edelman group\'s\nownership of Lucky\'s stock to less than five pct of any voting\nsecurities.\n    The arrangement also provides for the dismissal of pending\nlitigation between the parties, Lucky Stores said.\n    The settlement also calls f [...]
+'ATT &lt;T> PHONE PROPOSAL TO HELP PROFITS American Telephone and Telegraph Co\'s\nproposal to deregulate its long distance phone service is\nunlikely to produce a radical change in phone rates, but it\nshould help the company\'s profits, analysts said.\n    \"Deregulation will mean more pricing discounts for large\nvolume users, but status quo for residential users,\" said\nPaineWebber Group analyst Jack Grubman.\n    But the proposals will scrap the pricing formula that has\nconstraine [...]
+'CME SETS MAY 29 START FOR LUMBER FUTURES OPTIONS The Chicago Mercantile Exchange (CME)\nboard of governors announced today the options on Random Length\nlumber futures will begin trading on May 29.\n    The contract received Commodity Futures Trading Commission\n(CFTC) approval on January 21 after being submitted for review\nlast October 13.\n    Initially, only January, March and May delivery months will\nbe listed for trading. The size of the underlying futures\ncontract is 130,000 bo [...]
+'TWA CONFIRMS OWNERSHIP OF 15 PCT OF USAIR GROUP\n ',0
+'STRUTHERS WELLS &lt;SUW> SEES 1986 NOV 30 LOSS Struthers Wells Corp said it expects\nto report a loss, without tax benefit, of about 16 mln dlrs for\nthe fiscal year ended November 30, 1986, versus a profit of\n295,000 dlrs in fiscal 1985.\n    The company added, however, that about 13.6 mln dlrs of the\nloss relates to discontinued operations and disposal of\nsubsidiaries.\n    The company said the loss is part of its previously\nannounced restructuring that includes the sale of its fo [...]
+'SOROS GROUP TELLS SEC IT MAY BUY UP TO 49.9 PCT OF FAIRCHILD INDUSTRIES\n ',0
+'TWA &lt;TWA> CONFIRMS OWNERSHIP OF USAIR &lt;U> STOCK Trans World Airlines Inc said it owns\nmore than four mln USAir Group shares or about 15 pct of the\ntotal outstanding.\n    TWA said it may acquire additional shares in the open\nmarket, in private transactions, through a tender offer or\notherwise, subject to Department of Transportation approval.\n    TWA has offered 52 dlrs per share for USAir Group. USAir\nrejected the offer yesterday, calling it a last-minute attempt\nto interf [...]
+'SILVER STATE MINING &lt;SSMC> CORRECTS NET Silver State Mining Corp said it has\ncorrected its 1986 fourth quarter net income to 485,380 dlrs\nfrom 528,790 dlrs reported earlier today.\n    The company earned 286,969 dlrs in last year\'s fourth\nquarter.\n Reuter\n&#3;',0
+'STEWART-WARNER CORP 4TH QTR SHR LOSS 3.86 DLRS VS PROFIT 37 CTS\n ',0
+'GROUP TO BOOST FAIRCHILD INDUSTRIES (FEN) STAKE An investor group led by New York\ninvestor George Soros said it was dissatisfied with Fairchild\nIndustries Inc management and was considering boosting its\nholdings to as much as 49.9 pct of the aerospace and aviation\ncompany\'s outstanding stock.\n    The group already controls 1,647,481 Fairchild Industries\nshares or 11.5 pct of the total outstanding.\n    The group said it filed on Wednesday with federal antitrust\nregulators for ad [...]
+'PAYLESS CASHWAYS &lt;PCI> SEES BETTER FIRST QTR Payless Cashways Inc chairman David\nStanley told analysts the company\'s first quarter results to be\nreported March 17 will be better than the seven cts per share\nreported in the year ago quarter.\n    \"It was not a wonderful sales quarter, but it only\nrepresents 14 pct of the year\'s total results,\" Stanley said.\n    Stanley also said that 1987 full year sales will be in\nexcess of 1.8 billion dlrs as compared to the 1.5 billion dl [...]
+'STEWART-WARNER CORP &lt;STX> 4TH QTR LOSS Shr loss 3.86 dlrs vs profit 37 cts\n    Net loss 24,973,000 vs profit 2,389,000\n    Sales 62.5 mln vs 65.3 mln\n    Year\n    Shr loss 3.22 dlrs vs profit 1.32 dlrs\n    Net loss 20,861,000 vs profit 8,515,000\n    Sales 268.0 mln vs 272.7 mln\n    NOTE: 1986 earnings include a provision for restructuring\ncosts of 23,675,000 dlrs, or 3.66 dlrs a share (pre-tax) and\nthe effect of adoption of FASB 87 which reduced pension expense\nby 617,000 d [...]
+'MONITERM CORP &lt;MTRM> 4TH QTR LOSS Shr loss 15 cts vs loss 11 cts\n    Net loss 632,000 vs loss 437,000\n    Revs 3,206,000 vs 2,650,000\n    Year\n    Shr loss 19 cts vs loss 24 cts\n    Net loss 793,000 vs loss 1,004,000\n    Revs 11.5 mln vs 14.4 mln\n    NOTE: Prior year figures restated to reflect merger in\nMarch 1986 with Amtron Corp.\n Reuter\n&#3;',0
+'THE CHUBB CORP &lt;CB> SETS QTRLY PAYOUT Qtrly 42 cts vs 42 cts prior\n    Pay April 7\n    Record March 20\n Reuter\n&#3;',0
+'SOUTHTRUST &lt;SOTR> TO ACQUIRE FOUR BANKS SouthTrust Corp, a 5.1 billion\ndlr multibank holding company, said it entered into agreements\nto acquire four Florida banks with assets totalling more than\n233.2 mln dlrs.\n    Terms of the agreements were not disclosed.\n    The four banks are: Central Bank of Volusia County, with\nassets of 59.3 mln dlrs, Bank of Pensacola with assets of 63.8\nmln dlrs, and Vista Bank, which operates Vista Bank of Volusia\nCounty with assets of 37.8 mln dl [...]
+'CARLING O\'KEEFE SELLS STAR OIL UNIT TO UNITED COAL CANADA FOR 57 MLN DLRS\n ',0
+'HUGHES TOOL &lt;HT> UP ON MERGER SPECULATION Hughes Tool Co rose one to 12-1/4 on\n1,658,000 shares, apparently reflecting a belief that Baker\nInternational Corp &lt;BKO> will be able to persaude Hughes to go\nalong with a previously announced merger, analysts said.\n    This week Hughes seemed to back out of the merger but then\nsaid it was still interested in talking.\n    \"It sounds like Baker wants it and if people are convinced\na deal is going to go through the stock goes up,\"  [...]
+'AETNA &lt;AET> REACHES AGREEMENT TO BUY COMPANY Aetna Life and Casualty Co said\nit reached an agreement to acquire a 49 pct interest in\nUniversal Life and General Insurance Sdn Bhd &lt;ULG>, a Malaysian\ncomposite insurance company.\n    The company said the 51 pct balance will continue to be\nowned by Malaysia Apera Group of private investors.\n    The transaction is valued at approximately 37.8 mln dlrs\nand is expected to be completed by March 31, 1987.\n Reuter\n&#3;',0
+'CARLING O\'KEEFE&lt;CKB> SELLS OIL UNIT, TAKES GAIN Carling O\'Keefe Ltd said it sold its\nStar Oil and Gas Ltd unit to United Coal (Canada) Ltd for about\n57 mln dlrs cash.\n    Carling said it will record an extraordinary gain of about\ntwo mln dlrs after tax, or nine cts a common share resulting\nfrom the sale.\n    The company did not elaborate further on financial terms.\n    A Carling official later said in reply to an inquiry that\nCarling would record the extraordinary gain in i [...]
+'CHANNEL FERRY REPORTED SINKING OFF BELGIUM The channel ferry Herald\nof Free Enterprise from the British Townsend Thorensen company\nwas sinking off the Belgian coast tonight with 463 people on\nboard, the Dutch newsagency ANP reported today.\n    An unspecified number of people had fallen into the water,\nit said, quoting the pilot organisation in this south-western\nDutch port city near the Belgian border.\n    It said the vessel had capsized after a collision but gave\nno more detail [...]
+'PATRICK PETROLEUM CO &lt;PPC> YEAR LOSS Shr loss 1.22 dlrs vs profit 27 cts\n    Net loss 8,812,432 vs profit 1,847,560\n    Revs 7,981,198 vs 10.3 mln\n    Avg shrs 7,187,941 vs 6,828,368\n    NOTE: Current year includes tax credit of 800,000 dlrs.\n Reuter\n&#3;',0
+'EPITOPE INC &lt;EPTO> 1ST QTR DEC 31 LOSS Shr loss 24 cts vs loss nine cts\n    Net loss 216,697 vs loss 47,344\n    Sales 144,403 vs 118,391\n\n Reuter\n&#3;',0
+'&lt;CLARY CORP> 4TH QTR DEC 31 LOSS Shr loss 12 cts vs loss 16 cts\n    Net loss 214,000 vs 309,000\n    Revs 3,056,000 vs 2,545,000\n    Year\n    Shr loss 43 cts vs loss nine cts\n    Net loss 754,000 vs loss 159,000\n    Revs 11.4 mln vs 11.4 mln\n Reuter\n&#3;',0
+'LLOYDS BANK CANADA 1ST QTR PROFIT RISES SHARPLY Lloyds Bank Canada, a unit of &lt;Lloyds\nBank International PLC>, said net profit soared to 3,053,000\ndlrs for the first quarter ended January 31 from 9,000 dlrs a\nyear earlier.\n    Loan loss provisions, a mandatory five-year averaging of\nactual loan losses, also rose in the first quarter to 6,375,000\ndlrs from year-ago 113,000 dlrs, the bank said.\n    Lloyds Bank Canada became Canada\'s largest foreign bank\nlast autumn with its 20 [...]
+'BRAZIL STRIKES CAUSE GOVERNMENT MAJOR PROBLEMS Strikes by Brazil\'s 40,000\nseamen and by petrol station owners in four states are causing\nmajor headaches to a government already wrestling with a debt\ncrisis.\n    A week ago seamen began their first national strike for 25\nyears and union leaders say they have seriously affected\nBrazilian exports by making idle 160 ships.\n    On February 20 the Brazilian government suspended interest\npayments on part of its huge foreign debt follow [...]
+'DOME PETE&lt;DMP> SAID TO BE PRESSED TO SELL ENCOR Dome Petroleum Ltd is under pressure\nfrom one of its largest creditors, &lt;Canadian Imperial Bank of\nCommerce>, to sell its 42 pct stake in &lt;Encor Energy Corp Ltd>,\nenergy industry analysts said.\n    Dome has pledged its 42.5 mln Encor shares as security for\npart of its debt to Commerce Bank, estimated last year at 947\nmln Canadian dlrs, and the bank wants Dome to sell the stock to\npay down debt, analysts said.\n    \"The Com [...]
+'PATRICK PETROLEUM CO &lt;PPC> 4TH QTR NET Shr nil vs one ct\n    Net 59,608 vs 95,909\n    Revs 2,921,629 vs 2,918,682\n    Avg shrs 7,062,172 vs 7,273,020\n    Year\n    Shr loss 1.22 dlrs vs profit 27 cts\n    Net loss 8,812,432 vs profit 1,847,560\n    Revs 3,070,327 vs 3,195,710\n    Avg shrs 7,187,941 vs 6,828,368\n Reuter\n&#3;',0
+'INLAND VACUUM INDUSTRIES INC &lt;IVAC> 1ST QTR NET Qtr ends Jan 31\n    Shr six cts vs eight cts\n    Net 103,436 dlrs vs 134,360 dlrs\n    Revs 1,762,270 vs 1,282,463\n Reuter\n&#3;',0
+'IRANIAN OIL MINISTER ARRIVES IN ALGERIA Iranian Oil Minister Gholamreza Aqazadeh\narrived in Algiers at the head of a large delegation for talks\non stabilizing oil prices, the official news agency APS said.\n    In a brief arrival statement, he said Iran and Algeria were\nengaged in \"continuous and stronger cooperation\" on the world\npetroleum market and had \"deployed considerable efforts to\nstablise petroleum prices.\"\n    He was greeted on arrival by Belkacem Nabi, the Algerian\ [...]
+'DEL LABORATORIES INC &lt;DLI> 4TH QTR NET Shr 16 cts vs 55 cts\n    Net 232,000 vs 814,000\n    Revs 22.4 mln vs 22 mln\n    Year\n    Shr 2.07 dlrs vs 2.43 dlrs\n    Net 3,108,000 vs 3,670,000\n    Revs 106.7 mln vs 101.1 mln\n    NOTE: Per share figures adjusted to reflect four-for-three\nstock split paid March 26, 1986.\n Reuter\n&#3;',0
+'CHILEAN GDP UP 5.7 PCT IN 1986, CENTRAL BANK SAYS chile\'s gross domestic product rose 5.7\npct last year to 18.8 billion dollars, compared to a 2.4 pct\nrise in the previous year, the central bank said.\n    It said initial projections were for a 4.6 pct increase in\ngdp this year.\n    The sectors which registered the greatest growth in 1986\nwere fisheries with 10 pct, agriculture at 8.7 pct, transport\nand communications with 8.1 pct and industry at 8.0 pct, the\nbank added.\n Reute [...]
+'LANDMARK SAVINGS &lt;LSA> COMPLETES OFFICE SALE Landmark Savings Association said it\ncompleted the sale of its Whitehall, Pa., office, including\ndeposits of about 31 mln dlrs, to Parkvale Savings Association.\n    Landmark said it realized a gain of about 1.1 mln dlrs on\nthe sale. The price was not disclosed.\n Reuter\n&#3;',0
+'U.S. FEEDGRAINS GROUP ATTACKS CANADA CORN RULING The U.S. Feedgrains Council is\nsurprised and disappointed by the Canadian Import Tribunal\'s\ndecision that imports of corn from the U.S. are materially\ninjuring Canadian corn producers, a council spokesman said.\n    \"At a time when the world is attempting to liberalize trade\nin the new rounnd of multilateral negotiations, it is\nincomprehensible that a country that stands to gain so much\nfrom the reduction in agricultural trade bar [...]
+'HOLLY SUGAR CORP &lt;HLY> SETS REGULAR DIVIDEND Qtly div 25 cts vs 25 cts prior\n    Pay March 31\n    Record March 18\n Reuter\n&#3;',0
+'CORADIAN CORP &lt;CDIN> YEAR NET Shr profit one cent vs loss 37 cts\n    Net profit 148,000 dlrs vs loss 1,686,000\n    Revs 11.4 mln vs 10.9 mln\n    NOTE: Company said net is before extraordinary items and\ntaxes and declined to provide data on those items\n Reuter\n&#3;',0
+'USDA TO CONDUCT SURVEY FOR AVIAN INFLUENZA U.S. Agriculture Department animal\nhealth officials are conducting a national survey of live-bird\nmarkets and auctions to check for signs of avian influenza, an\ninfectious viral disease of poultry, the department said.\n    The survey will locate poultry dealers and live-bird\nmarkets that sell live birds directly to the consumer and once\nthe dealers and markets are identified, there will be tests to\ndetermine any past or present exposure  [...]
+'TWO HUNDRED PEOPLE RESCUED FROM SINKING FERRY About 200 people were rescued, some\nbadly hurt, from a sinking cross Channel ferry carrying\napproximately 540 people off the Belgian port of Zeebrugge, a\nport control spokesman said.\n    The spokesman, contacted by telephone, said only one third\nof car ferry, the Herald of Free Enterprise owned by the\nBritish company Townsend Thoresen, remained above water.\n    Divers have been sent down to try to rescue passengers\nbelieved trapped i [...]
+'FOXBORO CO &lt;FOX> 4TH QTR LOSS Oper shr loss one ct vs loss 2.65 dlrs\n    Oper net loss 100,000 vs loss 32.7 mln\n    Revs 142.3 mln vs 168.8 mln\n    12 mths\n    Oper shr profit 57 cts vs loss 2.76 dlrs\n    Oper net profit 7,072,000 vs loss 34.2 mln\n    Revs 544.0 mln vs 572.2 mln\n    Note: 1986 oper net excludes tax credits of 2,149,000 dlrs\nfor qtr and 2,200,000 dlrs for 12 mths. Includes restructuring\ncharges of 120 mln dlrs for qtr, 527 mln dlrs for 12 mths.\n Reuter\n&#3;',0
+'LYNG SAYS NO DECISIONS TAKEN AT CABINET COUNCIL U.S. Agriculture Secretary Richard\nLyng said no decisions were taken today at a White House\nEconomic Policy Council meeting.\n    Speaking to reporters on his return from the meeting, Lyng\nsaid only about five minutes of the session dealt with\nagriculture issues.\n    \"It was not a decision making meeting,\" Lyng said.\n    Aides to Lyng earlier said the administration\'s agriculture\nlegislative proposals would be the farm-related to [...]
+'TREASURY BALANCES AT FED FELL ON MARCH 5 Treasury balances at the Federal\nReserve fell on March 5 to 3.467 billion dlrs from 3.939\nbillion dlrs the previous business day, the Treasury said in\nits latest budget statement.\n    Balances in tax and loan note accounts fell to 14.350\nbillion dlrs from 14.391 billion dlrs on the same respective\ndays.\n    The Treasury\'s operating cash balance totaled 17.817\nbillion dlrs on March 5 compared with 18.330 billion dlrs on\nMarch 4.\n Reuter [...]
+'NICARAGUA, ROMANIA, PARAGUAY LOSE TRADE RIGHTS President Reagan formally ended\npreferential duty-free trade treatment for exports from\nNicaragua, Romania and Paraguay under the Generalized System of\nPreferences (GSP).\n    He took the action after determining that the three\ncountries are not taking steps to give their workers\ninternationally recognized rights.\n    U.S. Trade Representative Clayton Yeutter had announced the\nintended action on January 2. The United States conducts  [...]
+'U.S. FEEDGRAIN 0/92 SUPPORTERS EVALUATE POSITION Advocates of a 0/92 plan for\nfeedgrains will likely delay offering their proposals if a\ndisaster aid bill before the House Agriculture Committee is\nscaled back to include only 1987 winter wheat, congressional\nsources said.\n    The disaster aid bill, introduced by Rep. Glenn English\n(D-Okla.), sparked sharp controversy with its proposals to\nimplement a 0/92 program for 1987 wheat and 1988 winter wheat.\n    An agreement has been rea [...]
+'ALFIN INC &lt;AFN> 2ND QTR JAN 31 LOSS Shr loss 20 cts vs profit 14 cts\n    Net loss 1,417,000 vs profit 933,000\n    Revs 5,623,000 vs 5,403,000\n    Avg shrs 6,957,300 vs 7,115,248\n    Six mths\n    Shr loss 18 cts vs profit 43 cts\n    Net loss 1,269,000 vs profit 3,079,000\n    Revs 15.7 mln vs 14.2 mln\n    Avg shrs 7,195,720 vs 7,115,248\n Reuter\n&#3;',0
+'BELL AND HOWELL &lt;BHW> COMPLETES SALE OF UNIT Bell and Howell Co said it\ncompleted the sale of its computer output microfilm business to\nCOM Products Inc, a unit of privately-held &lt;LeBow Industries\nInc>.\n    The sum of the deal was not disclosed.\n    The unit makes a device that prints data directly from a\ncomputer onto microfilm.\n Reuter\n&#3;',0
+'U.S. BUSINESS LOANS FALL 618 MLN DLRS IN FEB 25 WEEK, FED SAYS\n ',0
+'U.S. BUSINESS LOANS FALL 618 MLN DLRS Business loans on the books of major\nU.S. banks, excluding acceptances, fell 618 mln dlrs to 278.88\nbillion dlrs in the week ended February 25, the Federal Reserve\nBoard said.\n    The Fed said that business loans including acceptances fell\n897 mln dlrs to 281.23 billion dlrs.\n Reuter\n&#3;',0
+'HYPONEX CORP &lt;HYPX> YEAR NET Shr 85 cts vs 1.20 dlrs\n    Net 5,130,000 vs 7,236,000\n    Revs 93.6 mln vs 91.9 mln\n Reuter\n&#3;',0
+'HMO AMERICA INC &lt;HMOA> YEAR LOSS Shr loss 33 cts vs profit 38 cts\n    Net loss 2,359,978 vs profit 2,805,389\n    Revs 76.2 mln vs 61.8 mln\n    Avg shrs 7,096,886 vs 7,392,586\n Reuter\n&#3;',0
+'TECHNIGEN PLATINUM CORP IN METALS FIND Technigen Platinum corp said initial\nresults of a 13-hole drilling program on its R.M. Nicel\nplatinum property in Rouyn-Noranda, Quebec, indicate extensive\nnear-surface zones highly enriched in gold, platinum and\npalladium.\n    The metals were found in rocks on the periphery of a\nsulphide deposit.\n    It said values of up to 0.073 ounce of platinum, 0.206\nounce palladium, three pct copper and 4.5 pct nickel were found\nover a drill section  [...]
+'AMERICAN PORK CONGRESS TO BE OVERHAULED IN 1988 The National Pork Producers Council,\nNPPC, announced at this year\'s American Pork Congress, APC,\nthat the Congress and trade show will be divided into two parts\nin 1988.\n    Next years APC, held in Atlanta, will be a business session\nonly and will continue to be the first week of March.\n    The trade show is being changed into a new international\nevent called the World Pork Expo. The first expo will be held\nin June 1988 in Des Moi [...]
+'&lt;DTD ENTERPRISES INC> IN REORGANIZATION DTD Enterprises Inc said it filed an\n8-K report indicating that &lt;EaglesLair Development Corp> had\nassumed control of the company under a reorganization plan\nsigned last month.\n    The company said D. Gerald Lach, president of EaglesLair,\nwas named president and a director of DTD.\n    In addition, DTS\'s board resigned and EaglesLair appointed\nnew directors, the company said.\n Reuter\n&#3;',0
+'SCHWAB SAFE CO &lt;SS> UPS PAYOUT Qtly div 13 cts vs 12 cts prior\n    Pay April 17\n    Record March 31\n Reuter\n&#3;',0
+'PHYSICIANS INSURANCE CO &lt;PICO> 4TH QTR NET Shr 31 cts vs 53 cts\n    Net 960,143 dlrs vs 1,631,011 dlrs\n    Revs 27.4 mln dlrs vs 18.9 mln dlrs\n    Avg shrs 3,079,533 vs 3,096,095\n    12 mths\n    Shr 1.01 dlrs vs 92 cts\n    Net 3,113,337 dlrs vs 2,855,755 dlrs\n    Revs 106.5 mln dlrs vs 78.3 mln dlrs\n    Avg shrs 3,079,516 vs 3,089,140\n    NOTE: per share amounts for qtr and year prior have been\nrestated to reflect a six-for-five stock split in August 1986.\n    Revs for qtr [...]
+'BRADLEY &lt;BRLY> ANNOUNCES LONG-TERM LEASE Bradley Real Estate Trust said it signed\na 99-year lease for property in downtown Minneapolis to BCED\nMinnesota Inc.\n    The lease will increase net income by about 24 cts a share\non a post-February 1987 three-for-two stock split basis. For\n1986, the Trust reported net income of 1.3 mln dlrs or 38 cts a\nshare on a post-split basis.\n    Bradley will also be entitled to a one-time additional\nrental payment of 30 cts a share upon BCED ent [...]
+'DUMEZ UNIT HAS 94 PCT OF WESTBURNE (WBI) (Dumez Investments I Inc) said 94.7 pct\nof Westburne International Industries Ltd\'s outstanding common\nshares have been deposited under its takeover bid.\n    It said it has received about 11,070,000 shares under its\n22.50 dlrs per share offer which expired yesterday.\n    Dumez said it will proceed to acquire the remaining common\nshares to give it 100 pct ownership of Westburne.\n    Dumez is a private company owned jointly by (Dumez S.A.)\ [...]
+'CANADIAN NATURAL RESOURCES TO SELL STAKE &lt;Canadian Natural Resources\nLtd> said it agreed in principle to sell 80 pct of its working\ninterest in certain producing and non-producing natural gas\nproperties located in southwestern Saskatchewan.\n    The transaction is expected to close on April 1, 1987, the\ncompany said. It did not identify the buyer nor give the\nselling price.\n    Proceeds will be used to satisfy a February 1987 repayment\ndemand by one of the company\'s lenders.  [...]
+'MALRITE BUYS COX\'S RADIO STATION UNIT &lt;Malrite Guaranteed Broadcast Partners\nL.P.> said it bought WTRK Inc from &lt;Cox Enterprises Inc> for\n13.8 mln dlrs in cash.\n    It said WTRK owns and operates WTRK-FM, a Philadelphia\nradio station. Transfer of the license for the sation has been\napproved by the Federal Communications Commission.\n    Malrite Guaranteed said it is a limited partnerhip formed\nto acquire and operate radio and tv stations. It said Malrite\nCommunications Gro [...]
+'CYACQ EXTENDS TENDER FOR CYCLOPS &lt;CYL> Cyacq Corp said it extended its 80\ndlr a share tender offer for Cyclops Corp to March 20 from\ntoday.\n    Cyacq was formed by Citicorp Capital Investors Ltd and\nAudio Video Affiliates INc &lt;AVA> to acquire Cyclops. THe tender\noffer began on February six.\n    The offer is conditioned upon at least 80 pct of the\noutstanding shares and at least 80 pct of the voting securities\nbeing tendered before expiration of the offer.\n    As of March  [...]
+'MONO GOLD SAYS PARTNERSHIP AGREES TO BUY SHARES &lt;Mono Gold Mines\nInc> said &lt;NIM and Co Ltd> Partnership agreed to buy\nflow-through shares with an aggregate purchase price of up to\n300,000 dlrs.\n    It said, subject to fulfillment of certain conditions, the\nprice of the shares to NIM will be 79.6 cts per share, and said\nit will issue 376,955 shares to the partnership.\n    Mono also said options to buy up to 300,000 dlrs of its\ncapital stock at 65 cts per share expire March  [...]
+'USLICO CORP &lt;USVC> INCREASES DIVIDEND Qtly div 22 cts vs 20 cts prior\n    payable March 27\n    Record March 18\n Reuter\n&#3;',0
+'USAIR GROUP REQUESTS TRANSPORTATION DEPARTMENT ORDER TWA TO DIVEST STAKE\n ',0
+'DIPLOMAT ELECTRONICS &lt;DPEC> TO CUT COSTS Diplomat Electronics Corp said it\nwill reduce expenses by four mln dlrs a year in an effort to\nstem losses and return to a positive net worth.\n    The company also said certain lenders agreed to take a 24\npct stake in the company by converting seven mln dlrs of debt\ninto preferred stock.\n    Diplomat said it will cut costs by several means, including\ndismissal of 100 workers at its corporate headquarters,\nconsolidation of its warehousi [...]
+'U.S. CORN GROWERS BLAST CANADA CORN RULING Canada\'s ruling in favor of a duty on\nU.S. corn was a keen disappointment to the National Corn\nGrowers Association and has set a dangerous precedent for other\nnations to follow, said Mike Hall, lobbyist for the\nassociation.\n    \"The French corn growers will clearly charge ahead now and\njust change corn to corn gluten feed\" in their complaint, Hall\ntold Reuters.\n    A Canadian government agency ruled today that U.S. farm\npolicies are [...]
+'DOLLAR GENERAL CORP &lt;DOLR> QTLY DIVIDEND Qtly div five cts vs five cts prior\n    Payable April three\n    Reocrd March 20\n Reuter\n&#3;',0
+'HEALTHCARE SERVICES &lt;HSAI> SEES WRITE-OFFS Healthcare Services Of America\nInc said it will write off about 16 mln dlrs in non-recurring\nexpenses in 1986.\n    It also said it expects income from operations to be about\nbreakeven for 1986 and the estimated loss for the year to be\nabout the same as the writeoffs.\n    Results will be released by March 31, 1987.\n    Included in the writeoffs were six mln dlrs in\ndevelopmental costs, six mln dlrs in unamortized loan costs and\ndebt  [...]
+'USAIR &lt;U> SEEKS ORDER AGAINST TWA &lt;TWA> USAir Group said it sought the help\nof the U.S. Department of Transportation in its takeover fight\nwith Trans World Airlines Inc, asking the Department to order\nTWA to sell its USAir shares.\n    \"What they have done is in direct violation of the Federal\nAviation Act,\" USAir said.\n    It said TWA week filed a cursory application with the\nDepartment of Transportation for approval of its proposed 1.65\nbillion dlr takeover of USAir.\n  [...]
+'PARK-OHIO INDUSTRIES INC &lt;PKOH> 4TH QTR NET Shr loss 52 cts vs profit 1.07 dlr\n    Net loss 2,917,000 vs profit 5,963,000\n    Revs 34.1 mln vs 40.3 mln\n    Year\n    Shr loss 1.39 dlr vs profit 1.24 dlr\n    Net loss 7,749,000 vs profit 6,946,000\n    Revs 138.6 mln vs 186.2 mln\n    NOTE: 1986 net includes certain non-recurring charges of\nabout 5,506,000 dlrs for a number of items.\n    1985 4th qtr and yr net includes extraordinary credit of\n4,974,000 dlrs or 89 cts per share. [...]
+'BMC INDUSTRIES INC &lt;BMC> 4TH QTR LOSS Shr loss 1.20 dlrs vs loss 1.97 dlrs\n    Net loss 6,248,000 vs loss 10.2 mln\n    Revs 33.1 mln vs not given\n    Year\n    Shr loss 1.25 dlrs vs loss 13.44 dlrs\n    Net loss 6,508,000 vs loss 69.6 mln\n    Revs 123.4 mln vs not given\n    NOTE: Results include charges of five mln dlrs or 96 cts\nshr for 1986 qtr and year, compared with charge of 72.2 mln\ndlrs or 13.94 dlrs shr in prior year from discontinued\noperations and disposal of discon [...]
+'UNITED COMPANIES &lt;UNCF> DECLARES STOCK DIVIDEND United Companies Financial Corp\nsaid its board declared a two pct stock dividend payable APril\neight to holders of record March 17.\n    The board also declared a regular quarterly cash dividend\nof 12.5 cts payable April one to holders of record March 16.\n                                                   \n Reuter\n&#3;',0
+'U.S. FARM PROGRAMS HELP CANADIAN CORN PRODUCERS An American Farm Bureau\nFederation (AFBF) official said that far from hurting Canadian\ncorn producers, U.S. farm programs benefit all foreign\nproducers.\n    AFBF president Dean Kleckner made the comments in response\nto the ruling earlier today by the Canadian Import Tribunal\nthat subsidized U.S. corn imports were injurious to Canadian\ngrowers. The tribunal upheld a countervailing duty of 84.9 U.S.\ncents a bushel.\n    \"Farm Bureau [...]
+'U.N. ISSUES REPORT ON NATURAL GAS CLAUSES The U.N. Centre on Transnational\nCorporations has issued a report containing guidelines and\nrecommendations for negotiating natural gas clauses in\nagreements between transnational petroleum corporations and\nhost countries.\n    The U.N. said the report was aimed at promoting petroleum\nexploration in areas perceived as being gas prone. The 49-page\nreport contains an in-depth examination of the problems of gas\ndevelopoment and looks at diff [...]
+'TAFT&lt;TFB> BIDDERS WOULD SELL ENTERTAINMENT UNIT A proposed buyout of Taft Broadcasting\nCo by Dudley Taft and other investors includes a plan to sell\nthe company\'s Entertainment Group, according to one of the\ninvestors.\n    Jonathan Nelson, managing director of Narragansett Capital\nCorp &lt;NARR>, which is participating in the buyout plan,\ndeclined to say if buyers have already been lined up for the\nEntertainment Group. \"We are considering selling the group,\"\nNelson said. W [...]
+'POSITIVE OUTLOOK TEMPERED IN U.S. DEBT FUTURES Higher oil prices and stronger than\nexpected U.S. employment growth led to sharp losses in U.S.\ninterest rate futures and diminished what had been a positive\nchart outlook, financial analysts said.\n    The increase of 319,000 in non-farm payroll employment\nduring February was above market expectations for a rise of\n170,000 to 200,000 jobs and sparked selling in Treasury bond\nfutures that drove the June contract through key technical\ [...]
+'SANDOX BUYS STAUFFER SEEDS Sandoz Corp\'s Northrup King Co said\nit bought Stauffer Seeds, a unit of Stauffer Chemical Co.\n    Terms were not disclosed.\n Reuter\n&#3;',0
+'ENERGEN &lt;EGN> BUYS MUNICIPAL GAS SYSTEM Energen Corp said it has\nacquired the distribution system of the City of Clanton, Ala.\nfor about 1.2 mln dlrs.\n    The 1,800 customer system is the fourth municipal system\nacquired by Energen\'s Alabama Gas subsidiary since October\n1986, adding a total of 9,600 customers.\n Reuter\n&#3;',0
+'SIERRA PACIFIC RESOURCES INC &lt;SRP> DIVIDEND Qtly div 43 cts vs 43 cts prior\n    Payable May one\n    Record April 15\n Reuter\n&#3;',0
+'METEX CORP &lt;MTX> 4TH QTR DEC 28 Shr 22 cts vs 49 cts\n    Net 296,994 vs 657,416\n    Revs 6.5 mln vs 9.5 mln\n    Year\n    Shr 78 cts vs 1.51 dlrs\n    Net 1.0 mln vs 2.0 mln\n    Revs 27.6 mln vs 29.4 mln\n Reuter\n&#3;',0
+'HOUSTON OIL TRUST &lt;HO> OMITS MARCH DISTRIBUTION Houston Oil Trust said there will be no\ncash distribution to the unit holders in March.\n    The most significant factor for the lack of a distribution\nthis month is the establishment of additional special cost\nescrow accounts, the company said, adding, that there may be no\ncash distribution in other months or during the remainder of\nthe year.\n    For March, the working interest owner will place 1.9 mln\ndlrs in special cost escro [...]
+'MONOCLONAL ANTIBODIES &lt;MABS> BUYS COMPANY Monoclonal Antibodies Inc\nsaid it signed an agreement in principle to buy &lt;Genesis Labs\nInc> for about 10 mln dlrs of common stock.\n    The agreement is subject to shareholders approval and other\nconditions.\n Reuter\n&#3;',0
+'U.S. TREASURY PROPOSES SOME S. AFRICAN IMPORTS The Treasury proposed allowing \ntemporary imports of South African uranium ore and uranium\noxide until July 1 under certain conditions pending\nclarification of anti-apartheid laws passed by Congress last\nfall.\n    The proposal to be published in the Federal Register next\nweek requests written congressional and public comment within\n60 days and deals with uranium ore and oxide that is imported\nfor U.S. processing and exporting to thi [...]
+'BRANIFF INC &lt;BAIR> 4TH QTR LOSS JAN 31 Shr loss 37 cts vs loss 13 cts\n    Net loss 4.5 mln vs loss 1.5 mln\n    Revs 63.3 mln vs 53.8 mln\n    Year\n    Shr loss 74 cts vs profit 1.87 dlr\n    Net loss 9.0 mln vs profit 23.0 mln\n    Revs 239.5 mln vs 244.3 mln\n    NOTE:1986 net includes extraordinary gain of 10.6 mln dlrs\nfrom tax loss carryforward in year and loss of 198,000 dlrs in\n4th qtr.\n Reuter\n&#3;',0
diff --git a/arff/src/test/resources/weka-data/ReutersGrain-test.arff b/arff/src/test/resources/weka-data/ReutersGrain-test.arff
new file mode 100644
index 0000000..9e48979
--- /dev/null
+++ b/arff/src/test/resources/weka-data/ReutersGrain-test.arff
@@ -0,0 +1,611 @@
+@relation 'Reuters-21578 Grain ModApte Test-weka.filters.unsupervised.attribute.NumericToBinary-weka.filters.unsupervised.instance.RemoveFolds-S0-N5-F1'
+
+@attribute Text string
+@attribute class-att {0,1}
+
+@data
+
+'ASIAN EXPORTERS FEAR DAMAGE FROM U.S.-JAPAN RIFT Mounting trade friction between the\nU.S. And Japan has raised fears among many of Asia\'s exporting\nnations that the row could inflict far-reaching economic\ndamage, businessmen and officials said.\n    They told Reuter correspondents in Asian capitals a U.S.\nMove against Japan might boost protectionist sentiment in the\nU.S. And lead to curbs on American imports of their products.\n    But some exporters said that while the conflict w [...]
+'CHINA DAILY SAYS VERMIN EAT 7-12 PCT GRAIN STOCKS A survey of 19 provinces and seven cities\nshowed vermin consume between seven and 12 pct of China\'s grain\nstocks, the China Daily said.\n    It also said that each year 1.575 mln tonnes, or 25 pct, of\nChina\'s fruit output are left to rot, and 2.1 mln tonnes, or up\nto 30 pct, of its vegetables. The paper blamed the waste on\ninadequate storage and bad preservation methods.\n    It said the government had launched a national programm [...]
+'JAPAN TO REVISE LONG-TERM ENERGY DEMAND DOWNWARDS The Ministry of International Trade and\nIndustry (MITI) will revise its long-term energy supply/demand\noutlook by August to meet a forecast downtrend in Japanese\nenergy demand, ministry officials said.\n    MITI is expected to lower the projection for primary energy\nsupplies in the year 2000 to 550 mln kilolitres (kl) from 600\nmln, they said.\n    The decision follows the emergence of structural changes in\nJapanese industry followi [...]
+'THAI TRADE DEFICIT WIDENS IN FIRST QUARTER Thailand\'s trade deficit widened to 4.5\nbillion baht in the first quarter of 1987 from 2.1 billion a\nyear ago, the Business Economics Department said.\n    It said Janunary/March imports rose to 65.1 billion baht\nfrom 58.7 billion. Thailand\'s improved business climate this\nyear resulted in a 27 pct increase in imports of raw materials\nand semi-finished products.\n    The country\'s oil import bill, however, fell 23 pct in the\nfirst quar [...]
+'INDONESIA SEES CPO PRICE RISING SHARPLY Indonesia expects crude palm oil (CPO)\nprices to rise sharply to between 450 and 550 dlrs a tonne FOB\nsometime this year because of better European demand and a fall\nin Malaysian output, Hasrul Harahap, junior minister for tree\ncrops, told Indonesian reporters.\n    Prices of Malaysian and Sumatran CPO are now around 332\ndlrs a tonne CIF for delivery in Rotterdam, traders said.\n    Harahap said Indonesia would maintain its exports, despite\n [...]
+'AUSTRALIAN FOREIGN SHIP BAN ENDS BUT NSW PORTS HIT Tug crews in New South Wales (NSW),\nVictoria and Western Australia yesterday lifted their ban on\nforeign-flag ships carrying containers but NSW ports are still\nbeing disrupted by a separate dispute, shipping sources said.\n    The ban, imposed a week ago over a pay claim, had prevented\nthe movement in or out of port of nearly 20 vessels, they said.\n    The pay dispute went before a hearing of the Arbitration\nCommission today.\n    [...]
+'INDONESIAN COMMODITY EXCHANGE MAY EXPAND The Indonesian Commodity Exchange is\nlikely to start trading in at least one new commodity, and\npossibly two, during calendar 1987, exchange chairman Paian\nNainggolan said.\n    He told Reuters in a telephone interview that trading in\npalm oil, sawn timber, pepper or tobacco was being considered.\n    Trading in either crude palm oil (CPO) or refined palm oil\nmay also be introduced. But he said the question was still\nbeing considered by Tra [...]
+'SRI LANKA GETS USDA APPROVAL FOR WHEAT PRICE Food Department officials said the U.S.\nDepartment of Agriculture approved the Continental Grain Co\nsale of 52,500 tonnes of soft wheat at 89 U.S. Dlrs a tonne C\nand F from Pacific Northwest to Colombo.\n    They said the shipment was for April 8 to 20 delivery.\n REUTER\n&#3;',1
+'WESTERN MINING TO OPEN NEW GOLD MINE IN AUSTRALIA Western Mining Corp Holdings Ltd\n&lt;WMNG.S> (WMC) said it will establish a new joint venture gold\nmine in the Northern Territory at a cost of about 21 mln dlrs.\n    The mine, to be known as the Goodall project, will be owned\n60 pct by WMC and 40 pct by a local W.R. Grace and Co &lt;GRA>\nunit. It is located 30 kms east of the Adelaide River at Mt.\nBundey, WMC said in a statement\n    It said the open-pit mine, with a conventional l [...]
+'SUMITOMO BANK AIMS AT QUICK RECOVERY FROM MERGER Sumitomo Bank Ltd &lt;SUMI.T> is certain to\nlose its status as Japan\'s most profitable bank as a result of\nits merger with the Heiwa Sogo Bank, financial analysts said.\n    Osaka-based Sumitomo, with desposits of around 23.9\ntrillion yen, merged with Heiwa Sogo, a small, struggling bank\nwith an estimated 1.29 billion dlrs in unrecoverable loans, in\nOctober.\n    But despite the link-up, Sumitomo President Koh Komatsu\ntold Reuters  [...]
+'SUBROTO SAYS INDONESIA SUPPORTS TIN PACT EXTENSION Mines and Energy Minister Subroto\nconfirmed Indonesian support for an extension of the sixth\nInternational Tin Agreement (ITA), but said a new pact was not\nnecessary.\n    Asked by Reuters to clarify his statement on Monday in\nwhich he said the pact should be allowed to lapse, Subroto said\nIndonesia was ready to back extension of the ITA.\n    \"We can support extension of the sixth agreement,\" he said.\n\"But a seventh accord we  [...]
+'BUNDESBANK ALLOCATES 6.1 BILLION MARKS IN TENDER The Bundesbank accepted bids for 6.1\nbillion marks at today\'s tender for a 28-day securities\nrepurchase pact at a fixed rate of 3.80 pct, a central bank\nspokesman said.\n    Banks, which bid for a total 12.2 billion marks liquidity,\nwill be credited with the funds allocated today and must buy\nback securities pledged on May 6.\n    Some 14.9 billion marks will drain from the market today as\nan earlier pact expires, so the Bundesbank [...]
+'BOND CORP STILL CONSIDERING ATLAS MINING BAIL-OUT Bond Corp Holdings Ltd &lt;BONA.S> and Atlas\nConsolidated Mining and Development Corp &lt;ATLC.MN> are still\nholding talks on a bail-out package for the troubled mining\nfirm, an Atlas statement said.\n    Atlas, the Philippines\' biggest copper producer, said it\nhad been hit by depressed world copper prices. It reported a\nnet loss of 976.38 mln pesos in the year ending December 1986,\ncompared with a net loss of 1.53 billion in 1985 [...]
+'CHINA INDUSTRIAL OUTPUT RISES IN FIRST QUARTER China\'s industrial output rose 14.1 pct\nin the first quarter of 1987 against the same 1986 period, the\nPeople\'s Daily said.\n    Its overseas edition said the growth rate, which compares\nwith a target of seven pct for the whole of 1987, was \"rather\nhigh\" but the base in the first quarter of 1986 was on the low\nside. Industrial output grew 4.4 pct in the first quarter of\n1986.\n    It said China\'s industrial production this year h [...]
+'JAPAN MINISTRY SAYS OPEN FARM TRADE WOULD HIT U.S. Japan\'s Agriculture Ministry, angered by\nU.S. Demands that Japan open its farm products market, will\ntell U.S. Officials at talks later this month that\nliberalisation would harm existing U.S. Farm exports to Japan,\na senior ministry official said.\n    \"Imports from the U.S. Would drop due to active sales drives\nby other suppliers,\" the official, who declined to be named,\nsaid. \"Japan is the largest customer for U.S. Farm prod [...]
+'AMATIL PROPOSES TWO-FOR-FIVE BONUS SHARE ISSUE Amatil Ltd &lt;AMAA.S> said it proposes to\nmake a two-for-five bonus issue out of its revaluation reserve\nto shareholders registered May 26.\n    Shareholders will be asked to approve the issue and an\nincrease in authorised capital to 175 mln shares from 125 mln\nat a general meeting on May 1, it said in a statement.\n    The new shares will rank for dividends declared after\nOctober 31. Amatil, in which B.A.T. Industries Plc &lt;BTI.L>\ [...]
+'BOWATER 1986 PRETAX PROFITS RISE 15.6 MLN STG Shr 27.7p vs 20.7p\n    Div 6.0p vs 5.5p making 10.0p vs 9.25p\n    Turnover 1.34 billion stg vs 1.29 billion\n    Pretax profit 48.0 mln vs 32.4 mln\n    Tax 14.4 mln vs 6.9 mln\n    Company name is Bowater Industries Plc &lt;BWTR.L>\n    Trading profit 63.4 mln vs 45.1 mln\n    Trading profit includes -\n    Packaging and associated products 23.2 mln vs 14.2 mln\n    Merchanting and services 18.4 mln vs 9.6 mln\n    Tissue and timber produ [...]
+'U.K. MONEY MARKET DEFICIT FORECAST AT 250 MLN STG The Bank of England said it forecast a\nshortage of around 250 mln stg in the money market today.\n    Among the main factors affecting liquidity, bills maturing\nin official hands and the take-up of treasury bills will drain\nsome 505 mln stg, while bills for repurchase by the market will\nremove around 194 mln. In addition, a rise in note circulation\nand bankers\' balances below target will each drain around 110\nmln stg.\n    Partly  [...]
+'SOUTH KOREA MOVES TO SLOW GROWTH OF TRADE SURPLUS South Korea\'s trade surplus is growing too\nfast and the government has started taking steps to slow it\ndown, Deputy Prime Minister Kim Mahn-je said.\n    He told a press conference the government planned to\nincrease investment, speed up the opening of the local market\nto foreign imports and gradually adjust its currency to hold\nthe surplus \"at a proper level.\"\n    But he said the government would not allow the won to\nappreciate [...]
+'FINNS AND CANADIANS TO STUDY MTBE PRODUCTION PLANT Finland\'s national oil company Neste Oy\n&lt;NEOY.HE> said in a statement it had agreed with Canadian firms\nto study the feasibility of building a plant in Edmonton,\nCanada, to produce a replacement for lead in petrol.\n    The prospective plant would cost an estimated 270 mln\nCanadian dlrs and would produce methyl tertiary butyl ether\n(MTBE) from raw materials available locally, it said.\n    The partners in the study are Neste Oy [...]
+'CRA SOLD FORREST GOLD FOR 76 MLN DLRS - WHIM CREEK &lt;Whim Creek Consolidated NL> said the\nconsortium it is leading will pay 76.55 mln dlrs for the\nacquisition of CRA Ltd\'s &lt;CRAA.S> &lt;Forrest Gold Pty Ltd> unit,\nreported yesterday.\n    CRA and Whim Creek did not disclose the price yesterday.\n    Whim Creek will hold 44 pct of the consortium, while\n&lt;Austwhim Resources NL> will hold 27 pct and &lt;Croesus Mining\nNL> 29 pct, it said in a statement.\n    As reported, Forres [...]
+'GERMAN INDUSTRIAL EMPLOYMENT SEEN STAGNATING The number of workers employed in\nthe West German industrial sector stagnated in the last quarter\nof 1986 as a 50,000 increase in overall employment benefited\nonly the services branch, the DIW economic institute said.\n    A DIW report added the general downturn in the economy\nsince last Autumn had had a negative effect on the willingness\nof firms to take on workers. It referred to a marked downturn\nin the number of workers taken on in  [...]
+'BOWATER INDUSTRIES PROFIT EXCEED EXPECTATIONS Bowater Industries Plc &lt;BWTR.L> 1986\npretax profits of 48.0 mln stg exceeded market expectations of\naround 40 mln and pushed the company\'s shares up sharply to a\nhigh of 491p from 468p last night, dealers said.\n    The shares later eased back to 481p. Bowater reported a\n32.4 mln stg profit in 1985.\n    The company said in a statement accompanying the results\nthat the underlying trend showed improvement and it intended to\nexpand f [...]
+'CITIBANK NORWAY UNIT LOSES SIX MLN CROWNS IN 1986 Citibank A/S &lt;CCI.N>, the Norwegian\nsubsidiary of the U.S.-based bank, said it made a net loss of\njust over six mln crowns in 1986 -- although foreign bankers\nsaid they expect it to show 1987 profits after two lean years.\n    Citibank\'s Oslo treasury head Bjoern Sejerstad told\nReuters, Citibank, one of seven foreign bank subsidiaries\noperating in Norway, lost money because of restructuring for\ninvestment banking away from comm [...]
+'VIEILLE MONTAGNE SAYS 1986 CONDITIONS UNFAVOURABLE A sharp fall in the dollar price of\nzinc and the depreciation of the U.S. Currency created\nunfavourable economic conditions for Vieille Montagne SA\n&lt;VMNB.BR> in 1986.\n    It said in a statement that the two factors led to a\nsqueeze on refining margins and an 18.24 pct fall in sales and\nservices income despite an unchanged level of activity.\n    Vieille Montagne, which is actively pursuing a\nrestructuring program, reported a 1 [...]
+'VIEILLE MONTAGNE REPORTS LOSS, DIVIDEND NIL 1986 Year\n    Net loss after exceptional charges 198 mln francs vs profit\n    250 mln\n    Exceptional provisions for closure of Viviez electrolysis\n    Plant 187 mln francs vs exceptional gain 22 mln\n    Sales and services 16.51 billion francs vs 20.20 billion\n    Proposed net dividend on ordinary shares nil vs 110 francs\n    Company\'s full name is Vieille Montagne SA &lt;VMNB.BR>.\n REUTER\n&#3;',0
+'EC MAINLY FOR TIN EXTENSION, NO U.K. STAND TAKEN European Community (EC) members of the\nInternational Tin Council, except Britain, have said they are\nprepared to back an extension of the International Tin\nAgreement, an EC spokesman said.\n    He said at a meeting of EC states\' representatives here\nyesterday, Britain undertook to communicate its own decision to\nits partners today. It said it was not ready yesterday to take\na stand but did not say why.\n    He added nine other EC s [...]
+'JAPAN GIVEN LITTLE HOPE OF AVOIDING U.S. SANCTIONS A top U.S. Official said Japan has little\nchance of convincing the U.S. To drop threatened trade\nsanctions, despite the efforts of a Japanese team that left for\nWashington today.\n    Michael Armacost, Under Secretary of State for Political\nAffairs, was asked at a press conference whether Japan\'s moves\nto boost its domestic economy and open its markets could\npersuade the U.S. Not to impose tariffs on Japanese imports\nsaid, and r [...]
+'THAI ZINC EXPORTS FALL IN MARCH Thai zinc ingot exports fell to 882\ntonnes in March from 1,764 in February and 3,008 in March 1986,\nthe Mineral Resources Department said.\n    A spokesman for Padaeng Industry Co Ltd, the country\'s sole\nexporter, attributed the decline to the company\'s lower stocks,\nwhich averaged 5,000 tonnes in the first quarter against 16,000\ntonnes in late 1985 when it began exporting.\n    The department said major buyers included China, Japan, the\nPhilippin [...]
+'EC SUGAR TENDER HARD TO PREDICT - LONDON TRADE The outcome of today\'s European Community\n(EC) white sugar tender is extremely difficult to predict after\nlast week\'s substantial award of 102,350 tonnes at the highest\never rebate of 46.864 European currency units (Ecus) per 100\nkilos, traders said.\n    Some said they believed the tonnage would probably be\nsmaller, at around 60,000 tonnes, but declined to give a view\non the likely restitution. Last week, the European Commission\na [...]
+'NORTH YEMEN CALLS SUGAR BUYING TENDER - TRADE North Yemen has called a buying tender\nfor Saturday for the purchase of 30,000 tonnes of white sugar\nfor arrival in June, traders said.\n REUTER\n&#3;',0
+'ANHEUSER-BUSCH JOINS BID FOR SAN MIGUEL Anheuser-Busch Companies Inc &lt;BUD.N> has\njoined several other foreign bidders for sequestered shares of\nthe Philippines\' largest food and beverage maker San Miguel\nCorp &lt;SANM.MN>, the head of a government panel which controls\nthe shares told Reuters.\n    Ramon Diaz, Secretary of the Presidential Commission on\nGood Government (PCGG), said Anheuser-Busch had told the\ngovernment it was interested in buying 14 mln \"B\" shares of San\nMi [...]
+'ECONOMIC SPOTLIGHT - AUSTRALIAN MARKETS BOOMING Australian markets are booming as foreign\nfund managers redirect capital away from the United States and\nother traditional markets, analysts said.\n    High short-term interest rates, a bullish stock market and\nan increasingly stable currency reflect a massive inflow of\nfresh funds in the last two months, largely from Japanese and\nU.S. Investors, analysts polled by Reuters said.\n    Fund managers want quality markets to park their ca [...]
+'ECONOMIC SPOTLIGHT - KUWAITI ECONOMY Kuwait\'s oil-reliant and debt-ridden\neconomy has started to pull out of a nosedive but oil prices\nwill determine the pace of recovery, bankers and economists\nsay.\n    Crucial will be the ability of the 13-member OPEC to hold\noil prices around a new benchmark of 18 dlrs a barrel in the\nnorthern hemisphere summer when demand usually slackens.\n    Bankers estimate the economy, measured in terms of gross\ndomestic product (gdp), shrank 19 pct in  [...]
+'MALAYSIA MAY NOT MEET 1987 OIL PALM TARGET Malaysia is unlikely to meet its\ntargeted output of five mln tonnes of oil palm in calendar\n1987, oil palm growers told Reuters.\n    Output in 1987 is expected to reach around 4.5 mln tonnes,\nunchanged from 1986, because of drought, low use of fertiliser\nand overstressed palms, they said.\n    The growers were asked for their reaction to an Oil World\nnewsletter report that Malaysia\'s oil palm output is likely to\ndrop sharply this year.\ [...]
+'JARDINE MATHESON SAID IT SETS TWO-FOR-FIVE BONUS ISSUE REPLACING \"B\" SHARES\n ',0
+'MONIER SAYS BRITAIN\'S REDLAND MAY BID FOR IT Diversified building materials group\nMonier Ltd &lt;MNRA.S> said talks are taking place which may lead\nto Britain\'s Redland Plc &lt;RDLD.L> making an offer for the\nMonier shares it does not already hold, chairman Bill Locke\nsaid.\n    Redland already holds about 49 pct of Monier\'s 156.28 mln\nissued shares, he said in a brief notice to the Australian\nStock Exchange.\n    Locke said shareholders would be advised as soon as the\ndiscuss [...]
+'ISUZU PLANS NO INTERIM DIVIDEND Isuzu Motor Ltd &lt;ISUM.T> will pay no\ndividend for the first half year ending April 30, 1987, as the\ncompany is expected to mark a 12 billion yen parent company\ncurrent loss in the first half due to slow exports caused by\nthe yen\'s appreciation, a company spokesman said.\n    The company has paid no dividend since the year ended\nOctober 31, 1983, when it paid five yen.\n    It had a 4.44 billion yen current profit in the first half\nof 1985/86.\n  [...]
+'JAPANESE OFFICIAL TAKES DATA TO MICROCHIP TALKS Ministry of International Trade and\nIndustry (MITI) Vice Minister Makoto Kuroda leaves for\nWashington today with data he hopes will refute U.S. Charges\nJapan has violated a pact on microchip trade.\n    A three-man Japanese trade team is already in Washington\nlaying the groundwork for talks between Kuroda and Deputy U.S.\nTrade Representative Michael Smith aimed at persuading the U.S.\nNot to impose tariffs on certain Japanese products [...]
+'BELL GROUP CONFIRMS STANDARD CHARTERED STAKE The Bell Group Ltd &lt;BLLA.S> said it now\nholds 14.9 pct of the issued capital of Standard Chartered Plc\n&lt;STCH.L> after acquiring further shares.\n    The one-sentence statement from Bell\'s headquarters\nconfirmed what its brokers Warburg Securities told Reuters in\nLondon yesterday.\n    Bell previously held 10 pct of Standard.\n    Bell chairman Robert Holmes a Court, who is also a director\nof Standard, was not available for comment [...]
+'NIPPON STEEL DENIES CHINA SEEKING JAPANESE PLANTS Nippon Steel Corp &lt;NSTC.T> denied local\nnewspaper reports that China has been seeking to buy steel\nplants from Japanese firms which plan to suspend output under\nthe recently announced rationalisation program.\n    The Mainichi Shimbun quoted Nippon Steel as saying that\nChina\'s State Planning Commission and some Chinese firms have\nasked Japanese makers to sell them steel works and rolling\nmills to expand steelmaking cheaply. It  [...]
+'JARDINE MATHESON REPLACES \"B\" SHARE BY BONUS ISSUE Jardine Matheson Holdings Ltd\n&lt;JARD.HK> said it will withdraw the previously announced\nfour-for-one bonus issue of \"B\" shares and replace it by a\ntwo-for-five bonus issue of ordinary shares.\n    A statement said the firm expects to pay total dividends\nfor 1987 of not less than 40 cents a share on the expanded\ncapital.\n    Jardine Matheson decided to withdraw its issue because of a\njoint announcement earlier today by Ronal [...]
+'JAPAN GIVEN LITTLE HOPE OF AVOIDING U.S. SANCTIONS A top U.S. Official said Japan has little\nchance of persuading the U.S. to drop threatened trade\nsanctions, despite the efforts of a Japanese team that left for\nWashington today.\n    Michael Armacost, Under Secretary of State for Political\nAffairs, was asked at a press conference whether Japan\'s moves\nto boost its domestic economy and open its markets could\npersuade the U.S. Not to impose tariffs on Japanese imports\nsaid, and r [...]
+'BANK OF JAPAN INTERVENES SOON AFTER TOKYO OPENING The Bank of Japan bought a small amount of\ndollars shortly after the opening at around 145.30 yen, dealers\nsaid.\n    The central bank intervened as a medium-sized trading house\nsold dollars, putting pressure on the U.S. Currency, they said.\n    The dollar was also supported by a major electrical\nconsumer goods company, which was a speculative dollar buyer at\naround 145.25 yen, they added.\n    The dollar opened at 145.33 yen again [...]
+'INDONESIAN INFLATION RATE 8.8 PCT IN 1986/87 Inflation was by 8.8 pct in Indonesia\nduring fiscal 1986/87 to March 31, compared to 5.66 pct the\nprevious year, Information Minister Harmoko said after a\ncabinet session to discuss the economic situation.\n REUTER\n&#3;',0
+'U.K. MONEY MARKET GIVEN 53 MLN STG ASSISTANCE The Bank of England said it provided the\nmoney market with 53 mln stg assistance in the morning session.\n    This compares with the bank\'s estimate of a shortage in the\nsystem of around 300 mln stg which it earlier revised up from\n250 mln.\n    The central bank made outright purchases of bank bills\ncomprising 46 mln stg in band three at 9-3/4 pct and seven mln\nstg in band four at 9-11/16 pct.\n REUTER\n&#3;',0
+'SAN MIGUEL DEAL HIT BY MORE LAWSUITS A bid by San Miguel Corp (SMC) &lt;SANM.MN>\nto buy back 38.1 mln sequestered shares from United Coconut\nPlanters Bank (UCPB) has been hit by two new lawsuits, sources\nin the Philippine food and brewery company said.\n    A Manila court yesterday issued an injunction barring UCPB\nfrom selling the shares, which represent 31 pct of SMC\'s\noutstanding capital stock of 121 mln shares, until hearings on\nApril 21 on a petition filed by Eduardo Cojuang [...]
+'RAIN BOOSTS CENTRAL QUEENSLAND SUGAR CANE CROP Good rains of one to four inches in the\npast 10 days have boosted moisture-stressed sugar cane crops in\nthe Mackay-Burdekin region of Queensland\'s central coast, an\nAustralian Sugar Producers\' Association spokesman said.\n    As previously reported, the region has been undergoing a\nsevere dry spell, partly relieved by scattered rainfall, since\nDecember, following the virtual failure of the summer wet\nseason.\n    Mills in the area h [...]
+'FRENCH TRADERS FORECAST EC SUGAR TENDER The European Community (EC) is expected to\naward export licences at today\'s weekly tender for above 60,000\nand possibly up to 100,000 tonnes of white sugar after last\nweek\'s award for 102,350 tonnes, traders here said.\n    They expected a maximum rebate of between 46.40 and 46.50\nEcus per 100 kilos, compared to last week\'s 46.864.\n    Earlier, traders in London said the outcome of the tender\nwas very hard to predict after last week\'s su [...]
+'ITALY\'S LA FONDIARIA TO REPORT HIGHER 1986 PROFITS Italian insurer La Fondiaria Spa &lt;LFDI.MI>\nsaid it expects to report consolidated group profit in 1986\nsignificantly higher than the 60 billion lire reported in 1985.\n    The company said in a statement that parent company net\nprofit last year will rise from the 72 billion lire reported in\n1985. Consolidated group premiums totaled 1,700 billion lire in\n1986 compared with 1,490 billion the previous year.\n    Iniziativa Meta &l [...]
+'NICKEL PRICES UNLIKELY TO RISE MUCH - SHEARSON Nickel prices are unlikely to rise\nsignificantly from current levels unless further steps are\ntaken to reduce production, Shearson Lehman Brothers said in\nits quarterly nickel market report.\n    The market had recovered slightly to around 1.72 dlrs a lb\nyesterday from its four year low of 1.55 dlrs in early January,\ndue to the absence of Soviet nickel cathode deliveries, but\nShearson sees Soviet shipments soon returning to last year\ [...]
+'HIGHER 1986 PROFIT FOR DUTCH CHEMICAL FIRM DSM The fully state-owned Dutch\nchemical firm NV DSM &lt;DSMN.AS> said its 1986 net profit rose to\n412 mln guilders from 402 mln in 1985, while turnover fell to\n17.7 billion guilders in 1986 from 24.1 billion in 1985.\n    The company said 1986 dividend, which will be paid to the\nDutch state in its capacity of the firm\'s sole shareholder,\nwould be raised to 98 mln guilders from 70 mln guilders in\n1985.\n    In an initial comment on its 1 [...]
+'POEHL WARNS AGAINST FURTHER DOLLAR FALL Bundesbank President Karl Otto Poehl\nsaid a weaker dollar would be risky and a further appreciation\nof the mark would damage prospects for sustained West German\neconomic growth.\n    In a speech to the Institute of Contempory German Affairs\nhere, Poehl said \"It would be an extremely risky policy to aim\nfor a further substantial decline in the value of the dollar to\ncorrect the trade deficit.\"\n    He said the United States could face a vic [...]
+'CINCINNATI BELL &lt;CSN> STARTS AUXTON &lt;AUXT> BID Cincinnati Bell Inc said it has started\nits previously-announced 15.75 dlr per share tender offer for\nall shares of Auxton Computer Enterprises Inc.\n    In a newspaper advertisement, the company said the tender\nand withdrawal rights will expire May Five unless extended. The\noffer, which has been approved by the Auxton board and is to be\nfollowed by a merger at the same price, is conditioned on\nreceipt of a majority of Auxton\'s [...]
+'CALIFORNIA BIOTECH &lt;CBIO> SEES 1ST QTR LOSS California Biotechnology\nInc said it expects to report a loss of 1,300,000 dlrs to\n1,600,000 dlrs for the first quarter due to increased\ninvestment in research and manufacturing and a scaleup of\nproduction.\n    The company said research spending is running 50 to 60 pct\nabove a year ago as it tries to commercialize its products as\nquickly as possible, and increased expenditures are expected to\ncontinue for several more quarters.  It  [...]
+'PALL CORP &lt;PLL> SETS QUARTERLY DIVIDEND Qtly div 8-1/2 cts vs 8-1/2 cts prior\n    Pay May One\n    Record April 20\n Reuter\n&#3;',0
+'UNILEVER SEEKS BUYER FOR STAUFFER CHEMICAL Unilever Plc and NV &lt;UN.AS> has issued a\nprospectus through investment bankers Goldman Sachs and Co\nseeking a buyer for &lt;Stauffer Chemical Co> of the U.S., Which\nit acquired with the recent takeover of &lt;Chesebrough-Pond\'s\nInc>, a Unilever spokesman said.\n    He noted Unilever has been indicating plans to dispose of\nStauffer, plus some smaller assets of Chesebrough, since the\nbid was made in December.\n    The Stauffer sale pros [...]
+'CONRAC CORP SAID IT HAS ENTERED TALKS ON ITS ACQUISITION WITH SEVERAL PARTIES\n ',0
+'CONRAC &lt;CAX> IN MERGER TALKS WITH SEVERAL Conrac Corp sait has started\nnegotiations with several interested parties on its possible\nacquisition.\n    It said there can be no assurance that any transaction will\nresult from the talks.  It gave no further details.\n    Mark IV Industries Inc &lt;IV> started tendering for all\nConrac shares at 25 dlrs each on March 24 and owned 9.9 pct of\nConrac before starting the bid.\n    Conrac is a producer and marketer of computer-related\ninfo [...]
+'JAPAN\'S LDP URGES MORE IMPORTS OF 12 FARM ITEMS The ruling Liberal Democratic Party (LDP)\nhas proposed expanding imports of 12 farm products named in a\nU.S. Complaint against Japan to the General Agreement on\nTariffs and Trade last year, an LDP official said.\n    The products include fruit juices, purees and pulp, some\ntomato products, peanuts, prepared beef products and beans.\n    The proposal will be used as the basis for a more detailed\nLDP economic package to cut the trade s [...]
+'COMPUTER RESEARCH INC &lt;CORE> 2ND QTR FEB 28 NET Shr 14 cts vs nine cts\n    Net 217,572 vs 153,454\n    Revs 2,530,273 vs 2,558,924\n    1st half\n    Shr 19 cts vs 11 cts\n    Net 299,838 vs 174,739\n    Revs 4,865,249 vs 4,495,021\n Reuter\n&#3;',0
+'AUSTRALIAN FOREIGN SHIP BAN ENDS Tug crews in New South Wales (NSW),\nVictoria and Western Australia yesterday lifted their ban on\nforeign-flag ships carrying containers but NSW ports are still\nbeing disrupted by a separate dispute, shipping sources said.\n    The ban, imposed a week ago over a pay claim, had prevented\nthe movement in or out of port of nearly 20 vessels, they said.\nThe pay dispute went before a hearing of the Arbitration\nCommission today.\n    Meanwhile, disruption [...]
+'RUBBERMAID INC 1ST QTR SHR 28 CTS VS 22 CTS\n ',0
+'INDEPENDENT CHAIRMAN FOR DUTCH CARGO DISPUTE The two sides in the Rotterdam port\ngeneral cargo dispute have agreed to appoint an independent\nchairman, Han Lammers, to preside over future meetings,\nemployers\' spokesman Gerard Zeebregts said.\n    Lammers, Queen\'s Commissioner for the province of\nFlevoland, will not act as a mediator but will draw up an\nagenda and procedures for meetings between the employers and\nunions on a work-practice agreement and proposed redundancies.\n     [...]
+'ELECTRO RENT CORP &lt;ELRC> 3RD QTR FEB 28 NET Shr 20 cts vs 32 cts\n    Net 1,358,000 vs 2,476,000\n    Revs 27.1 mln vs 26.2 mln\n    Avg shrs 6,852,000 vs 7,764,000\n    Nine mths\n    Shr 68 cts vs 1.05 dlrs\n    Net 4,957,000 vs 8,129,000\n    Revs 82.6 mln vs 78.8 mln\n    Avg shrs 7,316,000 vs 7,754,000\n Reuter\n&#3;',0
+'RUBBERMAID INC &lt;RBD> 1ST QTR NET Shr 28 cts vs 22 cts\n    Net 20.6 mln vs 16.1 mln\n    Sales 238.0 mln vs 188.8 mln\n Reuter\n&#3;',0
+'WTC INTERNATIONAL INC &lt;WAF> 4TH QTR FEB 28 NET Shr profit 13 cts vs loss 33 cts\n    Net profit 1,149,000 vs loss 2,833,000\n    Rev 51.8 mln vs 47.8 mln\n    Year\n    Shr profit 24 cts vs loss 18 cts\n    Net profit 2,050,000 vs loss 1,551,000\n    Rev 200.6 mln vs 180.1 mln\n Reuter\n&#3;',0
+'U.K. MONEY MARKET GIVEN FURTHER 166 MLN STG HELP The Bank of England said it provided the\nmarket with further help totalling 166 mln stg during the\nafternoon.\n    In band one, it bought 31 mln stg of treasury bills and\nthree mln stg of bank bills at 9-7/8 pct, while in band two it\nbought 69 mln stg of bank bills at 9-13/16 pct. In addition, it\nbought 63 mln stg of band three bank bills at 9-3/4 pct.\n    This brings the total assistance by the Bank so far today\nto 219 mln stg aga [...]
+'MEAD CORP 1ST QTR OPER SHR 1.09 DLRS VS 67 CTS\n ',0
+'RUBBERMAID &lt;RBD> SEES CONTINUED IMPROVEMENT Rubbermaid Inc said its incoming\norder rates continue strong and it expects to continue\nrecording favorable year to year comparisons in each remaining\nquarter of 1987.\n    Today the company reported first quarter earnings of 20.6\nmln dlrs on sales of 238.0 mln dlrs, up from earnings of 16.1\nmln dlrs on sales of 188.8 mln dlrs.\n Reuter\n&#3;',0
+'CAYUGA SAVINGS BANK &lt;CAYB> 1ST QTR NET Shr 55 cts vs 41 cts\n    Net 494,000 vs 204,000\n    Avg shrs 896,655 vs 494,155\n Reuter\n&#3;',0
+'JOHNSTOWN SAVINGS BANK FSB &lt;JSBK> 1ST QTR NET Shr 33 cts vs not given\n    Net 642,484 vs 362,883\n    NOTE: Company went public in October 1986.\n    Net includes pretax loan loss provisions of 90,000 dlrs vs\n56,250 dlrs and gain on sale of securities of 113,432 dlrs vs\n88,946 dlrs.\n Reuter\n&#3;',0
+'HOME SAVINGS AND LOAN ASSOCIATION INC &lt;HSLD> 2nd qtr March 31\n    Shr 57 cts vs not given\n    Net 790,874 vs 628,020\n    1st half\n    Shr 1.15 dlrs vs not given\n    Net 1,588,985 vs 1,073,163\n    NOTE: Company recently went public.\n Reuter\n&#3;',0
+'GEODYNAMICS CORP &lt;GDYN> 3RD QTR FEB 27 NET Shr 21 cts vs 20 cts\n    Net 596,000 vs 594,000\n    Revs 8,693,000 vs 8,164,000\n    Nine mths\n    Shr 61 cts vs 58 cts\n    Net 1,784,000 vs 1,653,000\n    Revs 26.3 mln vs 23.0 mln\n Reuter\n&#3;',0
+'SWEDISH UNEMPLOYMENT STEADY IN MARCH Swedish unemployment was steady at 2.2\npct of the workforce in March compared with the previous month,\nthe Central Bureau of Statistics said.\n    In March 1986, the figure stood at 2.4 pct.\n REUTER\n&#3;',0
+'COMPAQ &lt;CPQ> EXPECTS HIGHER FIRST QUARTER NET Compaq Computer Corp said it expects\nsales and earnings for the first quarter of 1987 to be higher\nthan analysts expectations due to strong demand for its\nproducts.\n    Rod Canion, president and chief executive officer of\nCompaq, said he expects sales of over 200 mln dlrs for the\nperiod ending March 31, above analysts\' estimates of 165-185\nmln dlrs. He added that earnings per share would exceed\nanalysts estimates of as high as 42 [...]
+'I.U. INTERNATIONAL &lt;IU> TO SELL INSURANCE UNITS I.U. International Co said it\nreached a preliminary agreement to sell the Hawaiian Insurance\nCos to Hawaiian Electric Industries Inc. &lt;HE>.\n    Terms of the transaction were not disclosed, the company\nsaid.\n    The transaction is subject to the execution of definitive\nagreements, certain governmental approvals and approvals by the\nboards of directors involved, I.U. International said.\n    Hawaiian Electric said the planned pu [...]
+'CXR TELCOM CORP &lt;CXRL> 3RD QTR MARCH 31 NET Shr nil vs nil\n    Net 215,000 vs 16,000\n    Revs 2,800,000 vs 1,100,000\n    Nine mths\n    Shr one ct vs nil\n    Net 620,000 vs 231,000\n    Revs 8,100,000 vs 2,100,000\n Reuter\n&#3;',0
+'PROXMIRE OUTLINES INSIDER TRADING LEGISLATION Senate Banking Committee Chairman\nWilliam Proxmire (D-Wis) said he planned to introduce\nlegislation shortly to require greater public disclosure of\ncorporate takeovers and fairer treatment for all shareholders.\n    Speaking to the National Association of Manufacturers,\nProxmire said recent insider trading stock scandals increased\nthe chance that Congress will act to curb abuses.\n    \"We are proposing legislation that would provide fo [...]
+'HELEN OF TROY CORP &lt;HELE> 4TH QTR FEB 28 NET Shr 17 cts vs 13 cts\n    Net 598,000 vs 392,000\n    Sales 10.2 mln vs 7,474,000\n    Avg shrs 3,432,000 vs 3,045,000\n    Year\n    Oper shr profit 1.05 dlrs vs loss 47 cts\n    Oper net profit 3,498,000 vs loss 1,427,000\n    Sales 52.2 mln vs 40.8 mln\n    Avg shrs 3,320,000 vs 3,060,000\n    NOTE: Latest year net excludes 782,000 dlr tax credit.\n Reuter\n&#3;',0
+'BANKERS TRUST &lt;BT> PUTS BRAZIL ON NON-ACCRUAL Bankers Trust New York Corp said it has\nplaced its approximately 540 mln dlrs of medium- and long-term\nloans to Brazil on non-accrual status and that first-quarter\nnet income will be reduced by about seven mln dlrs as a result.\n    Brazil suspended interest payments on its 68 billion dlrs\nof medium- and long-term debt on February 22.\n    U.S. banking regulations do not require banks to stop\naccruing interest on loans until payments [...]
+'&lt;FIRST MERCANTILE CURRENCY FUND INC> 1ST QTR NET Shr profit 63 cts vs 22 cts\n    Net 775,868 vs 276,446\n    Revs 2,255,742 vs 706,130\n Reuter\n&#3;',0
+' UK INTERVENTION BD SAYS EC SOLD 118,350 TONNES WHITE SUGAR AT REBATE 46.496 ECUS.\n ',0
+'STOLTENBERG SEES MOVES TO STRENGTHEN PARIS ACCORD West German Finance Minister Gerhard\nStoltenberg said today\'s meetings of major industrial countries\nwould look at ways of strengthening the Paris accord on\nstabilizing foreign exchange rates.\n    Stoltenberg told journalists he saw no fundamental weakness\nof the February 22 agreement of the Group of Five countries and\nCanada to keep exchange rates near the then-current levels.\n    But he declined to say what measures would be di [...]
+'U.K. INTERVENTION BOARD DETAILS EC SUGAR SALES A total 118,350 tonnes of current series\nwhite sugar received export rebates of a maximum 46.496\nEuropean Currency Units (Ecus) per 100 kilos at today\'s\nEuropean Community (EC) tender, the U.K. Intervention Board\nsaid.\n    Out of this, traders in the U.K. Received 37,800 tonnes, in\nFrance 34,500, in West Germany 20,000, in Belgium 18,500, in\nSpain 5,800 and in Denmark 1,750 tonnes, it added.\n    Earlier today, London traders had de [...]
+'MEAD &lt;MEA> EXPECTS IMPROVED EARNINGS THIS YEAR Mead Corp said the outlook for its\nmajor paper markets looks strong for the second quarter and\naugurs well for its earnings in 1987.\n    \"The generally strong outlook bodes well for significantly\nimproved earnings this year,\" Burnell Roberts, chairman and\nchief executive officer said.\n    Earlier, the company reported first quarter earnings of\n34.2 mln dlrs, or 1.09 dlrs a share, versus 20.3 mln dlrs, or\n65 cts a share, in last [...]
+'AMERTEK INC &lt;ATEKF> 1ST QTR NET Shr profit 20 cts vs loss three cts\n    Net profit 849,299 vs loss 82,512\n    Revs 7,929,138 vs 3,849,224\n Reuter\n&#3;',0
+'ALEX BROWN INC &lt;ABSB> 1ST QTR MARCH 27 NET Shr primary 78 cts vs 68 cts\n    Shr diluted 75 cts vs 68 cts\n    Qtrly div six cts vs five cts\n    Net 7,929,000 vs 6,569,000\n    Revs 78.7 mln vs 61.9 mln\n    NOTE: Pay date for the qtrly div is April 28 for\nshareholders of record April 20.\n Reuter\n&#3;',0
+'TOWN AND COUNTRY JEWELRY MANUFACTURING &lt;TCJC> 4thh qtr Feb 28\n    Shr 46 cts vs 22 cts\n    Net 2,139,034 vs 854,182\n    Sales 30.8 mln vs 20.6 mln\n    Avg shrs 5,280,854 vs 4,559,646\n    Year\n    Shr 1.34 dlrs vs 1.15 dlrs\n    Net 5,935,117 vs 4,156,171\n    Sales 107.2 mln vs 71.6 mln\n    Avg shrs 5,281,387 vs 3,616,183\n    NOTE: Town and Country Jewelry Manufacturing Corp.\n Reuter\n&#3;',0
+'PAXAR CORP &lt;PAKS> MAKES ACQUISITION Paxar Corp said it has\nacquired Thermo-Print GmbH of Lohn, West Germany, a distributor\nof Paxar products, for undisclosed terms.\n Reuter\n&#3;',0
+'&lt;MARK\'S WORK WEARHOUSE LTD> YEAR JAN 31 NET Shr 10 cts vs 32 cts\n    Net 975,000 vs 3,145,000\n    Sales 159.1 mln vs 147.3 mln\n Reuter\n&#3;',0
+'CANADIAN BASHAW, ERSKINE RESOURCES TO MERGE Canadian Bashaw Leduc Oil and\nGas Ltd said it agreed to merge with Erskine Resources Ltd.\nTerms were not disclosed.\n    Ownership of the combined company with 18.8 pct for the\ncurrent shareholders of Canadian Bashaw and 81.2 pct to the\ncurrent shareholders of Erskine, the companies said.\n Reuter\n&#3;',0
+'ENTOURAGE &lt;ENTG> HAS FIRST QUARTER LOSS Entourage International Inc said it had\na first quarter loss of 104,357 dlrs, after incurring 70,000\ndlrs in costs for an internal audit, a report for shareholders\nand proxy soliciation and 24,000 dlrs in startup expenses for\nopening London offices.\n    The company went public during 1986.\n    Entourage also said it has started marketing a solid\nperfume packaged in a lipstick tube called \"Amadeus,\" retailing\nat 15 dlrs.\n    The compa [...]
+'&lt;MR. JAX FASHIONS INC> YEAR FEB 28 NET Shr 58 cts vs 29 cts\n    Net 3,141,000 vs 1,440,000\n    Sales 24.7 mln vs 13.0 mln\n Reuter\n&#3;',0
+'F.W. WOOLWORTH CO SAYS IT HIKES DIVIDEND TO 33 CTS A SHARE FROM 28 CTS\n ',0
+'F.W. WOOLWORTH CO &lt;Z> HIKES DIVIDEND Qtly div 33 cts vs 28 cts prior\n    Pay June 1\n    Record May 1\n Reuter\n&#3;',0
+'DUTCH SUGAR BEET PLANTING HALF FINISHED Roughly half of this year\'s expected\n130,000 hectare Dutch sugar beet crop is already in the ground,\na spokesman for Suiker Unie, the largest sugar processor in the\nNetherlands, told Reuters.\n    Conditions are generally good and the average sowing date\nfor the crop is expected to be around April 11, against April\n23 last year, and a 10-year average of April 14, the spokesman\nadded.\n    \"It is far too early yet to say what kind of output [...]
+'J.P. MORGAN AND CO INC 1ST QTR SHR 1.22 DLRS VS 1.28 DLRS\n ',0
+'EC COMMISSION DETAILS SUGAR TENDER The EC Commission confirmed it granted\nexport licences for 118,350 tonnes of current series white\nsugar at a maximum export rebate of 46.496 European Currency\nUnits (ECUs) per 100 kilos.\n    Out of this, traders in France received 34,500 tonnes, in\nthe U.K. 37,800, in West-Germany 20,000, in Belgium 18,500, in\nSpain 5,800 and in Denmark 1,750 tonnes.\n REUTER\n&#3;',0
+'VOLKSWAGEN DIVIDEND DECISION DUE TOMORROW Volkswagen AG &lt;VOWG.F>,\nVW, is due to make a formal announcement about its 1986\ndividend tomorrow after saying the 1985 level of 10 marks per\nordinary share would be held, despite massive losses because of\na suspected foreign currency fraud.\n    A spokesman said VW\'s supervisory board will meet tomorrow\nto discuss the payout.  A statement will be made afterwards.\n    VW has also said disclosed profits for 1986 will reach\ntheir 1985 l [...]
+'CITYTRUST BANCORP INC &lt;CITR> 1ST QTR NET Shr 1.40 dlrs vs 1.16 dlrs\n    Net 5,776,000 vs 4,429,000\n    Avg shrs 4,132,828 vs 3,834,117\n Reuter\n&#3;',0
+'SOUTHMARK &lt;SM> ACQUIRES 28 NURSING HOMES Southmark Corp said it acquired 28\nlong-term care facilities containing for approximately 70 mln\ndlrs in cash.\n    It said the facilities, which contain approximately 2,500\nbeds in seven western states, were bought from Don Bybee and\nAssociates, of Salem,Ore.\n    The acquistion brings to 57 health care facilities acquired\nin the last three months, the company said.\n Reuter\n&#3;',0
+'J.P. MORGAN AND CO INC &lt;JPM> 1ST QTR NET shr 1.22 dlrs vs 1.28 dlrs\n    net 226.4 mln vs 233.9 mln\n    assets 80.45 billion vs 70.23 billion\n    loans 35.16 billion vs 35.99 billion\n    deposits 45.22 billion vs 39.68 billion\n    return on assets 1.14 pct vs 1.35 pct\n    return on common equity 18.20 pct vs 22.08 pct\n    NOTE: 1987 qtr net was reduced by 20 mln dlrs because 1.3\nbillion dlrs of loans to Brazil were placed on non-accrual.\n    loan loss provision 35 mln dlrs vs [...]
+'FIRSTBANC CORP OF OHIO &lt;FBOH> 1ST QTR NET Shr 74 cts vs 67 cts\n    Net 8,067,000 vs 7,317,000\n   \n Reuter\n&#3;',0
+'MAYFAIR SUPER MARKETS INC &lt;MYFRA> 2ND QTR NET Qtr ends Feb 28\n    Shr Class A 61 cts vs 48 cts\n    Shr Class B 59 cts vs 46 cts\n    Net 2,358,000 vs 1,876,000\n    Revs 122,508,000 vs 105,871,000\n    Six mths\n    Shr Class A 1.15 dlrs vs 86 cts\n    Shr Class B 1.13 dlrs vs 84 cts\n    Net 4,485,000 vs 3,378,000\n    Revs 242,453,000 vs 210,117,000\n    NOTE: qtr and six mths prior figures reflect two-for-one\nstock split in August 1986.\n Reuter\n&#3;',0
+'HANOVER INSURANCE &lt;HINS> GET SPLIT APPROVAL Hanover Insurance Co said its\nstockholders approved a two-for-one stock split.\n    As a result of the split, Hanover said it increases the\nnumber of authorized shares of capital stock from 10.4 mln,\nhaving a par value of one dlr, to 20.9 mln, also having a par\nvalue of one dlr.\n    The stock split is payable April 30 to stockholders of\nrecord April 10, Hanover said.\n Reuter\n&#3;',0
+'NATIONAL GUARDIAN &lt;NATG> MAKES ACQUISITIONS National Guardian Corp said it\nhas acquired a number of security services companies recently,\nwith aggregate revenues of about 3,500,000 dlrs, for an\naggregate cost of about 2,700,000 dlrs.\n    It said it acquired guard service companies C.S.C. Security\nGaurd Service of Paramus, N.J., from Cartel Security\nConsultants Inc, the Guard Services Division of Security\nServices of America of Wayne, N.J., Capital Investigations and\nProtectiv [...]
+'UNIVERSAL MEDICAL &lt;UMBIZ> DISTRIBUTION SET Qtly distribution 7-1/2 cts vs 7-1/2 cts prior (excluding\n2-1/2 cts special)\n    Pay April 30\n    Record April 22\n    NOTE: Full name is Universal Medical Buildings L.P.\n Reuter\n&#3;',0
+'ZAMBIA DOES NOT PLAN RETAIL MAIZE PRICE HIKE The Zambian government has no immediate\nplans to follow last week\'s increase in the producer price of\nmaize with a hike in the retail price of maize meal, an\nofficial of the ruling party said.\n    Last December, a 120 pct increase in the consumer price for\nrefined maize meal, a Zambian staple, led to food riots in\nwhich at least 15 people died.\n    That price increase, which President Kenneth Kaunda later\nrevoked, followed pressure b [...]
+'WEDGESTONE REALTY &lt;WDG> ACQUISITION APPROVED Wedgestone Realty Investors Trust\nsaid shareholkders have approved the acquisition of its\nadvisor, Wedgestone Advisory Corp, for 600,000 shares.\n    It said completion is expected to take place April 10.\n Reuter\n&#3;',0
+'SUN &lt;SUN> CUTS HEATING OIL BARGE PRICE Sun Co\'s Sun Refining and Marketing Co\nsubsidiary said it is decreasing the price it charges contract\nbarge customers for heating oil in ny harbor by 0.50 cent a\ngallon, effective today.\n    The 0.50 cent a gallon price reduction brings Sun\'s heating\noil contract barge price to 50 cts a gallon, the company said.\n Reuter\n&#3;',0
+'FURTHER ARGENTINE COARSE GRAIN LOSSES FEARED Argentine grain producers adjusted\ntheir yield estimates for the 1986/87 coarse grain crop\ndownward in the week to yesterday after the heavy rains at the\nend of March and beginning of April, trade sources said.\n    They said sunflower, maize and sorghum production estimates\nhad been reduced despite some later warm, dry weather, which\nhas allowed a return to harvesting in some areas.\n    However, as showers fell intermittently after las [...]
+'DUTCH ADJUSTED UNEMPLOYMENT RISES IN MARCH Dutch seasonally adjusted unemployment\nrose in the month to end-March to a total 693,000 from 690,600\nat end-February, but was well down from 730,100 at end-March\n1986, Social Affairs Ministry figures show.\n    The figure for male jobless rose by 2,000 in the month to\n436,500 compared with 470,700 a year earlier. The figure for\nwomen was 256,500 at end-March against 256,100 a month earlier\nand 259,400 at end-March 1986.\n    On an unadju [...]
+' &#2;\nHARTMARX CORP &lt;HMX> BOOSTS DIVIDEND\n    CHICAGO, April 8 \n    Qtly div 25 cts vs 23 cts prior qtr\n    Pay 15 May\n    Record 1 May\n&#3;\n\n',0
+'TOP OFFICIALS ARRIVE AT TREASURY FOR G-5 TALKS Top officials of leading industrial\nnations arrived at the U.S. Treasury main building to begin a\nmeeting of the Group of Five.\n    Officials seen arriving by Reuter correspondents included\nWest German Finance Minister Gerhard Stoltenberg and Bundesbank\nPresident Karl Otto Poehl, French Finance Minister Edouard\nBalladur and his central banker Jacques de Larosiere.\n    Also seen arriving were Japanese Finance Minister Kiichi\nMiyazawa [...]
+'FED EXPECTED TO SET CUSTOMER REPURCHASES The Federal Reserve is expected to\nintervene in the government securities market to supply\ntemporary reserves indirectly via customer repurchase\nagreements, economists said.\n    Economists expect the Fed to execute 2.0-2.5 billion dlrs\nof customer repos to offset pressures from the end of the\ntwo-week bank reserve maintenance period today. Some also look\nfor a permanent reserve injection to offset seasonal pressures\nvia an outright purcha [...]
+'READER\'S DIGEST ASSOCIATION SELLS UNIT &lt;The Reader\'s Digest\nAssociation Inc> said it sold its subsidiary, Source\nTelecomputing Corp, to the venture capital firm of &lt;Welsh,\nCarson, Anderson and Stowe>.\n    The purchase price was not disclosed, Reader\'s Digest said.\n    It said it purchased an 80 pct stake in Source in 1980 and\nearned an unspecified profit on 14 mln dlrs in revenues in\n1986.\n Reuter\n&#3;',0
+'WEIS MARKETS INC &lt;WMK> 1ST QTR MARCH 28 NET Shr 59 cts vs 51 cts\n    Net 18.0 mln vs 15.6 mln\n    Revs 278.6 mln vs 272.2 mln\n Reuter\n&#3;',0
+'CONTINENTAL BANK INITIAL DISTRIBUTION APPROVED Continental Bank of Canada said\nshareholders approved a capital reorganization to allow an\ninitial payout by the end of May to common shareholders from\nlast year\'s 200 mln Canadian dlr sale of most Continental\nassets to &lt;Lloyds Bank PLC>\'s Lloyds Bank Canada.\n    The bank said the initial distribution would take the form\nof a stock dividend of cumulative redeemable retractable class\nA series two preferred shares entitling holder [...]
+'ATLAS CONSOLIDATED MINING AND DEVELOPMENT &lt;ACMB> 4th qtr\n    Shr loss 17 cts vs loss 22 cts\n    Net loss 14.5 mln vs loss 18.0 mln\n    Revs 27.3 mln vs 23.7 mln\n    Year\n    Shr 58 cts vs 1.01 dlrs\n    Net loss 48.3 mln vs loss 84.2 mln\n    Revs 111.7 mln vs 141.9 mln\n    NOTE: Atlas Consolidated Mining and Development Corp of\nManila.\n    Translated from Philippine pesos at 20.3489 pesos to dollar\nvs 18.5571 in quarter and 20.2315 vs 18.2743 in year.\n Reuter\n&#3;',0
+'SCI-MED &lt;SMLS> BOARD AGREES TO BRISTOL&lt;BMY>DEAL Sci-Med Life Systems Inc said\nits directors approved a previously proposed agreement of\nmerger with Bristol-Myers Co.\n    The proposed transaction is subject to completion of a due\ndiligence investigation, including a review by Bristol-Myers of\na patent infringement suit served on Sci-Med by Advanced\nCardiovascular Systems Inc on March 31, 1987.\n    Bristol-Myers has the right to call off the agreement under\ncertain circumsta [...]
+'FIDELCOR &lt;FICR> COMPLETES SALE OF UNIT Fidelcor Inc said it has completed\nthe sale of its Industrial Valley Title Insurance Co subsidiary\nto a group of investors including the unit\'s management for\nundisclosed terms.\n    Industrial Valley has assets of about 37.6 mln dlrs and was\nacquired last year along with IVB Financial Corp.\n Reuter\n&#3;',0
+'DATA TRANSLATION INC &lt;DATX> 1ST QTR FEB 28 NET Shr 18 cts vs 13 cts\n    Net 575,000 vs 379,000\n    Sales 6,625,000 vs 4,537,000\n    Avg shrs 3,173,000 vs 2,977,000\n Reuter\n&#3;',0
+'ENERGY/U.S. PETROCHEMICAL INDUSTRY Cheap oil feedstocks, the weakened U.S.\ndollar and a plant utilization rate approaching 90 pct will\npropel the streamlined U.S. petrochemical industry to record\nprofits this year, with growth expected through at least 1990,\nmajor company executives predicted.\n    This bullish outlook for chemical manufacturing and an\nindustrywide move to shed unrelated businesses has prompted GAF\nCorp &lt;GAF>, privately-held Cain Chemical Inc, and other firms\n [...]
+'FIDATA CORP &lt;FID> 4TH QTR LOSS Shr loss two cts vs profit 38 cts\n    Net loss 90,000 vs profit 1,685,000\n    Revs 1,826,000 vs 29.3 mln\n    Year\n    Shr profit 3.37 dlrs vs profit 46 cts\n    Net profit 15.0 mln vs profit 2,047,000\n    Revs 26.2 mln vs 123.6 mln\n    NOTE: Net includes pretax securities sale gain 10,000 dlrs\nvs loss 1,000 dlrs in quarter and gain 486,000 dlrs vs loss\n112,000 dlrs in year.\n    Net includes pretax gains on sale of businesses of nil vs\n4,656,00 [...]
+'MARBLE FINANCIAL CORP &lt;MRBL> 1ST QTR NET Oper shr 26 cts vs not given\n    Oper net 866,000 vs 480,000\n    NOTE: 1987 net excludes 157,000 dlr gain from termination\nof pension plan.\n    Company went public in August 1986.\n Reuter\n&#3;',0
+'DOMINION TEXTILE CALLS REPORT OF BID FOR BURLINGTON RUMOR\n ',0
+'RAYTHEON CO 1ST QTR SHR 1.37 DLRS VS 1.19 DLRS\n ',0
+'FLEET FINANCIAL GROUP 1ST QTR SHR 73 CTS VS 60 CTS \n ',0
+'DIEBOLD INC &lt;DBD> DECLARES DIVIDEND Qtly div 30 cts vs 30 cts prior\n    Pay June 8\n    Record May 18\n Reuter\n&#3;',0
+'INDEPENDENT BANK CORP &lt;IBCP> REGULAR DIVIDEND Qtly div 10 cts vs 10 cts previously\n    Pay April 20\n    Record April 10\n Reuter\n&#3;',0
+'RAYTHEON CO &lt;RTN> 1ST QTR NET Shr 1.37 dlrs vs 1.19 dlrs\n    Net 101.8 mln vs 92.3 mln\n    Revs 1.750 billion vs 1.725 billion\n    Avg shrs 74.2 mln vs 77.8 mln\n Reuter\n&#3;',0
+'WALTHAM SAVINGS BANK &lt;WLBK> INITIAL DIVIDEND Qtly div eight cts vs N.A.\n    Payable May 11\n    Record April 24\n Reuter\n&#3;',0
+'FLEET FINANCIAL GROUP &lt;FLT> 1ST QTR NET Shr primary 73 cts vs 60 cts\n    Shr diluted 70 cts vs 58 cts\n    Net 38,528,000 vs 31,680,000\n    Avg shares 52,087,634 vs 51,294,652\n    NOTE: Qtr net interest income is 130.7 mln dlrs vs 114.8\nmln dlrs. Earnings per share reflects two-for-one common stock\nsplit on March 15.\n Reuter\n&#3;',0
+'DOMINION CALLS BURLINGTON &lt;BUR> REPORT RUMOR &lt;Dominion Textile Inc> considers a\npublished report that it has bought a stake in Burlington\nIndustries Inc and is considering making a joint bid for the\ncompany to be a rumor, a company spokesman said.\n    \"As far as I am concerned and the company is concerned, they\nare rumors and we\'re not commenting on rumors,\" spokesman Michel\nDufour told Reuters in response to a query.\n    \"All the information that has been given out pub [...]
+'FED SETS OVERNIGHT SYSTEM REPURCHASES, FED SAYS\n ',0
+'RAYTHEON &lt;RTN> NET RISES ON OPERATIONS Raytheon said a 10 pct rise in\nits first quarter net to 101.8 mln dlrs reflected improved\noperations and a lower effective tax rate.\n    The company said revenue gains in electronics, major\nappliances and other lines were offset by decreases in energy\nservices and aircraft products. Revenues in the quarter rose\n1.4 pct to 1.75 billion dlrs, it said.\n    The company said backlog stood at 7.520 billion dlrs, down\nfrom 7.912 billion dlrs a  [...]
+'GENERAL INSTRUMENT CORP &lt;GRL> 4TH QTR LOSS Ended Feb 28\n    Shr loss 2.80 dlrs vs profit 17 cts\n    Net loss 90.5 mln vs profit 5,271,000\n    Revs 240.9 mln vs 159.4 mln\n    Year\n    Shr loss 2.49 dlrs vs loss 2.07 dlrs\n    Net loss 80.4 mln vs loss 66.5 mln\n    Revs 787.9 mln vs 612.4 mln\n    NOTE: Includes loss of 89.6 mln dlrs vs loss 14.5 mln dlrs\nin year and loss of 91.6 mln dlrs in current qtr from\ndiscontinued operations.\n    1986 qtr includes pretax gain of five ml [...]
+'COCOA EXPORTERS EXPECTED TO LIMIT SALES Major cocoa exporters are likely to\nlimit sales in the weeks ahead in an effort to boost world\nprices, sources close to a meeting of the Cocoa Producers\nAlliance (CPA) said.\n    The sources said the depressed world market had been one of\nthe main topics discussed in a closed door meeting of the\n11-member CPA which began on Monday.\n    They said producers agreed that cutting sales would aid the\nbuffer stock manager of a new international co [...]
+'FED ADDS RESERVES VIA OVERNIGHT REPURCHASES The Federal Reserve entered the U.S.\nGovernment securities market to arrange overnight System\nrepurchase agreements, a Fed spokesman said.\n    Dealers said that Federal funds were trading at 6-3/8 pct\nwhen the Fed began its temporary and direct supply of reserves\nto the banking system.\n Reuter\n&#3;',0
+'HONDURAS SEEKING PL-480 BULK WHEAT APRIL 13 Honduras will tender April 13 under\nPublic Law 480 for approximately 52,500 tonnes of various\nwheats in bulk, an agent for the country said.\n    The agent said Honduras is seeking U.S. no. 2 or better\nnorthern spring/DNS, with 14 pct protein minimum and 13 pct\nmoisture maximum, and U.S. no. 2 or better hard red winter,\nwith 12 pct protein minimum and 13 pct moisture maximum.\n    The agent said NS/DNS laydays include July 1-10 for\n7,500 [...]
+'J.P. MORGAN &lt;JPM> NET HURT BY BRAZIL, TRADING J.P. Morgan and Co Inc said its\nfirst-quarter earnings fell by 3.2 pct, largely reflecting its\npreviously announced decision to place on non-accrual status\nits 1.3 billion dlrs of medium- and long-term loans to Brazil.\n    That decision, spurred by Brazil\'s suspension of interest\npayments on February 20, reduced the quarter\'s net income by 20\nmln dlrs to 226.4 mln dlrs, compared with 233.9 mln in the\nfirst three months of 1986.\n [...]
+'ATLAS CONSOLIDATED MINING &lt;ACMB> 4TH QTR Shr loss 17.3 cts vs 21.5 cts\n    Net loss 14.5 mln vs loss 18.0 mln\n    Revs 27.3 mln vs 23.7 mln\n    Year\n    Shr loss 58 cts vs loss 1.01 dlrs\n    Net loss 48.3 mln vs loss 84.2 mln\n    Revs 111.7 mln vs 141.9 mln\n Reuter\n&#3;',0
+'BRAZIL GRAIN HARVEST FACES STORAGE PROBLEMS Storage problems with Brazil\'s record\ngrain crop are likely to result in losses of about five mln\ntonnes, an Agriculture Ministry spokesman said.\n    Ministry spokesman Leonardo Brito, speaking from Brasilia,\ntold Reuters he believed that about five mln tonnes of this\nyear\'s estimated crop of 65 mln tonnes would be lost.\n    He said part of this would be the normal loss inevitable in\nharvesting, but that most of it would stem from sto [...]
+'FLEET &lt;FLT> SHAREHOLDERS APPROVE SHARE INCREASE Fleet Financial Group said its\nshareholders approved an increase in shares of the company\'s\nauthorized common stock to 100,000,000 shares from 75,000,000\nshares currently.\n    The company said shareholders approved the move at the\nannual meeting in Providence today when the company reported\nthat its first quarter earnings rose to 38.5 mln dlrs, or 73\ncts a share, from 31.7 mln dlrs, or 60 cts a share, in the\nfirst quarter 1986. [...]
+'ROWE FURNITURE CORP &lt;ROWE> 1ST QTR FEB 28 Shr 42 cts vs 35 cts\n    Net 854,000 vs 839,000\n    Revs 23.2 mln vs 21.9 mln\n Reuter\n&#3;',0
+'REUTERS CHAIRMAN URGES FREER INFORMATION FLOWS Exchanges and telecommunications\nauthorities should abolish their restrictions on full and free\ndissemination of information to the investment and banking\ncommunities, Reuters Holdings Plc &lt;RTRS.L> chairman Sir\nChristopher Hogg said.\n    In the 1986 annual repoprt, he said lengthy negotiations\nhad brought agreement with the Tokyo and London Stock Exchanges\nfor fuller, but still not complete, access to market data\nthrough Reuter s [...]
+'CCL INDUSTRIES PURCHASES STAKE IN MONOBLOC &lt;CCL Industries Inc> said it purchased a\nmajority interest in Monobloc U.S.A. from Envases Metalurgicos\nde Alava of Spain.\n    Terms were not disclosed.\n    CCL also said it agreed to exchange present and future\ntechnology with Envases.\n Reuter\n&#3;',0
+'PARIS GROUP PUBLISHING DAILY FRANC TIN PRICE The Association of White Metals has\ndecided to publish a daily tin price here in French francs per\n100 kilos, the French Federation of Non-Ferrous Metals said.\n    The price, quoted for the first time yesterday, was\nintroduced as the lack of tin quotes was causing problems for\nsome French companies, a spokesman for the non-ferrous metals\nassociation said.\n    Today\'s price was set at 4,776 francs per 100 kilos and\nTuesday\'s at 4,790 [...]
+'RHODES INC &lt;RHD> DECLARES DIVIDEND Qtly div nine cts vs nine cts prior\n    Pay July 15\n    Record June 15\n Reuter\n&#3;',0
+'MADEIRA IN LETTER OF INTENT TO BE ACQUIRED &lt;Madeira Inc> said it\nsigned a letter of intent to be acquired by Tradevest Inc\nthrough a stock-for-stock exchange.\n    After completion of the transaction, Tradevest would own 90\npct of the issued outstanding stock of Madeira.\n Reuter\n&#3;',0
+'CELLTRONICS &lt;CELT> DECLARES ONE-FOR-10 SPLIT Celltronics Inc said its directors\ndeclared a one-for-10 reverse stock split of its common stock.\n    It said the split will be payable April 17 to shareholders\nof record April 16.\n Reuter\n&#3;',0
+'MONTEDISON\'S AGRIMONT UNIT 1986 EARNINGS &lt;Montedison SPA> of Italy said net\nconsolidated profit for its Agrimont Group, formed in June\n1986, totalled 1.5 billion lire in 1986.\n    Agrimont SPA, the holding company for Montedison\'s\nAgro-Industrial businesses, had sales of 810 billion lire and a\nnet profit of about 1.1 billion lire, after amortization costs\nof 35 billion lire and a 13 billion lire reduction in the value\nof inventory due to falling market prices, Montedison sai [...]
+'DATRON &lt;DATR> AGREES TO BUYOUT BY OFFICERS Datron Corp said it agreed to\nmerge with GGFH Inc, a Florida-based company formed by the four\ntop officers of the company.\n    According to terms of the proposed transaction, each share\nof Datron common stock, excluding those shares owned by the\nfour officers, will be bought for six dlrs a share, it said.\n    Datron\'s officers hold about 73 pct of the total 896,000\nDatron common shares outstanding.\n    Upon completion of the propose [...]
+'TRUMP AND INTERSTATE PROPERTIES IN TALKS TO ACQUIRE ALEXANDERS\n ',0
+'SOUND WAREHOUSE INC &lt;SWHI> 3RD QTR FEB 28 NET Shr 26 cts vs 52 cts\n    Net 1,386,000 vs 2,773,000\n    Revs 47.7 mln vs 38.5 mln\n    Nine mths\n    Shr 52 cts vs 97 cts\n    Net 2,765,000 vs 5,419,000\n    Revs 116.9 mln vs 97 mln\n Reuter\n&#3;',0
+'TRUMP AND INTERSTATE IN TALKS FOR ALEXANDERS Donald Trump and Interstate Properties\nsaid they were holding preliminary discussions regarding a\npossible joint acquisition of Alexanders Inc at 47 dlrs per\nshare.    \n    The possible acquisition is subject to any applicable real\nestate gains and transfer taxes, the joint statement said.\n    Trump and Interstate, which presently own about 40 pct of\nAlexander\'s common stock, said they intend to keep the company\nas a retailer if they [...]
+'JAPAN BUYS 4,000 TONNES CANADIAN RAPESEED Japan bought 4,000 tonnes of Canadian\nrapeseed overnight at an undisclosed price for last half\nMay/first half June shipment, trade sources said.\n Reuter\n&#3;',0
+'TELECRAFTER CORP &lt;SWHI> 2ND QTR FEB 28 NET Shr profit 12 cts vs loss 14 cts\n    Net profit 183,000 vs loss 234,000\n    Revs 2.4 mln vs 1.5 mln\n    Six months\n    Shr profit 22 cts vs loss 22 cts\n    Net profit 345,000 vs loss 358,000\n    Revs 5.2 mln vs 2.9 mln\n    NOTE:1987 2nd qtr and six months include gains of 78,000\ndlrs and 154,000 dlrs for tax loss carryforward.\n Reuter\n&#3;',0
+'TUNISIA EXPECTED TO TENDER FOR FRENCH WHEAT Tunisia is expected to tender April 14 for\n100,000 tonnes of French soft wheat for delivery between May\nand August and which would be covered by the French export\ncredit agency, COFACE, export credits, traders said here.\n    No official tender has been announced yet by Tunisia, they\nsaid.\n    France has sold a total of 200,000 tonnes of soft wheat to\nTunisia since the begining of the current campaign which was\ncovered by COFACE export  [...]
+'COLT INDUSTRIES INC &lt;COT> 1ST QTR NET Shr 28 cts vs 16 cts\n    Net 9,387,000 vs 25,617,000\n    Revs 410.1 mln vs 393.5 mln\n    Avg shrs 35.4 mln vs 164.7 mln\n    NOTE: 1987 net reflects interest expense on debt incurred\nto finance recapitalization in Oct. 1986. Prior year earnings\nrestated to reflect recapitalization plan.\n Reuter\n&#3;',0
+'YANKEE &lt;YNK> UNIT NOT TO SELL SUBSIDIARY Yankee Cos Inc said its Eskey\nInc &lt;ESK> subsidiary has decided not to sell its Yale E. Key\nunit.\n    Further details were not disclosed.\n Reuter\n&#3;',0
+'MAYFAIR SUPER MARKETS INC &lt;MYFRA> 2ND QTR FEB 28 Shr 59 cts vs 46 cts\n    Net 2.4 mln vs 1.9 mln\n    Revs 122.5 mln vs 105.9 mln\n    Six months\n    Shr 1.13 dlrs vs 84 cts\n    Net 4.5 mln vs 3.4 mln\n    Revs 242.5 mln vs 210.1 mln\n    NOTE: 1986 share adjusted for 2-for-1 stock split.\n Reuter\n&#3;',0
+'&lt;BATON BROADCASTING INC> SIX MTHS FEB 28 NET Shr 33 cts vs 31 cts\n    Net 9,219,017 vs 8,515,539\n    Revs 112.0 mln vs 95.4 mln\n Reuter\n&#3;',0
+'UNITED CABLE TELEVISION CORP &lt;UCT> 3RD QTR NET Shr loss 24 cts vs profit seven cts\n    Net loss 5,952,000 vs profit 2,078,000\n    Revs 55.9 mln vs 50.6 mln\n    Avg shrs 25.2 mln vs 24.7 mln\n    Nine mths\n    Shr loss 11 cts vs profit 24 cts\n    Net loss 2,673,000 vs profit 6,800,000\n    Revs 162.6 mln vs 143.9 mln\n    Avg shrs 25.0 mln vs 24.4 mln\n    NOTE: Current year net both periods includes pretax charge\nseven mln dlrs from increase in reserve for investments in\nbroad [...]
+'CANADA ALLOWS PUBLISHING TAKEOVER BY HARCOURT Investment Canada said it has allowed the\nindirect takeover of Holt, Rinehart and Winston Canada Ltd.,\nW.B. Saunders Co of Canada Ltd and Les Editions HRW Ltd by\nHarcourt Brace Jovanovich Canada Inc.\n    The government agency said, however, Harcourt Canada has\nagreed to sell control of the firms to Canadian interests\nwithin two years.\n    Harcourt Canada\'s U.S. parent, Harcourt Brace Jovanovich\nInc &lt;HBJ>, indirectly acquired the  [...]
+'TALKING POINT/BURLINGTON INDUSTRIES &lt;BUR> The largest U.S. textile maker focused\non its own business as its competitors found merger partners,\nbut now Burlington Industries Inc may have restructured itself\ninto an attractive takeover candidate, analysts said.\n    The takeover spotlight fell today on Burlington, which rose\n4-7/8 to 52-7/8 on speculation that investor Asher Edelman and\nDominion Textiles Inc of Canada bought an almost five pct\nstake.\n    A published report said  [...]
+'STERIVET LABORATORIES LTD &lt;STVTF> 1ST QTR NET Shr profit 10 cts vs loss 17 cts\n    Net profit 206,000 vs loss 281,000\n    Revs 1,022,00 vs 344,000\n Reuter\n&#3;',0
+'STERIVET LABORATORIES LTD &lt;STVTF> YEAR LOSS Shr loss 48 cts vs loss 19 cts\n    Net loss 746,000 vs loss 342,000\n    Revs 3,213,000 vs 2,925,000\n Reuter\n&#3;',0
+'JAPAN IN LAST-DITCH EFFORT TO AVERT TARIFFS Senior Japanese officials tomorrow\nopen talks with American trade negotiators in a last-ditch\neffort to avert new high U.S. tariffs to be imposed on a wide\nvariety of Japanese electronic exports.\n    Makoto Kuroda, vice minister of Japan\'s Ministry of\nInternational Trade and Industry (MITI), is to hold two days of\nmeetings with the Deputy U.S. Trade Representative, Michael\nSmith, and the Under Secretary of Commerce, Bruce Smart.\n    T [...]
+'HOECHST CELANESE SENDS REPORT ON NEW FACILITIES &lt;Hoechst Celanese Corp> said it\nsent propsective customers a confidential report describing its\npolyester textile fiber facilities in North Carolina and South\nCarolina.\n    The company did not disclose any prices.\n    The report describes the facilities in Darlington County,\nS.C., and Fayetteville, N.C., the company said. The report also\ndecribes related manufacturing, marketing, administrative and\ntechnical resources that could [...]
+'MELLON PARTICIPATING MORTGAGE TRUST &lt;MPMTS> DIV Qtly div 25 cts vs 25 cts prior\n    Payable May 6\n    Record April 24\n Reuter\n&#3;',0
+'U.K. GEC DECLINES COMMENT ON U.S. PURCHASE RUMOUR General Electric Co Plc &lt;GECL.L> (GEC)\ndeclined comment on rumours on the London stock market that it\nis planning another purchase in the U.S. Medical equipment\nfield, in addition to its existing U.S. Subsidiary &lt;Picker\nInternational Inc>.\n    A GEC spokesman said that it is company policy not to\ncomment on acquisition rumours.\n    Stock Exchange traders said the rumour helped GEC\'s share\nprice to rise 5p, to a final 206p  [...]
+'PRESTON CORP &lt;PTRK> SEES FIRST QUARTER LOSS Preston corp said it expects to\nreport a loss of about 300,000 dlrs or five cts per share for\nthe first quarter, compared with a profit of 1,081,000 dlrs or\n19 cts per share a year before.          \n    The trucking company attributed the loss to the continued\nrate of discounted in its primary markets, flat revenues and\nincreased costs, including uninsured claims expense resulting\nfrom adverse weather conditions during the last three [...]
+'WHITE HOUSE STANDING FIRM ON JAPANESE SANCTIONS Presidential spokesman Marlin\nFitzwater said U.S. trade sanctions against Japan were likely\ntake effect on April 17 in spite of a \"full court press\" by\nJapanese officials to avoid them.\n    \"All indications are they will take effect,\" he said.\n    \"I would say Japan is applying the full court press ... They\ncertainly are putting both feet forward in terms of explaining\ntheir position,\" Fitzwater told reporters.\n    He noted h [...]
+'DOW JONES AND CO INC FIRST QUARTER SHR 69 CTS VS 64 CTS\n ',0
+'&lt;HAYES-DANA INC> 1ST QTR NET Shr 30 cts vs 28 cts\n    Net 5,000,000 vs 4,600,000\n    Revs 125.2 mln vs 123.9 mln\n    Note: 52 pct-owned by Dana Corp &lt;DCN>.\n Reuter\n&#3;',0
+'COCOA TERMINAL DEPOSITS TO BE CUT 25 PCT - ICCH The basic deposit on cocoa futures\ncontracts will be reduced by 25 pct as from Friday, April 10,\ntaking the required deposit for one 10 tonne lot to 300 stg\nfrom 400 previously, a spokesman for the International\nCommodity Clearing House (ICCH) said.\n    The deposit for spread contracts will be similarly cut, to\n150 stg for a one 10 tonne lot from 200 previously, he said.\n    The ICCH had been looking at cocoa market fluctuations ove [...]
+'ELECTRO RENT CORP &lt;ELRC> 3RD QTR FEB 28 NET Shr 20 cts vs 32 cts\n    Net 1,358,000 vs 2,476,000\n    Revs 27.1 mln vs 26.2 mln\n    Nine Mths\n    Shr 68 cts vs 1.05 dlrs\n    Net 4,957,000 vs 8,129,000\n    Revs 82.6 mln vs 78.8 mln\n Reuter\n&#3;',0
+'WALGREEN CO 2ND QTR SHR 62 CTS VS 58 CTS\n ',0
+'JUDY\'S INC &lt;JUDY> 4TH QTR JAN 31 LOSS Shr loss two cts vs profit nine cts\n    Net loss 74,000 vs profit 418,000\n    Sales 18.2 mln vs 17.5 mln\n    Year\n    Shr profit nine cts vs profit 26 cts\n    Net profit 426,000 vs profit 1,170,000\n    Sales 58.7 mln vs 56.7 mln\n Reuter\n&#3;',0
+'ORANGE-CO INC &lt;OJ> 2ND QTR FEB 28 NET Shr profit 2.26 dlrs vs loss 81 cts\n    Net profit 9,785,000 vs loss 3,422,000\n    Revs 26.0 mln vs 18.9 mln\n    Avg shrs 4,316,000 vs 4,207,000\n    1st half\n    Shr profit 2.75 dlrs vs loss 1.07 dlrs\n    Net profit 11.9 mln vs loss 4,486,000\n    Revs 39.0 mln vs 37.2 mln\n    Avg shrs 4,318,000 vs 4,181,000\n    NOTE: Current year net both periods includes gain 9,500,000\ndlrs from sale of Orange-Co of Florida subsidiary to American\nAgrn [...]
+'DOW JONES AND CO INC &lt;DJ> 1ST QTR NET Shr 69 cts vs 64 cts\n    Net 66,719,000 vs 61,773,000\n    Rev 285.6 mln vs 259.7 mln\n    NOTE: Earnings include after-tax gain of 29.4 mln dlrs, or\n30 cts a share, versus after-tax gain of 31.4 mln dlrs, or 32\ncts a share, for 1986 first quarter. Earnings per share\nreflects a 50 pct stock dividend in the form of a class B\ncommon stock distribution on June 30, 1986.\n   \n Reuter\n&#3;',0
+'LORD ABBETT AND CO MUTUAL FUND DIVIDENDS LORD ABBETT BOND DEBENTURE FUND\n    Qtly div 28 cts vs 29 cts prior\n    Pay May 5\n    Record April 9\n    ---\n    LORD ABBETT U.S. GOVERNMENT SECURITIES FUND\n    Daily div 2.9 cts vs 2.9 cts prior\n    Pay May 15\n    Record May 15\n    LORD ABBETT TAX FREE INCOME FUND NATIONAL SERIES\n    Daily div 6.7 cts vs 6.7 cts prior\n    Pay May 15\n    Record May 15\n    ---\n    LORD ABBETT TAX FREE INCOME NEW YORK SERIES\n    Daily div 6.7 cts vs  [...]
+'HEINEKEN SEES HIGHER PROFITS, WIDER PENETRATION Dutch brewer Heineken NV said it hoped\nto maintain for a number of years a similar earnings growth to\nthe 7.5 pct increase in net profit achieved in 1986, despite\ncontinuing investments in a reorganization program and efforts\nto extend world penetration.\n    Heineken last month reported a 1986 net profit of 285 mln\nguilders, after 265 mln in 1985.\n    Chairman Freddie Heineken said the company, Europe\'s\nleading beer producer with  [...]
+'WALGREEN CO &lt;WAG> VOTES QUARTERLY DIVIDEND Qtly div 13-1/2 cts vs 12-1/2 cts prior qtr\n    Pay 12 June\n    Record 21 May\n Reuter\n&#3;',0
+'COLOMBIA BUSINESS ASKED TO DIVERSIFY FROM COFFEE A Colombia government trade official has\nurged the business community to aggressively diversify its\nactivities and stop relying so heavily on coffee.\n    Samuel Alberto Yohai, director of the Foreign Trade\nInstitute, INCOMEX, said private businessmen should not become\nwhat he called \"mental hostages\" to coffee, traditionally\nColombia\'s major export.\n    The National Planning Department forecast that in 1987\ncoffee will account  [...]
+'TURKEY CALLS FOR DIALOGUE TO SOLVE DISPUTE Turkey said today its disputes with\nGreece, including rights on the continental shelf in the Aegean\nSea, should be solved through negotiations.\n    A Foreign Ministry statement said the latest crisis between\nthe two NATO members stemmed from the continental shelf dispute\nand an agreement on this issue would effect the security,\neconomy and other rights of both countries.\n    \"As the issue is basicly political, a solution can only be\nfo [...]
+'FRONTIER INSURANCE &lt;FRTR> IN ACQUISITION TALKS Frontier Insurance Group Inc\nsaid it is currently negotiating to acquire the business of\nMedical Quadrangle Inc, formerly its largest medical\nmalpractice insurance producer, and the business of its other\nmalpractice producer, Medical Professional Liability Agency\nInc.\n    It gave no details.\n Reuter\n&#3;',0
+'FRONTIER INSURANCE GROUP INC &lt;FRTR> 4TH QTR NET Oper shr 25 cts vs six cts\n    Oper net 840,000 vs 139,000\n    Revs 8,290,000 vs 4,743,000\n    Avg shrs 3,335,029 vs 2,400,000\n    Year\n    Oper shr 97 cts vs 53 cts\n    Oper net 2,546,000 vs 1,275,000\n    Revs 28.8 mln vs 18.5 mln\n    Avg shrs 2,635,665 vs 2,400,000\n    NOTE: Net excludes investment gain four cts shr vs loss six\ncts in quarter and gain five cts vs loss six cts in year.\n Reuter\n&#3;',0
+'GATT OFFICIAL MEETS WITH U.S. FARM LEADERS The official in charge of\nagricultural matters in the new round of global trade talks is\nin Washington today and tomorrow to meet with congressional and\nReagan administration officials.\n    Aart de Zeeuw, chairman of the General Agreement on Tariffs\nand Trade\'s negotiating group on agriculture, met this morning\nwith members of the House Agriculture Committee.\n    Committee sources said De Zeeuw expressed concern over\nprotectionism and  [...]
+'SOUTHINGTON SAVINGS BANK &lt;SSBB> 1ST QTR NET Shr 39 cts vs not given\n    Net 707,000 vs 505,000\n    NOTE: Company went public in July 1986.\n Reuter\n&#3;',0
+'CATERPILLAR INC &lt;CAT> VOTES QUARTERLY DIVIDEND Qtly div 12-1/2 cts vs 12-1/2 cts prior qtr\n    Pay 20 May\n    Record 20 April\n Reuter\n&#3;',0
+'CORRECTED - DATRON &lt;DATR> AGREES TO BUYOUT Datron Corp said it agreed to\nmerge with GGHF Inc, a Florida-based company formed by the four\ntop officers of the company.\n    According to terms of the proposed transaction, each share\nof Datron common stock, excluding those shares owned by the\nfour officers, will be converted into six dlrs a share, it\nsaid.\n    Datron\'s officers hold about 73 pct of the total 896,000\nDatron common shares outstanding, it said.\n(corrects company na [...]
+'WALGREEN CO &lt;WAG> 2ND QTR FEB 28 NET Shr 62 cts vs 58 cts\n    Qtly div 13-1/2 cts vs 13-1/2 cts prior\n    Net 38.8 mln vs 35.7 mln\n    Revs 1.18 billion vs one billion\n    Six mths\n    Shr 84 cts vs 86 cts\n    Net 52 mln vs 52.9 mln\n    Revs 2.14 billion vs 1.82 billion\n    NOTE: Results include charge of four cts shr for latest six\nmths vs credit of five cts shr for prior six mths from\ninvestment tax credit\n     Dividend payable June 12, record May 21\n Reuter\n&#3;',0
+'J.P. MORGAN&lt;JPM> SAYS DLR MAY PREVENT FED EASING The relatively high level of real U.S.\ninterest rates suggests that there is scope for further\ndeclines in money market rates, but the Federal Reserve is\nunlikely to promote such a drop as long as the dollar remains\nvolatile, said J.P. Morgan and Co Inc chairman Lewis Preston.\n    He said in response to a reporter\'s question after the\nbank\'s annual meeting that money market rates could decline\nfurther but, \"I don\'t think the [...]
+'MEDTRONIC &lt;MDT> SEES 15 PCT EARNINGS GROWTH Medtronic Inc said it sees 15 pct\ngrowth in sales and earnings for the year ending April 30,\n1988.\n    At an analysts meeting here the company said that for the\nyear ending April 30, 1987 it will earn about 73 mln dlrs, or\nabout 5.15-5.35 dlrs a share on sales of about 500 mln dlrs.\n    In the year ago period, the company earned 53.4 mln dlrs,\nor 3.65 dlrs a share, on sales of 402.8 mln dlrs.\n    Winston Wallin, Medtronic chairman,  [...]
+'SPIE BATIGNOLLES COULD INCREASE COMSTOCK HOLDING Construction group &lt;Spie Batignolles> is\nnegotiating to increase its holding in U.S. Engineering and\nelectrical installations firm &lt;Comstock>.\n    Spie Batignolles, a subsidiary of Schneider SA &lt;SCHN.PA>,\nsaid in a statement it was negotiating to invest 20 mln dlrs in\nComstock in the form of bonds convertible into shares.\n    Spie Batignolles has held a 20 pct stake in Comstock since\nFebruary 1986. A spokesman said if Spie [...]
+'TALKS CONTINUE ON TIN AGREEMENT EXTENSION Discussions on the possible extension of\nthe sixth International Tin Agreement (ITA) began at the\nquarterly session of the International Tin Council (ITC) but\nthe Council is still waiting for decisions from various member\nstates.\n    A number of producer governments in particular have not\ndecided their final position on whether the ITA should be\nextended for up to two years or wound down after it expires on\nJune 30, according to delegate [...]
+'PAKISTAN COTTON CROP SEEN RECORD 7.6 MLN BALES Pakistan is likely to produce a record\n7.6 mln bales (375 lbs each) of cotton from the current 1986/87\ncrop, exceeding a target of 7.2 mln bales, Food and Agriculture\nMinister Mohammad Ibrahim Baluch said.\n    He told a Pakistan Central Cotton Committee meeting here\nthe present was the third consecutive poroduction\nrecord-setting year and said the momentum would be accelerated\nin the future, the official APP news agency reported.\n   [...]
+'TRANZONIC COS &lt;TNZ> 4TH QTR FEB 28 NET Shr 54 cts vs 24 cts\n    Net 633,300 vs 300,859\n    Sales 15.2 mln vs 13.0 mln\n    Avg shrs 1,165,047 vs 1,224,982\n    Year\n    Shr two dlrs vs 1.64 dlrs\n    Net 2,379,400 vs 2,011,924\n    Sales 58.6 mln vs 54.0 mln\n    Avg shrs 1,187,828 vs 1,223,511\n Reuter\n&#3;',0
+'SECURITY PACIFIC EXPECTS BRAZIL LOAN ACTION TO CUT NET BY 7.2 MLN DLRS\n ',0
+'WHITE HOUSE SAYS JAPANESE TARRIFFS LIKELY The White House said high U.S.\nTariffs on Japanese electronic goods would likely be imposed as\nscheduled on April 17, despite an all-out effort by Japan to\navoid them.\n    Presidential spokesman Marlin Fitzwater made the remark one\nday before U.S. And Japanese officials are to meet under the\nemergency provisions of a July 1986 semiconductor pact to\ndiscuss trade and the punitive tariffs.\n    Fitzwater said: \"I would say Japan is applyin [...]
+'SHOWBOAT &lt;SBO> TO TAKE CHARGE, SEES 3RD QTR LOSS Showboat Inc will take a\ncharge of 19 to 20 mln dlrs pretax against results for the\nthird quarter ended March 31, director and assistant to the\npresident J. Kell Houssels III told Reuters.\n    He said the charge results from pre-operating expenses of\nits recently-opened Atlantic City, N.J., Showboat Hotel, Casino\nand Bowling Center and will cause a loss for the third quarter\nand probably for all of fiscal 1987 as well.\n    But  [...]
+'SECURITY PACIFIC &lt;SPC> LOANS PUT ON NON-ACCRUAL Security Pacific Corp said it is\nplacing medium and long-term loans to Brazil and Ecuador on a\nnon-accrual basis as of March 31, a move that will reduce first\nquarter earnings by 7.2 mln dlrs, or nine cts per share, after\ntaxes.\n    Despite the anticipated reduction to quarterly earnings,\nSecurity Pacific said it still expects to report first quarter\nearnings higher than the 88 mln dlrs, or 1.11 dlrs per share\nreported for the f [...]
+'IRAQI TROOPS REPORTED PUSHING BACK IRANIANS Iraq said today its troops were pushing\nIranian forces out of positions they had initially occupied\nwhen they launched a new offensive near the southern port of\nBasra early yesterday.\n    A High Command communique said Iraqi troops had won a\nsignificant victory and were continuing to advance.\n    Iraq said it had foiled a three-pronged thrust some 10 km\n(six miles) from Basra, but admitted the Iranians had occupied\nground held by the M [...]
+'GOLDEN ENTERPRISES INC &lt;GLDC> 3RD QTR FEB 28 NET Shr 15 cts vs nine cts\n    Qtly div six cts vs six cts in prior qtr\n    Net 2,002,261 vs 1,168,638\n    Revs 29.2 mln vs 29.3 mln\n    Avg shrs 13.1 mln vs 13.0 mln\n    Nine mths\n    Shr 49 cts vs 36 cts\n    Net 6,404,536 vs 4,623,295\n    Revs 92.2 mln vs 88.2 mln\n    Avg shrs 13.1 mln vs 13.0 mln\n    NOTE: Dividend is payable April 30 to holders of record\nApril 20\n Reuter\n&#3;',0
+'GROUP OF FIVE MEETING ENDS A meeting of finance ministers and\ncentral bankers of the Group of Five ended after nearly three\nand a half hours.\n    West German Finance Minister Gerhard Stoltenberg and\nBritish Chancellor of the Exchequer Nigel Lawson declined to\ncomment on the meeting as they emerged from the U.S. Treasury.\n    A European monetary official said the ministers of the\nGroup of Seven countries would gather at about three p.m. local\n(1900 GMT) at the Treasury.\n Reuter\ [...]
+'USDA TO PROPOSE FOREIGN MEAT INSPECTION RULE The U.S. Agriculture Department is\npreparing a proposal that would require all foreign meat\nproducts to be inspected at their point of arrival in the\nUnited States, a USDA official said.\n    Donald Houston, administrator of USDA\'s Food Safety and\nInspection Service, FSIS, told a House Agriculture subcommittee\nUSDA was developing a proposed change in regulations that would\nput an end to the current practice of permitting foreign meat\n [...]
+'UNION TEXAS OIL RESERVES DROPPED IN 1986 Union Texas Petroleum said its worldwide\nproved reserves fell to 511 mln barrels of oil equivalent at\nthe end of 1986 from 555 mln barrels reported in 1985.\n    In its newly released annual report, Union Texas said it\nreplaced about 71 pct of its production of 56 mln barrels of\noil equivalent last year after taking into account the sale of\n27 mln barrels of U.S. reserves.\n    Union Texas, the nation\'s largest independent oil and gas\nprod [...]
+'UAL &lt;UAL> MAY RESPOND TO PILOTS TODAY UAL Inc may have a response this\nafternoon to the pilots union proposal to buy its United\nAirlines unit, a UAL spokesman said.\n    \"Obviously, we have a lot of movement in our stock, and we\nneed to get a clarification out,\" the spokesman said, adding\nthat there was a \"50-50\" chance a statement would be released\ntoday.\n    The pilots earlier this week offered to buy the airline for\n2.3 billion dlrs, and assume 2.2 billion dlrs of exist [...]
+'HARTMARX &lt;HMX> TARGETS EARNINGS GROWTH Hartmarx Corp, following a year of\nrestructuring, continues to target record earnings for fiscal\n1987, Chairman John Meinert told the annual meeting.\n    Meinert reiterated an earlier comment that earnings for the\nremainder of the year must double the 1986 level to meet that\ngoal. In fiscal 1986, ended November 30, 1986, Hartmarx\nreported earnings of 24.8 mln dlrs, or 1.20 dlrs a share, down\nfrom the prior year\'s 42.7 mln dlrs, or 2.25 d [...]
+'FED\'S HELLER SEES RETURN TO SLOWER MONEY SUPPLY GROWTH\n ',0
+'GENERAL ELECTRIC CO 1ST QTR SHR 1.37 DLRS VS 1.18 DLRS\n ',0
+'GHANA TO BUY CRUDE OIL FROM IRAN Ghana will import 15,000 tonnes of crude\noil annually from Iran under an agreement reached in Tehran\ntoday, the Iranian news agency IRNA reported.\n    The agency, received in London, said the accord was reached\nbetween Iranian Oil Minister Gholamreza Aqazadeh and a visiting\nGhanaian delegation headed by Foreign Minister Obed Asamoah.\n    IRNA said that under the agreement, Iran will also provide\ntechnical and scientific assistance in manpower trai [...]
+'FED\'S HELLER SAYS MONETARY GROWTH TO BE SLOWER Robert Heller, a member of the\nFederal Reserve Board, said he expects \"more modest levels\" of\ngrowth in the money supply this year.\n    \"In my view, this would not only be a logical, but also a\nmost desireable development,\" he said in a speech prepared for\ndelivery to an economic forum at Chapman College in Orange,\nCalif.\n    A text was released in Washington.\n    He said the effect of lower inflation and financial\nderegulatio [...]
+'GENERAL ELECTRIC CO &lt;GE> 1ST QTR NET Shr 1.37 dlrs vs 1.18 dlrs\n    Net 624 mln vs 537 mln\n    Sales 8.32 billion vs 5.88 billion\n    NOTE: Prior year does not include results of RCA Corp.\n Reuter\n&#3;',0
+'ENERGY DEVELOPMENT &lt;EDP> HAD YEAR LOSS Energy Development Partners Ltd said\nit had an operating loss for the year ended December 31 of 2.4\nmln dlrs, or 40 cts per share.\n    But it said a 41.5 mln dlr non-cash writeoff of oil and gas\nproperties taken in the first quarter resulted in a net loss of\n43.9 mln dlrs, or 7.21 dlrs per share.\n    Energy Development Partners, is a limited partnership which\nbegan operating in September 1985.\n    Full year revenues totaled 23.7 mln dlrs [...]
+'INDUSTRIAL NATIONS RECONVENE FOR TALKS Financial ministers and central\nbankers of leading industrial nations reconvened here this\nafternoon.\n    Canadian Finance Minister Michael Wilson said on entering\nthe meeting the ministers would review the Paris agreement.\nAsked if he was satisfied with West German and Japanese\nstimulus, Wilson replied, \"They could do a little more.\"\n    French Finance Minister Edouard Balladur, meanwhile,\nconfirmed there would be a communique at the end [...]
+'U.S. MEAT, POULTRY INSPECTION CALLED FAULTY The U.S. meat and poultry inspection\nprograms are incapable of protecting consumers from\ncontaminated products, groups representing inspectors and\nconsumers charged.\n    \"The whole trend of inspection for the last 10 years has\nbeen to corrupt and to degrade the system where today the\npublic is at constant risk to contaminated and adulterated\nmeat,\" Kenneth Blaylock, president of the American Federation of\nGovernment Employees, told a [...]
+'CHRYSLER &lt;C> RENAULT DELAY AM MOTORS &lt;AMO> PACT Chrysler Corp and Regie Natiionale des\nUsines Renault said they agreed to extend by up to two weeks\nthe period for reaching definitive agreement on Chrysler\'s\nproposed 1.5 billion dlr takeover of American Motors Corp.\n    The letter of intent signed by Chrysler and Renault on\nMarch nine set April nine as the target date for completing\nnegotiations.\n    However, the letter also allowed room for an extension of\nthat date to Ap [...]
+'RITE AID CORP &lt;RAD> SETS DIVIDEND Qtly div 16-1/2 cts vs 16-1/2 cts\n    Pay April 27\n    Record April 20\n Reuter\n&#3;',0
+'AIRSENSORS INC &lt;ARSN> 3RD QTR JAN 31 LOSS Shr loss five cts vs loss six cts\n    Net loss 696,777 vs loss 598,095\n    Sales 472,812 vs 41,454\n    Nine mths\n    Shr loss 15 cts vs loss 17 cts\n    Net loss 2,194,482 vs loss 1,751,884\n    Sales 800,336 vs 151,884\n Reuter\n&#3;',0
+'CANADA PLANS TO MONITOR STEEL IMPORTS, EXPORTS, TRADE MINISTER SAYS\n ',0
+'GENERAL ELECTRIC &lt;GE> 1ST QTR HELPED BY RCA General Electric Corp said its\nfirst quarter results were significantly higher due to the\nstrong results of RCA, which was acquired last year.\n    General Electric also attibuted continued strong\nperformances in plastics, major appliances and the Employers\nReinsurance Corp for its strong quarter.\n    GE recorded net earnings for the first quarter 1987 of 624\nmln dlrs, or 1.37 dls per shr, up 16 pct from 537 mln dlrs, or\n1.18 dlrs pe [...]
+'TECK STILL IN TALKS ON B.C. COPPER VENTURE &lt;Teck Corp> said it\nwas continuing talks about joining a joint copper venture at\nHighland Valley, British Columbia, held by affiliates Cominco\nLtd &lt;CLT> and &lt;Lornex Mining Corp>, but did not know when\nnegotiations would be completed.\n    Teck vice-president of administration John Guminski said in\nreply to a query that the talks had been \"ongoing for a long\ntime.\" He declined to speculate on the outcome.\n    Cominco, 29.5 pct  [...]
+'BANPONCE CORP &lt;BDEP> 1ST QTR NET Shr 1.08 dlrs vs 1.00 dlr\n    Net 6,215,538 vs 5,757,013\n Reuter\n&#3;',0
+'XEBEC &lt;XEBC> TO REPORT 2ND QTR LOSS Xebec Corp said it expects to\nreport a loss for its second quarter ended April three, due\nprincipally to a decline in sales to International Business\nMachines Corp &lt;IBM>, the company\'s largest customer.\n    Xebec also said it expects revenues to total about 23 mln\ndlrs.\n    The company reported a second quarter loss last year of 1.9\nmln dlrs, or 14 cts per share, on 23.9 mln in revenues.\n    Xebec said IBM has historically accounted for [...]
+'CCC ACCEPTS EXPORT BID FOR WHEAT FLOUR TO IRAQ The Commodity Credit Corporation has\naccepted a bid for an export bonus to cover a sale of 12,500\ntonnes of wheat flour to Iraq, the U.S. AGriculture Department\nsaid.\n    The bonus awarded was 113.0 dlrs per tonne and will be paid\nto Peavey Company in the form of commodities from CCC stocks.\n    The wheat flour is for delivery May 15-June 15, 1987, the\ndepartment said.\n    An additional 162,500 tonnes of wheat flour are still\navail [...]
+'EGYPT AUTHORIZED TO BUY PL-480 WHEAT - USDA Egypt has been authorized to purchase\nabout 200,000 tonnes of U.S. wheat under an existing PL-480\nagreement, the U.S. Agriculture Department said.\n    It may buy the wheat, valued at 22.0 mln dlrs, between\nApril 15 and August 31, 1987, and ship it from U.S. ports by\nSeptember 30, the department said.\n Reuter\n&#3;',1
+'CATERPILLAR &lt;CAT> REAFFIRMS FIRST QUARTER OUTLOOK Caterpillar Inc, in remarks\ndelivered at its annual meeting in San Francisco, reiterated\nits expectation of a loss in the first quarter.\n    It said results would be hurt by a 25 mln dlr one-time\ncharge by Caterpillar Mitsubishi, a 50-pct owned affiliate. The\ncompany said it expected profit from operations for the full\nyear to improve over 1986.\n    In remarks prepared for delivery to shareholders, President\nPeter Donis said C [...]
+'BROKER BOOSTS ZONDERVAN &lt;ZOND> STAKE TO 7.1 PCT An investor group headed by\nMinneapolis, Minn., broker Jeffrey Wendel said it raised its\nstake in Zondervan Corp to 292,900 shares, or 7.1 pct of the\ntotal outstanding, from 238,900 shares, or 5.8 pct.\n    In a filing with the Securities and Exchange Commission,\nthe Wendel group said it bought 54,000 Zondervan common shares\nbetween March 24 and April 3 at prices ranging from 27.87 to\n29.96 dlrs a share.\n    The Wendel group has  [...]
+'KIENA TWO-FOR-ONE SHARE SPLIT APPROVED &lt;Kiena Gold Mines Ltd> said shareholders\napproved a previously reported proposed two-for-one common\nstock split.\n    Record date of the split will be April 21, Kiena said.\n Reuter\n&#3;',0
+'HANOVER INSURANCE &lt;HINS> RAISES DIVIDEND Hanover Insurance Co said its\nboard declared a quarterly dividend of nine cts per share\npayable May 15 to holders of record April 17.\n    The dividend comes after a two-for-one stock split,\neffective April 10, which was approved by shareholders today.\n    The company paid a dividend of 14 cts per share on a\npre-split basis.\n Reuter\n&#3;',0
+'DAY INT\'L &lt;DAY> TO SELL UNIT Day International Corp said it has\nentered into a letter of intent to sell its Allen Industries\nInc unit to a group including the unit\'s current management.\n    Day said the sale could enable Day to accelerate its\nearnings for its current fiscal year ending October 31, 1987.\n    \"Net earnings for the full year (ending October 31)\nshould be in the ball park of some analysts\' estimates of 16\nmln dlrs to 19 mln dlrs,\" Richard Jacob, Day chairman  [...]
+'RITE AID CORP &lt;RAD> SETS QUARTERLY DIVIDEND Qtly div 16.5 cts vs 16.5 cts\n    Pay April 27\n    Record April 20\n Reuter\n&#3;',0
+'SOUTH KOREA CORN IMPORTS MAY INCREASE - USDA South Korea\'s purchase of about 2.4\nmln tonnes of U.S. corn in the past six months -- close to\ndouble last year\'s total -- indicates that imports from the\nUnited States, as well as total imports are set for a dramatic\njump, the U.S. Agriculture Department said.\n    In its World Production and Trade Report, the department\nsaid total South Korea corn imports for the 1986/87 season\n(Oct-Sept) are estimated at 4.3 mln tonnes, with about  [...]
+'MEXICAN CATTLE IMPORTS TO BE BRANDED - USDA All steers imported into the United\nStates from Mexico must now be branded with the letter M on the\nright jaw, the U.S. Agriculture Department said.\n    In its World Production and Trade Report, the department\nsaid the branding is necessary to improve surveillance for\nbovine tuberculosis because it provides a permanent way to\nidentify Mexican steers.\n    The requirement is not expected to affect the number of\nMexican steers imported in [...]
+'VULCAN &lt;VUL> SEES FIRST QUARTER OPERATING LOSS Vulcan Corp\'s first quarter operating\nresults will show a loss, Chairman Lloyd I. Miller told told\nthe annual meeting.\n    The company reported a profit of 365,883 dlrs, 23 cts a\nshare, for the first quarter last year with one cent a share\ncoming from non-operating factors, a spokesman said.\n    Miller attributed the expected loss to completion of the\npurchase transfer and consolidation of operating assets of the\nO\'Sullivan Rub [...]
+'UAL &lt;UAL> HAS NO COMMENT ON STOCK RISE UAL Inc, citing company policy, told\nthe New York Stock Exchange it would not comment on the unusual\nrise in its stock.\n    UAL, parent of United Airlines, closed up 6-1/4 at 72 on\nvolume of 3.9 mln shares.\n    Wall Street traders said UAL\'s stock soared in response to\nthe the proposed 4.6 billion dlr buyout offer by United Air\'s\npilots union and on a general rise in air fares throughout the\nindustry.\n Reuter\n&#3;',0
+'STRATA CORP &lt;STATA> YEAR DEC 31 LOSS Shr loss 1.11 dlrs vs loss 1.53 dlrs\n    Net loss 7.1 mln vs loss 8.8 mln\n    Revs 3.1 mln vs eight mln\n Reuter\n&#3;',0
+'STRATA &lt;STATA> 1986 EARNINGS REPORT QUALIFIED Strata Corp said its 1986\nearnings report contained a qualified opinion from its\nindependent auditors.\n    Strata said it owed 1.4 mln dlrs in overdue interest to its\nlender at the end of 1986, and the entire 10.9 mln dlr\nprinciple has been classified as a liability.\n    The company, which has an agreement to merge with &lt;Lomak\nPetroleum Inc>, lost 7.1 mln dlrs in 1986 against a loss of 8.8\nmln dlrs a year earlier.\n Reuter\n&#3;',0
+'DAYTON HUDSON CORP &lt;DH> VOTES QUARTERLY PAYOUT Qtly div 23 cts vs 23 cts prior qtr\n    Pay 10 June\n    Record 20 May\n Reuter\n&#3;',0
+'VULCAN CORP &lt;VUL> REGULAR DIVIDEND Qtly div 20 cts vs 20 cts in prior qtr\n    Payable June 10\n    Record May 22\n Reuter\n&#3;',0
+'NAT\'L DISTILLERS SAYS IT AGREES TO SELL SPIRITS UNIT FOR 545 MLN DLRS TO AMERICAN BRANDS\n ',0
+'USDA SEEKS COMMENTS ON GRAIN DISCOUNT SCHEDULE The U.S. Agriculture Department is\nseeking public comments on the question of adjusting the\nCommodity Credit Corporation\'s (CCC) discount and premium\nschedules to improve the quality of grain it accepts as loan\ncollateral or under price support programs.\n    The premiums and discounts schedule are based on quality\nfactors such as moisture content and kernel damage. The\nschedule stipulates the premiums and discounts used for valuing\ [...]
+'CASCADE IMPORTERS UNIT ACQUIRES PARIS COMPANY &lt;Cascade Importers Inc USA>\'s\nCascade International Europa GmbH of West Germany, said it\ntentatively acquired worldwide rights for the products of Madam\nGre from the Bernard Tapie Group in Paris.\n    The agreement calls for Cascade to have the rights for the\nmanufacturing and trading of perfumes, skin care and treatment\nproducts, and cosmetics of the group, it said.\n    Cascade said the agreement also includes the exclusive\nright [...]
+'ARMEL INC &lt;AML> 4TH QTR LOSS Oper shr loss 79 cts vs loss 2.32 dlrs\n    Oper net loss 2,536,896 vs loss 6,562,472\n    Revs 13.8 mln vs 14.5 mln\n    Year\n    Oper shr loss 59 cts vs loss 2.35 dlrs\n    Oper net loss 1,712,896 vs loss 5,747,472\n    Revs 43.6 mln vs 44.2 mln\n    NOTE: 1986 excludes charge of 12 cts per share in the\nfourth quarter and gain of 11 cts per share in the year.\n\n Reuter\n&#3;',0
+'NATIONAL DISTILLERS &lt;DR> TO SELL SPIRITS UNIT National Distillers and Chemical Corp\nsaid it signed a definitive agreement to sell its spirits\ndivision for 545 mln dlrs to James Beam Distilling Co, a unit\nof American Brands Inc &lt;AMB>.\n    The sale of the spirits division was made under the\ncompany\'s previously announced plan to sell its spirits and\nwines businesses, it said. The wine business was sold last\nmonth for 128 mln dlrs to Heublein Inc, part of Grand\nMetropolitan  [...]
+'MANAGEMENT SCIENCE &lt;MSAI> LOSS MAY TOP 20 CTS Management Science America Inc,\nclarifying statements made earlier today, said its loss for the\nfirst quarter could exceed 20 cts a share because of\nnon-recurring expenses associated with the acquisition of\nseveral companies, including Comserv Inc.\n    Earlier today, the company told a meeting of investors here\nthat the first quarter loss would be 20 cts a share.\n   \n Reuter\n&#3;',0
+'WOJNILOWER SEES DROP IN U.S. INTEREST RATES The Federal Reserve will promote lower\ninterest rates this year to sustain world economic growth,\nFirst Boston Corp managing director Albert Wojnilower said.\n    As much as the Fed would like to take a tough line against\ninflation, it cannot act to slow the growth of credit without\nsubverting national U.S. economic policy.\n    \"On selected occasions when the dollar seems steady, and,\nbecause the trade deficit is not responding, the Uni [...]
+'RAYTECH &lt;RAY> BUYS WEST GERMAN COMPANY Raytech Corp said it acquired\n&lt;Raybestos Industrie-Produkte GmBH> for 7.5 mln dlrs.\n    Raybestos, with manufacturing facilities in Radevormwald,\nWest Germany, produces friction materials for use in clutch and\nbraking applications.\n Reuter\n&#3;',0
+'INTERCARE &lt;CARE> TO POST 4TH QTR LOSS Intercare Inc said it\nexpects to report a substantial loss for its fourth quarter\nended January 31 because of a writeoff of expenses associated\nwith its recently terminated debt and equity offering.\n    The company also said the write off includes expenses\nassociated with the acquisition of U.S. Medical Enterprises\nInc, and with the restructuring of certain partnerships.\n    Intercare also said it increased its reserve against\naccounts re [...]
+'CANADA TO MONITOR STEEL IMPORTS, EXPORTS Canada plans to monitor steel shipments\nflowing in and out of the country in an attempt to appease\nconcerns in the U.S. over the high level of Canadian steel\nexports, Trade Minister Pat Carney said.\n    \"To help maintain our open access to the U.S. steel market,\nthe government is taking further action to ensure we have more\naccurate data on exports and imports and that Canada is not\nused as a backdoor to the U.S. market by offshore suppli [...]
+'UNITED TECH &lt;UTX> SEES NO EARNINGS IMPACT United Technologies Corp said\nthe decision by an international consortium not to develop a\nnew engine would have no impact on 1987 or 1988 earnings.\n    &lt;International Aero Engines>, IAE, 30 pct owned by United\nTechnologies\' Pratt and Whitney division, has decided not to\nlaunch a superfan version of its V2500 engine.\n    \"We\'ve told analysts that IAE\'s decision not to launch a\nfull development program of the IAE superfan for cer [...]
+'STEWART AND STEVENSON &lt;SSSS> 4TH QTR NET Shr profit 72 cts vs profit 14 cts\n    Net profit 3,309,000 vs profit 609,000\n    Revs 72 mln vs 65 mln\n    Year\n    Shr nil vs loss 4.13 dlrs\n    Net profit 1,000 vs loss 19 mln\n    Revs 249 mln vs 269 mln\n    NOTE: Full name Stewart and Stevenson Services Inc.\n Reuter\n&#3;',0
+'WESTAMERICA BANCORP &lt;WAB> 1ST QTR NET Shr 98 cts vs 63 cts\n    Net 2,602,000 vs 1,571,000\n    Loans 834.8 mln vs 729.0 mln\n    Deposits 1.04 billion vs 942.1 mln\n    Assets 1.15 billion vs 1.02 billion\n Reuter\n&#3;',0
+'U.S.SENATE LIFTS SOME BANS ON NATURAL GAS The Senate unanimously approved\nlegislation to lift a ban on new construction of natural\ngas-fired power plants and other large industrial gas-burning\nplants.\n    The bill, sponsored by Senate Energy Committee chairman\nBennett Johnston, also repeals mandatory incremental pricing of\nnatural gas which was designed to protect residential consumers\nfrom major price increases by forcing some industrial users to\npay higher than market prices.\ [...]
+'SOUTHEAST BANCORP &lt;STB> ACTS ON BRAZILIAN DEBT Following the lead of other major\nbanks, Southeast Banking Corp told the Securities and Exchange\nCommission it would place 54.2 mln dlrs of medium- and\nlong-term Brazilian debt on non-accrual or cash status.\n    Based on current interest rates, it estimated in a filing\nthat the move will reduce net income by about 800,000 dlrs in\nthe first quarter and 3.2 mln dlrs for all of 1987. The company\nalso said it did not believe the Brazi [...]
+'WILLIAMS &lt;WMB> SEES FLAT PIPELINE VOLUMES IN 1987 Williams Cos said it expected oil and\nfertilizer transportation volumes to be flat in 1987 but said\noperating profits from the pipeline unit should improve from\n49.4 mln dlrs earned last year when a seven mln dlr special\ncharge was incurred.\n    Williams Pipeline Co took the charge against earnings in\n1986 for the removal of more than 500 miles of old pipeline\nfrom service and for casualty losses. Companywide, Williams had\na n [...]
+'SUPER VALU STORES INC &lt;SVU> 4TH QTR FEB 28 NET Shr 38 cts vs 25 cts\n    Net 28,339,000 vs 18,650,000\n    Sales 2.27 billion vs 1.97 billion\n    Avg shrs 74,485,000 vs 74,270,000\n    Year\n    Shr 1.20 dlrs vs 1.23 dlrs\n    Net 89,301,000 vs 91,247,000\n    Sales 9.07 billion vs 7.91 billion\n    Avg shrs 74,387,000 vs 74,184,000\n    NOTE: 1986 period ended February 22, 1986\n    1986 earnings include net loss of unconsolidated subsidiary\nof 162,000 dlrs in the quarter and 702, [...]
+'PARKER DRILLING CO &lt;PKD> 2ND QTR FEB 28 LOSS Shr loss 70 cts vs loss 57 cts\n    Net loss 20,616,000 vs loss 16,854,000\n    Revs 23.1 mln vs 60.1 mln\n    Six mths\n    Shr loss 1.38 dlrs vs loss 1.02 dlrs\n    Net loss 40,780,000 vs loss 29,996,000\n    Revs 61.0 mln vs 114.9 mln\n Reuter\n&#3;',0
+'COFFEE COULD DROP TO 70/80 CTS, CARDENAS SAYS International coffee prices could drop to\nbetween 70 and 80 cents a lb by next October if no agreement is\nreached to support the market, Jorge Cardenas, manager of\nColombia\'s National Coffee Growers\' Federation said.\n    Speaking at a forum for industrialists, he said one of the\nreasons was that the market was already saturated and that\nproducers will have excess production and stockpiles of 39 mln\n(60-kg) bags in 1987.\n    Today,  [...]
+'HBO &lt;HBOC> URGES SHAREHOLDERS AGAINST ANDOVER HBO and Co said it sent a letter of\nstrongly urging shareholders not to sign any proxy cards sent\nby Andover Group.\n    ON March 30, Andover Group, a two-man general partnership\nwhich owns about seven pct of HBO\'s stock, filed preliminary\nproxy materials with the Securities and Exchange Commission\nseeking to nominate an alternative slate of directors at the\ncompany\'s April 30 annual meeting.\n    Andover had expressed an interest [...]
+'(CFCF INC) SIX MTHS FEB 28 NET Shr 51 cts vs 56 cts\n    Net 5,645,000 vs 6,153,000\n    Revs 45.9 mln vs 45.3 mln            \n Reuter\n&#3;',0
+'UAP MAKES ACQUISITIONS &lt;UAP Inc> said it has acquired Slater\nAuto Electric Ltd, with two Ontario stores, and United Diesel\nEngine Parts Ltd, of Dartmouth, Nova Scotia, for undisclosed\nterms. It said the transactions, together with acquisitions\nearlier this year, will increase its annual sales by about 4.5\nmln dlrs.\n Reuter\n&#3;',0
+'EIA SAYS DISTILLATE STOCKS UNCHANGED, GASOLINE OFF 200,000, CRUDE UP 6.3 MLN\n ',0
+'USDA DISCUSSING PL 480 AGREEMENT WITH MOROCCO The U.S. Agriculture Department is\ncurrently discussing an amendment to a PL 480 agreement signed\nwith Morocco on January 22, but the mix of commodities under\nthe amendment has not been determined, a U.S. Agriculture\nDepartment official said.\n    The official noted the agreement signed in January provided\nfor the supply of about 55,000 tonnes of vegetable oil, 55,000\ntonnes of corn and 126,000 tonnes of wheat, all for delivery\nduring [...]
+'EIA SAYS DISTILLATE STOCKS UNCHANGED IN WEEK Distillate fuel stocks held in\nprimary storage were unchanged in the week ended April three at\n106.9 mln barrels, the Energy Information Administration (EIA)\nsaid.\n    In its weekly petroleum status report, the Department of\nEnergy agency said gasoline stocks were off 200,000 barrels in\nthe week to 248.1 mln barrels and refinery crude oil stocks\nrose 6.3 mln barrels to 335.8 mln.\n    The EIA said residual fuel stocks fell 100,000 barr [...]
+'HAWKEYE &lt;HWKB> 1986 ANNUAL REPORT QUALIFIED Hawkeye Bancorp\'s 1986 annual\nfinancial results were qualified by its auditors, according to\nthe annual report.\n    \"...there are conditions which may indicate that the\ncompany will be unable to continue as a going concern,\"\nauditors Deloitte Haskins and Sells said in Hawkeye\'s annual\nreport to shareholders.\n    Hawkeye reported a 1986 loss of almost 59 mln dlrs, citing\nan increase in its loan loss provision to 34.7 mln dlrs and [...]
+'&lt;WASHINGTON BANCORPORATION> 1ST QTR NET Shr 33 cts vs 37 cts\n    Net 2,051,000 vs 1.8 mln\n    Assets 1.7 billion vs 1.5 billion\n    Deposits 1.4 billion vs 1.2 billion\n    Loans 1.1 billion vs 900 mln\n    Note: Year-ago results restated to reflect merger with\nColson Inc.\n Reuter\n&#3;',0
+'DOME &lt;DMP> PLAN MAY FORCE SALE OF ENCOR STAKE Dome Petroleum Ltd\'s proposal to\nrestructure debt of more than 6.10 billion Canadian dlrs\nincludes provisions that may force the company to sell its 42\npct stake in &lt;Encor Energy Corp Inc>, Dome said in a U.S.\nSecurities and Exchange Commission filing.\n    Dome said in the filing that its debt plan proposes making\npayments under a five year income debenture to the lender whose\ndebt is secured by Dome\'s Encor shares.\n    After [...]
+'RECENT U.S. OIL DEMAND OFF 2.6 PCT FROM YEAR AGO U.S. oil demand as measured by\nproducts supplied fell 2.6 pct in the four weeks ended April\nthree to 15.73 mln barrels per day (bpd) from 16.16 mln in the\nsame period a year ago, the Energy Information Administration\n(EIA) said.\n    In its weekly petroleum status report, the Energy\nDepartment agency said distillate demand was off 7.9 pct in the\nperiod to 2.90 mln bpd from 3.15 mln a year earlier.\n    Gasoline demand averaged 6.76  [...]
+'DEFICIT CUTS SEEN UNABLE TO CURE TRADE DEFICIT Financial analysts say they are\npleased with congressional moves to trim next year\'s federal\nbudget deficit but believe the actions will do little to help\nimprove the U.S. trade deficit or buoy the economy.\n    The House of Representatives is expected to vote tomorrow\nto approve a trillion-dollar budget blueprint for the coming\nfiscal year that reduces the deficit by 38 billion dlrs.\n    Similarly, the Senate Budget Committee has ap [...]
+'STEWART AND STEVENSON SERVICES &lt;SSSS> 4TH QTR 4th qtr ended Jan 31.\n    Shr profit 72 cts vs profit 14 cts\n    Net profit 3,309,000 vs 609,000\n    Revs 72 mln vs 65 mln\n    Year\n    Shr profit nil vs loss 4.13 dlrs\n    Net profit 1,000 vs loss 19 mln\n    Revs 245 mln vs 269.1 mln\n Reuter\n&#3;',0
+'WESTAMERICA BANCORPORATION &lt;WSAM> 1ST QTR NET Shr 98 cts vs 63 cts\n    Net 2,602,000 vs 1,571,000\n    Assets 1.15 billion vs 1.02 billion\n    Deposits 1.04 billion vs 942.1 mln\n    Loans 834.8 mln vs 729.0 mln\n    Return on avg assets 0.92 pct vs 0.63 pct\n Reuter\n&#3;',0
+'COLOMBIA COFFEE REGISTRATIONS REMAIN OPEN Colombia\'s coffee export registrations\nremain open and there are no plans to close them since a new\nmarketing policy means an unlimited amount can be registered,\nGilberto Arango, president of the private exporters\'\nassociation said.\n    \"The philosophy of the new policy is not to close\nregistrations. Nobody so far said may would be closed,\" he told\nReuters.\n    On March 13, Colombia opened registrations for April and\nMay for an unli [...]
+'GATEWAY BANCORP INC &lt;GBAN> 1ST QTR NET Shr 32 cts vs 34 cts\n    Net 902,178 vs 662,647\n    Deposits 174.7 mln vs 134.4 mln\n    NOTE: Per share amounts adjusted to reflect 10-for-one\nstock split effective Sept 16, 1986.\n Reuter\n&#3;',0
+'MORE AMERICAN BRANDS &lt;AMB> ACQUISITIONS SEEN American Brands Inc\'s 545 mln dlrs\nacquisition of National Distillers and Chemical Corp\'s liquor\nbusiness is expected to be one of a series of acquisitions by\nthe tobacco company, analysts said.\n     \"They were very frustrated with their inability to get\nChesebrough. They said they were looking for an acquisition. It\ndoesn\'t surprise me that they came up with another one,\" said\nAllan Kaplan of Merrill Lynch and Co.\n    America [...]
+'BUNDESBANK CALLS FOR CENTRAL BANK COOPERATION Bundesbank board member Claus Koehler\ncalled on central banks of major industrialised nations to\ncooperate closely on exchange and interest rate policies.\n    In a lecture at the University of Surrey, pre-released\nhere, Koehler said that the only alternative to cooperation was\nprotectionism and control on capital movements.\n    \"Central banks have sufficient experience of exchange market\ntransactions to steer exchange rates where the [...]
+'AUSTRALIAN UNEMPLOYMENT RISES IN MARCH Australia\'s seasonally adjusted\nunemployment rate rose to 8.4 pct of the estimated workforce in\nMarch from 8.2 pct in February and 7.9 pct a year earlier, the\nStatistics Bureau said.\n    The number of jobless rose to 650,700 from 631,900 in\nFebruary and 593,200 a year earlier, the Bureau said.\n    Unadjusted, the number of unemployed rose to 702,600 from\n699,600 in February but the rate eased to 9.0 pct from 9.1,\nreflecting a slight increa [...]
+'CSR SAYS IT IS RETAINING NON-DELHI GAS-OIL STAKES CSR Ltd &lt;CSRA.S> said its sale of &lt;Delhi\nPetroleum Pty Ltd> will not affect the other oil and gas\ninterests it manages or operates.\n    CSR sold Delhi, which holds an average 25 pct in the Santos\nLtd &lt;STOS.S>-led Cooper-Eromanga Basin onshore gas and liquids\njoint ventures, to an Exxon Corp &lt;XON> unit for 985 mln dlrs on\nApril 1.\n    In a statement to clarify the position, CSR said it will\nretain its Roma Gas unit, th [...]
+'JAPAN MINISTRY HAS NO COMMENT ON RICE TALKS REPORT The Agriculture Ministry declined comment\non a local newspaper report that Japan had agreed to hold talks\non its closed rice market in the new GATT round.\n    \"We have no idea about the report and cannot comment,\" a\nspokesman told Reuters.\n    Nihon Keizai Shinbun, quoting unnamed government sources,\nsaid Japan would tell U.S. Agriculture Secretary Richard Lyng\nand U.S. Trade Representative Clayton Yeutter of its\nintentions. T [...]
+'SHOWA DENKO EXPORTS ALUMINIUM CASTING EQUIPMENT &lt;Showa Denko Ltd> said it is exporting\naluminium billet casting equipment and technology to countries\nthat have recently begun aluminium smelting.\n    A company official said it won a 500 mln yen order to\ndeliver 10 sets of casting equipment to Venezuela\'s Venalum by\nend-1987. He said it received an order for one set from\nAluminium Bahrain B.S.C. Last year and expects further orders\nfrom the Bahrain smelter.\n    Showa Denko wit [...]
+'ECONOMIC SPOTLIGHT - TELECOM IS KEY JAPAN MINISTRY Japan\'s little-known Ministry of Posts and\nTelecommunications (MPT) has emerged as an international force\nto be reckoned with, political analysts said.\n    MPT, thrust into the spotlight by trade rows with the U.S.\nAnd Britain, is in a position of strength due to its control of\na lucrative industry and its ties with important politicians,\nthey said.\n    \"The ministry is standing athwart the regulatory control of\na key industri [...]
+'G-7 ISSUES STATEMENT AFTER MEETING Following is the text of a statement\nby the Group of Seven -- the U.S., Japan, West Germany, France,\nBritain, Italy and Canada -- issued after a Washington meeting\nyesterday.\n    1. The finance ministers and central bank governors of\nseven major industrial countries met today.\n    They continued the process of multilateral surveillance of\ntheir economies pursuant to the arrangements for strengthened\neconomic policy coordination agreed at the 19 [...]
+'BANK OF FRANCE TO HOLD MONEY MARKET TENDER TODAY The Bank of France said it has invited\noffers of first category paper today for a money market\nintervention tender.\n    Money market operators were divided over whether the Bank\nof France will use to occasion to cut its intervention rate,\nwhich has stood at 7-3/4 pct since March 9.\n    Some thought a price cut unlikely while others said there\nwas room for a further 1/4 point cut by the bank.\n REUTER\n&#3;',0
+'RIO TINTO-ZINC CORP PLC 1986 PRETAX PROFIT 601.7 mln stg\nvs 614.4 mln\n ',0
+'RIO TINTO-ZINC NET ATTRIBUTABLE PROFIT LOWER Year to December 31, 1986\n    SHR 78.91p vs 83.05p\n    DIV 16.5p making 23.5p vs 22p\n    PRETAX PROFIT 601.7 mln stg vs 614.4 mln\n    NET ATTRIBUTABLE PROFIT 245 mln stg vs 257 mln\n    TURNOVER 3.34 billion stg vs 3.09 billion\n    Note - Accounts have been restated\n    Full name of company is Rio Tinto-Zinc Corp Plc &lt;RTZL.L>\n    Group operating profit 529.4 mln stg vs 470.7 mln\n    Operating costs 2.81 billion stg 2.63 billion\n   [...]
+'Burmah Oil 1986 pre-tax profit 105.9 mln stg vs 79.6 mln.\n ',0
+'GERMAN BANKERS\' REMARKS REVIVE TALK OF RATE CUT Remarks by two leading central bankers\nsparked renewed speculation in financial markets that a cut in\nthe West German three pct discount rate may be under\ndiscussion, currency dealers said.\n    Bundesbank board member Claus Koehler said in a speech that\nmonetary growth resulting from speculative capital inflows\nrequired cuts in interest rates.\n    Separately, West Berlin state central bank president Dieter\nHiss told journalists th [...]
+'SOVIET TRADE DEFICIT WITH WEST SOARS IN 1986 The Soviet trade deficit with the West\nalmost quadrupled last year, reaching 2.72 billion roubles\ncompared with 713 mln in 1985, official figures showed.\n    Statistics published by the monthly journal Foreign Trade\nshowed Soviet trade turnover for 1986 fell to 130.9 billion\nroubles from 142.1 billion the previous year, a drop of 7.8\npct.\n    Moscow\'s trade surplus with East Bloc countries continued\nto grow in 1986.\n    Western anal [...]
+'BURMAH OIL PROFIT CLIMBS TO 105.9 MLN STG Year 1986\n    Shr 33.54p vs 34.2p.\n    Final div 9.5p, making 14p vs 12.75p.\n    Pre-tax profit 105.9 mln stg vs 79.6 mln.\n    Net profit before minorities 56 mln vs 52.1 mln.\n    Turnover net of duties 1.32 billion stg vs 1.46 billion.\n    Minorities 800,000 stg vs same.\n    Extraordinary debit 20.4 mln vs 28.2 mln.\n    NOTE: Company\'s full name is The Burmah Oil Co Plc &lt;BURM.L>\nREUTER^M\n&#3;',0
+'CHINA\'S WHEAT CROP THREATENED BY PESTS, DISEASE Pests and disease, which destroyed 1.1\nmln tonnes of wheat in China in 1986, are threatening crops on\n11.64 mln hectares this year, the China Daily said.\n    About 14.54 mln hectares of wheat were affected in 1986.\n    The paper said abnormal weather conditions had encouraged\nthe spread of wheat midges in 2.47 mln hectares in Shanxi,\nHenan, Sichuan, Anhui, Hebei and Jiangsu.\n    In Henan, Shandong and Hebei wheat aphids are affecti [...]
+'RTZ SEES RISING U.S. OUTPUT AIDING 1987 RESULTS Rio Tinto-Zinc Corp Plc &lt;RTZL.L>, RTZ,\nsaid the predicted rise in industrial production in the U.S.\nAnd Europe should boost its 1987 performance.\n    Consumption of some base metals and their dlr prices are\nshowing signs of improvement, although iron ore markets have\nweakened. The oil price in U.S. Dlrs is above the 1986 average,\nand if sustained, should improve energy earnings.\n    The company was commenting in a statement on it [...]
+'BRIDGESTONE CORP &lt;BRIT.T> YEAR TO DECEMBER 31 Group shr 35.99 yen vs 38.28\n    Net 21.01 billion vs 21.08 billion\n    Current 47.73 billion vs 48.06 billion\n    Operating 55.04 billion vs 54.99 billion\n    Sales 792.71 billion vs 864.28 billion\n    NOTE - Company forecast for current year is group shr 37.70\nyen, net 22 billion, current 52 billion and sales 800 billion.\n REUTER\n&#3;',0
+'EC SUGAR TENDER SEEN MARKING NO CHANGE IN POLICY The maximum export rebate granted at\nyesterday\'s EC sugar tender marked no change in policy over\nproducer complaints that they are not obtaining the EC\nintervention price in exporting sugar outside the Community, EC\nCommission sources said.\n    The maximum rebate was 46.496 Ecus per 100 kilos for\n118,350 tonnes of sugar, down from 46.864 Ecus the previous\nweek, but the change is explained by world market conditions.\n    Producers [...]
+'BURMAH OIL PROSPECTS REMAIN FAVOURABLE The current year has opened well, with\ntrading prospects remaining favourable, Burmah Oil Co Plc\n&lt;BURM.L> said in a statement with its 1986 results.\n    The company plans to maintain a steady rate of investment\nin its marketing operations and to obtain improved profit\nmargins on its liquified natural gas, LNG, project.\n    Burmah has the financial capacity to continue making\nacquisitions within its business sectors, it added. The\nrationa [...]
+'GEBRUEDER SULZER 1986 PROFIT UP ALMOST 60 PCT Year 1986\n    Consolidated net profit 67 mln Swiss francs vs 42 mln.\n    Dividend 100 francs per registered share vs 80 francs and\n10 francs per participation certificate vs eight.\n    Consolidated turnover 4.55 billion francs vs 4.54 billion.\n    Parent company net profit 38.2 mln francs vs 26.4 mln.\n    Parent company turnover 2.20 billion francs vs 2.29\nbillion.\n    Note - Company\'s full name is Gebrueder Sulzer AG &lt;SULZ.Z>\n  [...]
+'JAPAN BUSINESS LEADERS SAY G-7 ACCORD IS WORRYING The leaders of two of Japan\'s top business\ngroups said in separate statements the Group of Seven (G-7)\naccord reached in Washington yesterday is of deep concern to\nJapan because it shows the major industrial nations regard the\nyen\'s current level as appropriate.\n    Eishiro Saito, chairman of the Federation of Economic\nOrganizations (Keidanren), said the yen\'s present rate is well\nabove adequate levels. He did not elaborate.\n  [...]
+'PERGAMON HOLDINGS REDUCES BPCC AND HOLLIS STAKES &lt;Pergamon Holdings Ltd> and its associate\ncompanies said that they had sold 30 mln ordinary shares in the\nBritish Printing and Communication Corp Plc &lt;BPCL.L> and 10.5\nmln in &lt;Hollis Plc> together with other securities.\n    No total price was given but the company said the proceeds\nof the sales would be used to fund Pergamon\'s expansion\nprogramme and worldwide acquisition stategy. The company said\nthat following these sal [...]
+'NATIONALE NEDERLANDEN PROFITS, SALES STEADY Year 1986\n    Net profit 635.5 mln guilders vs 603.4 mln.\n    Revenues 17.35 billion guilders vs 17.27 billion.\n    Net profit per nominal 2.50 guilder share 5.79 guilders vs\n5.67, corrected for capital increase. (1985 uncorrected figure\n5.73).\n    Dividend 2.50 guilders vs 2.38, corrected. (2.40\nuncorrected.)\n    Note - Full name is Nationale Nederlanden NV &lt;NTNN.AS>\nREUTER\n&#3;',0
+'SHANGHAI TYREb FACTORY TO RAISE 30 MLN U.S. DLRS Ta Chung Hua Rubber Factory of\nShanghai will raise a 30 to 35 mln U.S. Dlr loan to expand and\nmodernise its plant, arranger CCIC Finance Ltd said.\n    The loan, to be lead managed by the Bank of China, is\nexpected to mature in eight to nine years, but terms have not\nbeen finalized.\n    The money will be used to import manufacturing equipment\nincluding technology transfer for the production of truck\nradial tyres. Part of the output [...]
+'SAUDI RATES RISE AS BAHRAIN BANKS CAUGHT SHORT Saudi riyal interest rates rose as\nBahrain-based banks scrambled to cover short positions, dealers\nsaid.\n    Several Bahrain banks had been lending in the fixed periods\nand borrowing in the short dates, but today they found the\nday-to-day money in short supply, dealers said.\n    \"Everybody\'s stuck in the spot-next,\" one trader said.\n    Spot-next rose to as high as 6-1/4, six pct from 5-1/4,\nfive pct yesterday, and the borrowing  [...]
+'BELGIUM TO ISSUE GOLD WARRANTS, SOURCES SAY Belgium plans to issue Swiss franc\nwarrants to buy gold, with Credit Suisse as lead manager,\nmarket sources said.\n    No confirmation or further details were immediately\navailable.\n REUTER\n&#3;',0
+'PHILIPPINE TELEPHONE FIRM PLANS STOCK SPLIT The Philippine Long Distance Telephone Co\n&lt;PLDT.MN> is planning a two-for-one stock split and a 20 pct\nstock dividend later this year to reduce excess market\nbuoyancy, Vice-President Sennen Lazo told Reuters.\n    Lazo said the stock split would reduce the par value of the\ncompany\'s common stock from 10 to five pesos.\n    He said the stock split would apply to holders of about 18\nmln common shares of stock on the record date of Septe [...]
+'CARGILL CONFIRMS WHITE SUGAR SALE TO INDIA London-based trader Cargill (U.K.) Ltd\nconfirmed it sold one cargo of white sugar to India for\nshipment April 15/May 15 at yesterday\'s tender.\n    Price details were not immediately available but some\ntraders suggested business had been done around 220 dlrs a\ntonne cif.\n    India tendered for one or two cargoes of white sugar. There\nwas no specific requirement on shipping period.\n REUTER\n&#3;',0
+'MALAYSIA SEEKS 42 BILLION YEN PIPELINE LOAN Malaysia has asked Japan for a 42\nbillion yen 25-year loan to finance the construction of gas\npipelines from eastern Trengganu to southern Johor, the\nOverseas Economic Cooperation Fund (OECF) said.\n    OECF\'s chief representative, Takashi Matsuya, told\nreporters the Japanese Government is appraising the loan.\nAnother OECF official told Reuters Japan is likely to approve\nthe loan because \"it is technically and economically viable.\"\n  [...]
+'CCF REPORTS 34.8 PCT PROFIT BOOST, SHARE SPLIT SEEN Credit Commercial de France &lt;CCFP.PA>\nreported a parent company net profit up 34.8 pct to 140.1 mln\nfrancs from 103.9 mln francs a few weeks before its\ndenationalisation around the end of this month.\n    Official sources said the bank, France\'s sixth largest in\nterms of its deposits and seventh in terms of its assets,\n\nplanned a share split to increase the number of shares on offer\nahead of the sale of 40 pct of its ordinar [...]
+'JOHNSON MATTHEY\'S PLATINUM GROUP PRICES Johnson Matthey today issued the\nfollowing Platinum group base prices (unfabricated), all U.S.\nDlrs per troy ounce.\n Previous prices in parentheses.\n PLATINUM  -   562   (567)\n PALLADIUM -   130   (130)\n IRIDIUM   -   400   (400)\n RHODIUM     1,230 (1,230)\n RUTHENIUM -    80    (80)\n&#3;',0
+'LEX SERVICE BUYS SEARS MOTOR GROUP Lex Service Plc &lt;LEXL.L> said it had\nacquired &lt;Sears Motor Group Ltd>, the retail motor distribution\narm of Sears Plc &lt; SEHL.L>, and an 11.9 mln stg loan note\npayable by Sears Motor for 33.4 mln stg.\n    The purchase will be through 1.4 mln stg in cash and the\nissue to Sears Plc of 8.0 mln new Lex ordinary shares.\n    The company said in a statement that immediately following\nthe acquisition of the motor group, its car and commercial\nv [...]
+'MAJOR RUBBER PRODUCERS TO MEET IN SINGAPORE Officials from Indonesia, Malaysia,\nSingapore and, perhaps, Thailand will meet here tomorrow to\ndiscuss increased regional cooperation on rubber marketing and\nways to raise rubber prices, industry sources said.\n    The officials will discuss linking rubber markets in the\nfour countries to improve price transparency, the sources said.\n    This is the first time Indonesia is attending such a\nmeeting, they said, but representatives from Th [...]
+'MEPC EXTENDS OFFER FOR OLDHAM MEPC Plc &lt;MEPC.L> said that its offer for\n&lt;Oldham Estates Ltd> would remain open until further notice.\n    On February 26 MEPC made an agreed bid for Oldham based on\na formula reflecting its asset value at 30 September 1986. A\nyear earlier Oldham\'s net asset value was put at 531.4 mln stg.\n    As of 1 April the valuation used under the formula had\nstill to be agreed so Oldham had yet to give a firm\nrecommendation to its shareholders regarding  [...]
+'GEORGE WIMPEY PROFITS UP 42 PCT TO 66.5 MLN STG Year to December 31, 1986.\n    Shr 18.35p vs 14.95p\n    Div 3.75p vs 2.9p making 4.75p vs 3.75p\n    Pretax profit 66.5 mln stg vs 46.9 mln\n    Tax 14.6 mln stg vs 4.5 mln\n    Net profit 51.9 mln stg vs 42.4 mln\n    Turnover 1.44 billion stg vs 1.58 billion\n    Note - Full name of company is George Wimpey Plc &lt;WMPY.L>.\n    Operating profit before exceptional items 88.9 mln stg vs\n80.5 mln\n    Exceptional debits 3.0 mln stg vs 1 [...]
+'CANADA FEBRUARY TRADE SURPLUS 1.25 BILLION DLRS AFTER\nJANUARY 623 MLN DLRS SURPLUS\n ',0
+'AEGON 1986 NET PROFIT RISES 6.4 PCT Net profit 327.1 mln guilders vs\n307.5.\n    Total revenue 7.97 billion guilders vs 8.7 billion.\n    Net profit per five guilder nominal share 9.33 guilder vs\n9.25 (corrected for capital increase).\n    Final dividend 1.30 guilders and 2.4 pct stock vs 1.30\nguilders and 2.2 pct in stock. Interim dividend already paid\nwas 1.30 guilders.\n    Note : full name of company is AEGON NV &lt;AEGN.AS>\n    REUTER\n&#3;',0
+'CANADA FEBRUARY TRADE SURPLUS 1.2 BILLION DLRS Canada had a trade surplus of 1.25\nbillion dlrs in February compared with an upward revised 623\nmln dlrs surplus in January, Statistics Canada said.\n    The January surplus originally was reported at 533 mln\ndlrs. The February surplus last year was 189 mln dlrs.\n    February exports, seasonally adjusted, were 10.44 billion\ndlrs against 9.85 billion in January and 10.05 billion in\nFebruary, 1986.\n    February imports were 9.19 billio [...]
+'BANK OF JAPAN BUYS DOLLARS IN TOKYO, DEALERS SAY The Bank of Japan bought a modest amount\nof dollars at around 145.10 yen just after the market here\nopened, dealers said.\n    Just before the opening, the dollar dropped swiftly as\nspeculators concluded the Group of Seven (G-7) comminuique\nissued in Washington contained nothing basically new, they\nsaid. It fell about a half yen, to around 145.\n    The G-7 reaffirmed that their currencies around current\nlevels reflect economic fund [...]
+'MIYAZAWA SAYS YEN STILL INSIDE PARIS RANGE Japanese Finance Minister Kiichi\nMiyazawa said the strengthening of the yen against the dollar\nthat has occurred since the Paris Agreement was within the\nrange agreed on in the Louvre discussions.\n    \"I would say that what has happened (to the yen) in the past\nseveral weeks was not outside the range we agreed to in the\ndiscussions in Paris,\" Miyazawa told a press conference\nfollowing the Group of Seven meeting here.\n    He added that [...]
+'U.K. MONEY MARKET GETS 103 MLN STG HELP The Bank of England said it operated in\nthe money market this morning, buying 103 mln stg bank bills.\n    The central bank bought in band one 60 mln stg at 9-7/8, in\nband two eight mln at 9-13/16, in band three 26 mln at 9-3/4\nand in band four nine mln stg at 9-11/16 pct.\n    This compares with the bank\'s forecast of a 400 mln stg\nshortfall today.\n REUTER\n&#3;',0
+'NATNED FORECASTS 1987 RESULTS IN LINE WITH 1986 The Netherlands\' largest insurer\nNationale Nederlanden NV &lt;NTTN.AS> (NatNed) said it expected at\nleast unchanged results in 1987 after reporting 1986 net\nprofits up 5.3 pct to 635.5 mln guilders from 603.4 mln in\n1985,\n    Revenues increased by 0.5 pct to 17.35 billion guilders\nafter 17.27 billion the previous year, and the dividend was\nraised to 2.50 guilders per share from 2.38 guilders in 1985,\ncorrected on a capital increas [...]
+' &#2;\nBANK OF FRANCE RETURN - APR 9\n Week end Apr 2 (in mln francs)\n Gold reserves 218,316 (unch)\n Convertible Currency Reserves 119,518 (116,728)\n Ecus 62,008 (62,020)\n Special Operations (advances to\n     Exchanges stabilisation fund) nil (nil)\n Special Drawing Rights 6,866 (unch)\n Notes In Circulation 209,260 (207,517)\n Foreign Liabilities 3,101 (3,082)\n&#3;\n\n',0
+'EUROPEAN MARKETS REACT QUIETLY TO G-7 COMMUNIQUE European currency markets reacted quietly\nto the G-7 communique, with comments from bankers and dealers\nranging from disappointment that it was not more concrete to\nsurprise that the markets should have expected so much.\n    The dollar opened lower against virtually all currencies\nand traded in a narrow range after the communique, which\nreaffirmed support for the Paris accord on currency\nstabilisation but contained no moves to stre [...]
+'GERMAN MONEY MARKET SPLIT ON LOWER RATE PROSPECTS Remarks by central bankers raised some\nhopes the Bundesbank will cut rates on securities repurchase\npacts, but operators remained divided on the likelihood of a\nmove in the near term, money market dealers said.\n    Comments by Bundesbank board member Claus Koehler yesterday\nthat rate cuts were needed to curb money supply growth from\nspeculative capital inflows, and by West Berlin state central\nbank president Dieter Hiss that there [...]
+'THAILAND TO RENEW LONG TERM SUGAR CONTRACTS -TRADE Thailand is to negotiate tomorrow with\nselected trade houses for renewal of long term raw sugar sales\ncontracts, to cover the next five years at a rate of 60,000\ntonnes annually, traders said.\n    They also reported vague talk Algeria may be seeking 50,000\ntonnes of raws tomorrow but details are unclear.\n REUTER\n&#3;',0
+'EC LAUNCHES ANTI-DUMPING PROBE ON JAPANESE CHIPS The European Community launched an\ninvestigation into allegations of dumping by Japanese\nsemiconductor makers in a move which diplomats said could mark\nan intensification of world trade strains.\n    Tokyo already faces a deadline of April 17 from Washington\nfor the imposition of 300 mln dlrs worth of tariffs on chips it\nimports into the U.S.\n    The EC Executive Commission said today the European\nElectrical Component Manufacturers [...]
+'SWISS TO LAUNCH NEW SERIES OF MONEY MARKET PAPER The Swiss Federal Government will launch\na new series of three month money market certificates totalling\naround 150 mln Swiss francs, the National Bank said.\n    Subscriptions close April 14 and payment date is April 16.\n    The last series of three month paper issued in March raised\n147.3 mln francs at an issue price of 99.142 pct, giving an\naverage annual yield of 3.501 pct.\n    REUTER\n&#3;',0
+'EUROPEAN MARKETS REACT QUIETLY TO G-7 COMMUNIQUE European currency markets reacted quietly\nto the G-7 communique, with comments from bankers and dealers\nranging from disappointment that it was not more concrete to\nsurprise that the markets should have expected so much.\n    The dollar opened lower against virtually all currencies\nand traded in a narrow range after the communique, which\nreaffirmed support for the Paris accord on currency\nstabilisation but contained no moves to stre [...]
+'FINANCE MINISTERS AGREE ON NEED FOR STABILITY Finance ministers from seven major\nindustrialized nations agreed on the need to stabilize\ncurrencies at current levels but said more action was needed to\nreduce trade imbalances and sustain economic growth.\n    In a communique issued after a four-hour meeting at the\nU.S. Treasury that ended last night, the ministers said the\nvalue of the dollar and other currencies was basically correct\nnow, and they welcomed new measures planned by t [...]
+'AEGON EXPECTS MODERATE RISE IN 1987 PROFITS Dutch insurer AEGON NV &lt;AEGN.AS>\nreported a 6.4 pct increase in 1986 net profits to 327.1 mln\nguilders and said it expected a moderate increase in profits\nfor 1987.\n    Total revenue was eight pct lower in 1986 at 7.97 billion\nguilders vs 8.7 billion guilders in 1985. The company said its\nrevenues were down due to lower foreign exchange rates and a\nchange in accounting practice. It added that revenues would\nhave risen by about seven [...]
+'G-7 ISSUES STATEMENT AFTER MEETING Following is the text of a statement\nby the Group of Seven -- the U.S., Japan, West Germany, France,\nBritain, Italy and Canada -- issued after a Washington meeting\nyesterday.\n    1. The finance ministers and central bank governors of\nseven major industrial countries met today.\n    They continued the process of multilateral surveillance of\ntheir economies pursuant to the arrangements for strengthened\neconomic policy coordination agreed at the 19 [...]
+'G-7 WANTS TO SHOW MARKETS ITS RESOLVE - MIYAZAWA Japanese Finance Minister Kiichi\nMiyazawa said the Group of Seven (G-7) countries reaffirmed\ntheir Paris accord on stabilising currencies to convince the\nmarket of their resolve.\n    At a news conference after today\'s G-7 meeting, Miyazawa\nsaid the ministers and central bank governors did not believe a\ntotally new statement was needed.\n    The speculative selling did not reflect economic\nfundamentals, and since the fundamentals h [...]
+'YEN SEEN RISING AFTER G-7 COMMUNIQUE The yen is likely to start another\nuneven rise against the dollar and other major currencies\nbecause the Group of Seven communique contained nothing new,\ncurrency and bond analysts here said.\n    \"Is that it? I was expecting something more than that,\" said\none trader at a major Wall Street securities company.\n    Marc Cohen of Republic National Bank of New York said: \"The\nmarket now has the impetus to drive the dollar lower again.\"\n    Th [...]
+'JAPAN BUSINESS LEADERS SAY G-7 ACCORD IS WORRYING The leaders of two of Japan\'s top business\ngroups said in separate statements the Group of Seven (G-7)\naccord reached in Washington yesterday is of deep concern to\nJapan because it shows the major industrial nations regard the\nyen\'s current level as appropriate.\n    Eishiro Saito, chairman of the Federation of Economic\nOrganizations (Keidanren), said the yen\'s present rate is well\nabove adequate levels. He did not elaborate.\n  [...]
+'UNIFIRST CORP &lt;UNF> SETS QUARTERLY Qtly div five cts vs five cts prior\n    Pay July One\n    Record June 17\n Reuter\n&#3;',0
+'&lt;TRUMP PLAZA> 4TH QTR NET Net profit 2,529,000 vs loss 1,066,000\n    Revs 59.0 mln vs 52.6 mln\n    Year\n    Net profit 15.4 mln vs profit 865,000\n    Revs 247.0 mln vs 231.1 mln\n    NOTE: Company became wholly owned and operated by Donald\nTrump in May 1986, when he acquired 50 pct interest that had\nbeen owned by former operator Holiday Corp &lt;HIA>.\n Reuter\n&#3;',0
+'EUROPEAN MARKETS REACT QUIETLY TO G-7 COMMUNIQUE European currency markets reacted quietly\nto the G-7 communique, with comments from bankers and dealers\nranging from disappointment that it was not more concrete to\nsurprise that the markets should have expected so much.\n    The dollar opened lower against virtually all currencies\nand traded in a narrow range after the communique, which\nreaffirmed support for the Paris accord on currency\nstabilisation but contained no moves to stre [...]
+'WEST GERMAN BEET PLANTINGS DELAYED THREE WEEKS Unseasonal cold weather has delayed\nsugar beet plantings in West Germany by up to three weeks, the\nagriculture ministry said.\n    A ministry spokesman said in some central areas, especially\nin the Rhineland, farmers have taken advantage of warmer\nweather and started plantings in the past two days.\n    West German planting intentions this year are put at\n381,000 hectares, down from 390,500 ha last year, he said,\nadding that the 1980/ [...]
+'STEP-SAVER &lt;CODA> SAYS WARRANT EXERCISED Step-Saver Data Systems Inc\nsaid Bergen-Richards Corp has exercised a warrant to buy\n450,000 Step-Saver shares at two dlrs each.\n    It said warrants issued to the underwriter in its initial\npublic offering were exercised in March for an aggregate of\n169,200 dlrs.\n Reuter\n&#3;',0
+'COAST SAVINGS &lt;CSA> IN TALKS ON BUYING BANK Coast Savings and Loan Association\nsaid it is in talks with the Federal Savings and Loan Insurance\nCorp on the acquisition of Central Savings and Loan Association\nof San Diego.\n    Central, which operates 46 branches, has been under\nmanagement guidance of the FSLIC since May 1985.\n    Coast said the acquisition would give it an entry into the\nSan Joaquin Valley market besides strengthening its presence in\nthe San Diego, Los Angeles  [...]
+'BRAMALL TO ACQUIRE GELCO FOR UP TO 26.3 MLN DLRS &lt;C.D. Bramall Plc> said in a statement\naccompanying its annual results that it proposed to acquire\nGelco U.K. For some 26.3 mln dlrs.\n    Part of the cost will be met by the issue of 2.14 mln new\nordinary Bramall shares which are being placed at 265p each.\n    The acquisition will be satisfied by an initial payment of\nsome 25.3 mln dlrs in cash with further payments of 500,000\ndlrs up to a maximum 26.3 mln dlrs. These further pa [...]
+'BELGIUM LAUNCHES BONDS WITH GOLD WARRANTS The Kingdom of Belgium is launching 100\nmln Swiss francs of seven year notes with warrants attached to\nbuy gold, lead mananger Credit Suisse said.\n    The notes themselves have a 3-3/8 pct coupon and are priced\nat par. Payment is due April 30, 1987 and final maturity April\n30, 1994.\n    Each 50,000 franc note carries 15 warrants. Two warrants\nare required to allow the holder to buy 100 grammes of gold at\na price of 2,450 francs, during t [...]
+'FAO SEES LOWER GLOBAL WHEAT, GRAIN OUTPUT IN 1987 The U.N. Food and Agriculture Organisation\n(FAO) said global wheat and coarse grain output was likely to\nfall in 1987 but supplies would remain adequate to meet demand.\n    FAO said in its monthly food outlook bulletin total world\ngrain output was expected to fall 38 mln tonnes to 1,353 mln in\n1987, due mainly to unusually high winter losses in the Soviet\nUnion, drought in China and reduced plantings in North America.\n    World ce [...]
+'CB AND T BANCSHARES INC &lt;CBTB> 1ST QTR NET Shr 27 cts vs 24 cts\n    Net 5,223,000 vs 4,682,000\n    Avg shrs 19.7 mln vs 19.4 mln\n    NOTE: Results reflected pooled acquisition of First\nCommunity Bancshares Inc on March 31, 1987 and include Camden\nBancorp from January 31, 1987 purchase.\n Reuter\n&#3;',0
+'XICOR INC &lt;XICO> 1ST QTR MARCH 22 NET Shr profit five cts vs loss 16 cts\n    Net profit 689,000 vs loss 1,910,000\n    Revs 12.3 mln vs 9,432,000\n    NOTE: 1987 net includes 276,000 dlr tax credit.\n Reuter\n&#3;',0
+'GEORGE WIMPEY SAYS BENEFITS OF RESTRUCTURING SEEN George Wimpey Plc &lt;WMPY.L> said  the\noutlook for 1987 looked encouraging as the company realised the\ncontinuing benefits of restructuring.\n    It said its overall financial position showed further\nimprovement in 1986 and the reshaping of its U.K. Business into\nclearly defined and activity related divisions had been\nsuccessfully achieved.\n    Wimpey was commenting in a statement on its 1986 results\nwhich showed pretax profits u [...]
+'C.O.M.B. &lt;CMCO> MAKES ACQUISITION C.O.M.B. Co said it has acquired\nthe principal assets of National Tech Industries Inc and Telkom\nCorp, which are engaged in the sale and telemarketing of\nconsumer electronic merchandise and do business as House of\nImports and N.L. Industries respectively.\n    The company said it paid a total of 8,700,000 dlrs,\nincluding the assumption of liabilities.\n    National Tech had sales of about 23 mln dlrs for 1986, it\nsaid.\n Reuter\n&#3;',0
+'BELGIUM LAUNCHES BONDS WITH GOLD WARRANTS The Kingdom of Belgium is launching 100\nmln Swiss francs of seven year notes with warrants attached to\nbuy gold, lead manager Credit Suisse said.\n    The notes themselves have a 3-3/8 pct coupon and are priced\nat par. Payment is due April 30, 1987, and final maturity April\n30, 1994.\n    Each 50,000 franc note carries 15 warrants. Two warrants\nare required to allow the holder to buy 100 grammes of gold at\na price of 2,450 francs, during t [...]
+'DATATRAK INC &lt;DTRK> 3RD QTR FEB 28 NET Shr profit nil vs profit nil\n    Net profit 27,622 vs profit 5,556\n    Sales 1,031,306 vs 840,906\n    Nine mths\n    Shr loss one ct vs loss two cts\n    Net loss 195,095 vs loss 445,379\n    Sales 2,702,085 vs 2,219,961\n Reuter\n&#3;',0
+'MIYAZAWA SAYS YEN STILL INSIDE PARIS RANGE Japanese Finance Minister Kiichi\nMiyazawa said the strengthening of the yen against the dollar\nsince the Paris Agreement was within the range agreed in the\nLouvre discussions.\n    \"I would say that what has happened (to the yen) in the past\nseveral weeks was not outside the range we agreed to in the\ndiscussions in Paris,\" Miyazawa told a press conference\nfollowing the Group of Seven meeting here.\n    He said the current discussions we [...]
+'TODD SHIPYARDS &lt;TOD> STRUCK ON WEST COAST Todd Shipyards Corp said\nproduction workers represented by the multi-union Pacific Coast\nMetal Trades District Council at its San Francisco division\nstruck on April Six.\n    It said negotiations are expected to resume at the end of\nthis month.\n    Todd also said the collective bargaining division in effect\nat its Galveston Division expires April 17, and negotiations\nwith the Galveston Metal Trades Council are continuing.\n    The comp [...]
+'U.S. FIRST TIME JOBLESS CLAIMS FELL IN WEEK New applications for unemployment\ninsurance benefits fell to a seasonally adjusted 338,000 in the\nweek ended March 28 from 355,000 in the prior week, the Labor\nDepartment said.\n    The number of people actually receiving benefits under\nregular state programs totaled 2,436,000 in the week ended\nMarch 21, the latest period for which that figure was\navailable.\n    That was down from 2,480,000 the previous week.\n     \n Reuter\n&#3;',0
+'CLEVITE INDUSTRIES SAYS J.P. INDUSTRIES OFFERED 13.50\nDLRS A SHARE TO BUY COMPANY\n ',0
+'SUNTRUST BANKS INC &lt;STI> 1ST QTR NET Shr 54 cts vs 49 cts\n    Net 70.2 mln vs 64.0 mln\n    NOTE: Share adjusted for two-for-one split in July 1986.\n    Results restated for pooled acquisition of Third NAtional\nCorp in December 1986.\n    Net chargeoffs 15.0 mln dlrs vs 14.2 mln dlrs.\n    Assets 25.8 billion dlrs, up 7.2 pct from a year earlier,\ndeposits 21.1 billion, up 9.4 pct, and loans 17.1 billion dlrs,\nup 17.2 pct.\n Reuter\n&#3;',0
+'INTERNATIONAL THOMSON TO REPORT IN U.S. FUNDS &lt;International Thomson Organisation Ltd>\nsaid it will report financial results in U.S. funds rather than\nsterling, beginning from Jan 1, 1987.\n    It said the change will not be applied retroactively to\nprior financial periods.\n    The company said as a result of recent investments, most of\nits assets now are located in the United States.\n            \n Reuter\n&#3;',0
+'PHILIP CROSBY ASSOCIATES INC &lt;PCRO> 4TH QTR NET Shr three cts vs 18 cts\n    Net 220,000 vs 1,250,000\n    Revs 11.8 mln vs 9,430,000\n    Year\n    Shr 45 cts vs 69 cts\n    Net 3,400,000 vs 4,037,274\n    Revs 45.1 mln vs 34.3 mln\n Reuter\n&#3;',0
+'COLONIAL AMERICAN BANKSHARES CORP &lt;CABK> 1ST QTR Shr 52 cts vs 40 cts\n    Qtly div 18 cts vs 15 cts prior\n    Net 793,740 vs 603,661\n    NOTE: Share adjusted for 10 pct stock dividend in November\n1986.\n    Dividend pay May One, record April 25.\n Reuter\n&#3;',0
+'RPT - ARGENTINE GRAIN/OILSEED EXPORT PRICES ADJUSTED The Argentine Grain Board adjusted\nminimum export prices of grain and oilseed products in dlrs per\ntonne FOB, previous in brackets, as follows:\n    Sorghum 64 (63), sunflowerseed cake and expellers 103 (102)\n, pellets 101 (100), meal 99 (98), linseed oil 274 (264),\ngroundnutseed oil 450 (445), soybean oil 300 (290), rapeseed\noil 290 (280).\n    Sunflowerseed oil for shipment through May 323 (313) and\njune onwards 330 (320).\n   [...]
+'CLEVITE &lt;CLEV> GETS 13.50 DLR/SHR OFFER Clevite Industries Inc said it\nreceived a written proposal from J.P. Industries Inc &lt;JPI>\nseeking to buy all of its outstanding shares for 13.50 dlrs a\nshare.\n    Clevite\'s stock was trading on NASDAQ at 13-1/4.\n    J.P. Industries recently completed the acquisition of\nClevite\'s Engine Parts Division.\n    J.P. Industries said its proposed transaction would be\nfinanced through borrowings under its available bank lines and\na bridge  [...]
+'JAPAN BUSINESS LEADERS SAY G-7 ACCORD WORRYING The leaders of two of Japan\'s top business\ngroups said in separate statements the Group of Seven (G-7)\naccord reached in Washington yesterday is of deep concern to\nJapan because it shows the major industrial nations regard the\nyen\'s current level as appropriate.\n    Eishiro Saito, chairman of the Federation of Economic\nOrganizations (Keidanren), said the yen\'s present rate is well\nabove adequate levels. He did not elaborate.\n     [...]
+'ARGENTINE CATTLE MARKET REPORT ABOUT 3,314 HEAD OF CATTLE WERE\nAUCTIONED IN LINIERS CATTLE MARKET, AGAINST 13,952 ON WEDNESDAY\nAND 9,217 LAST THURSDAY, TRADE SOURCES SAID.\n    MAXIMUN PRICES, IN AUSTRALES PER KILO, WITH DOLLAR\nEQUIVALENT IN BRACKETS, INCLUDED:\n                               TODAY     WEDNESDAY\n    STEERS OVER 480 KILOS   1.02(0.658) 1.015(0.654)\n    STEERS 460 TO 480 KILOS 1.05(0.677) 1.032(0.665)\n    COWS FOR CANNING        0.56(0.361) 0.56 (0.361) REUTER\n&#3;',0
+'U.K. MONEY MARKET DEFICIT REVISED DOWNWARD The Bank of England said it has revised\nits estimate of today\'s shortfall to 350 mln stg from 400 mln,\nbefore taking account of 103 mln stg morning assistance.\n REUTER\n&#3;',0
+'PHYSIO TECHNOLOGY &lt;PHYT> SEES LOSS, IN DEFAULT Physio Technology Inc said it\nexpects to have a third quarter, ended March 31, loss of about\n200,000 dlrs and is in default on its bank loan because of the\nresignation of chairman and chief executive officer.\n    The company said the loss followed four quarters of modest\nprofits. In the year ago quarter it earned 11,000 dlrs, or one\ncent a share. For the first half of fiscal 1987, it reported a\nprofit of 42,000 dlrs, or two cts a  [...]
+'WASHINGTON FEDERAL SAVINGS &lt;WFSL> 2ND QTR NET Qtr ends March 31\n    Shr one dlr vs 76 cts\n    Net 11.9 mln vs 8,929,000\n    Six mths\n    Shr 1.92 dlrs vs 1.43 dlrs\n    Net 22.8 mln vs 16.8 mln\n    NOTE: full name of bank is washington federal savings and\nloan association.\n Reuter\n&#3;',0
+'U.S. ENERGY FUTURES CALLED UNCHANGED TO LOWER Traders expect U.S. energy futures will\nopen unchanged to slightly lower this morning with support near\nyesterday\'s lows.\n    Crude futures are called unchanged to five cts weaker\ntracking unchanged domestic crudes and North Sea Brent crude,\nwhich traded at 18.01 dlrs a barrel today, about ten cts below\nyesterday\'s New York close.\n    Traders said the supply squeeze in 15-day forward April\nBrent appears to have ended.\n    Product  [...]
+'PONCE FEDERAL BANK F.S.B. &lt;PFBS> 1ST QTR NET Shr 63 cts vs 89 cts\n    Net 3,425,216 vs 3,370,682\n    Avg shrs 5,421,330 vs 3,803,425\n    NOTE: net for both qtrs reflects gains on sales of\nsecurities of 1,755,137, or 51 pct of net, in 1987; and\n3,001,222, or 89 pct of net in 1986.\n Reuter\n&#3;',0
+' BUNDESBANK SEES NO REASON TO CHANGE MONETARY COURSE -\nVICE-PRESIDENT SCHLESINGER\n ',0
+'U.K. MONEY MARKET DEFICIT REMOVED The Bank of England said it has satisfied\nits revised estimate of today\'s shortfall in the money market,\nproviding 261 mln stg assistance in afternoon operations.\n    The Bank bought in band one, 60 mln stg bank bills at 9-7/8\npct and in band two 200 mln stg bank bills and one mln stg\ntreasury bills at 9-13/16 pct. This brings the total help so\nfar today to 364 mln stg, compared with its deficit estimate of\n350 mln stg.\n REUTER\n&#3;',0
+'LEBANESE POUND FALLS SHARPLY AGAINST DOLLAR The Lebanese Pound fell sharply against\nthe U.S. Dollar again today with dealers attributing the\ndecline to continued political uncertainty.\n    The pound closed at 118.25/118.75 against the dollar\ncompared to yesterday\'s close of 115.60/115.80.\n    \"Political deadlock is reflected in the pound\'s position.\nThere was more demand and less on offer in the market,\" one\ndealer told Reuters.\n    The pound, which was at 18 to the dollar i [...]
+'BROWN BOVERI UND CIE AG LIFTS 1986 DIVIDEND Dividend on 1986 business 12 marks per share vs seven\nmarks.\n    (Company is a subsidiary of Switzerland\'s BBC AG Brown\nBoveri und Cie &lt;BBCZ.Z>).\n Reuter\n&#3;',0
+'LONDON FREIGHT MARKET FEATURES GRAIN OUT OF U.S. Moderately active grain fixing was\nreported out of the U.S. But none of the business involved the\nsignificant voyages to the Continent or Japan, ship brokers\nsaid.\n    A steady 13.50 dlrs was paid from the U.S. Gulf to Morocco\nand 23.25 dlrs was paid for 27,000 long tons from the Gulf to\nTaiwan. A vessel carrying 13,500 long tons of bagged wheat\nflour from the Gulf to Aqaba received a lump sum of 472,500\ndlrs.\n    Grain from the  [...]
+'HOG AND CATTLE SLAUGHTER GUESSTIMATES Chicago Mercantile Exchange floor\ntraders and commission house representatives are guesstimating\ntoday\'s hog slaughter at about 287,000 to 295,000 head versus\n292,000 week ago and 322,000 a year ago.\n    Cattle slaughter is guesstimated at about 124,000 to\n128,000 head versus 129,000 week ago and 134,000 a year ago.\n Reuter\n&#3;',0
+'WHIRLPOOL CORP 1ST QTR SHR 66 CTS VS 67 CTS\n ',0
+'BRAZILIAN SOY RAINFALL THE FOLLOWING RAINFALL WAS RECORDED IN\nTHE 24 HOURS UP TO (1200) GMT TODAY\n    PARANA STATE: CASCAVEL NIL, PONTA GROSSA NIL,CAMPO MOURAO\nNIL, LONDRINA NIL, MARINGA NIL.\n    RIO GRANDO DO SUL STATE: PASSO FUNDO NIL, SANTA MARIA 7.0\nMILLIMETRES, CRUZ ALTA 8.5 MM, SAO LUIZ GONZAGA 4.4 MM. REUTER\n&#3;',0
+'BUNDESBANK SEES NO CHANGE IN MONETARY COURSE The Bundesbank sees no current reason\nto change monetary course, vice-president Helmut Schlesinger\ntold Reuters in a telephone interview.\n    Schlesinger was responding to questions following remarks\nyesterday by Bundesbank board member Claus Koehler and West\nBerlin state central bank president Dieter Hiss, which, dealers\nsaid, revived some speculation that German interest rate cuts\nmay once again be under discussion.\n    Schlesinger  [...]
+'BRAZILIAN COFFEE RAINFALL THE FOLLOWING RAINFALL WAS RECORDED IN\nTHE AREAS OVER THE PAST 24 HOURS\n    PARANA STATE: UMUARAMA NIL, PARANAVAI NIL, LONDRINA NIL,\nMARINGA NIL.\n    SAO PAULO STATE PRESIDENTE PRUDENTE NIL, VOTUPORANGA NIL,\nFRANCA NIL, CATANDUVA NIL, SAO CARLOS NIL, SAO SIMAO NIL.\n    MINAS GERAIS STATE: GUAXUPE NIL, TRES PONTAS NIL. REUTER\n&#3;',0
+'E.F. HUTTON LBO INC SAID TENDER OFFER BY PC ACQUISITTION\nFOR PUROLATOR COURIER EXPIRED\n ',0
+'WORLD BANK TO SUPPORT SRI LANKA IF DEFICITS CUT The World Bank will support Sri Lanka\'s\ndevelopment program provided the country reduces its budget and\ncurrent account deficits, the Ministry of Finance said.\n    It said Bank President Barber Conable at a meeting with Sri\nLanka\'s Finance Minister Ronnie de Mel in Washington also\nemphasised the need for structural adjustment and reform to the\neconomy, battered by five years of separatist disturbances.\n    Officials said Sri Lanka [...]
+'E.F. HUTTON LBO INC SAYS UNIT TERMINATES MERGER AGREEMENT\nWITH PUROLATOR COURIER\n ',0
+'GEMINA HAS NO COMMENT ON AMBROSIANO REPORT Holding company &lt;Gemina Spa> said it had\nno comment on an Italian press report today that it has\nacquired a 12 pct stake in &lt;Nuovo Banco Ambrosiano Spa>.\n    Italian daily La Repubblica said that Gemina paid 205\nbillion lire for the shareholding from several Italian banks. A\nGemina spokeswoman told Reuters, \"We have nothing to say about\nthe report.\"\n    A spokeswoman for Milan-based Ambrosiano said, \"We have no\ninformation at t [...]
+'VOLKSWAGEN DIVIDEND UNCHANGED ON 1986 Dividend on 1986 business unchanged at 10 marks per\nordinary share. Company also set dividend of 11 marks for new\npreference shares, which were issued last year.\n    (Note: Company has said profit will match 1985 level,\ndespite provisions of 480 mln marks connected with alleged\ncurrency fraud. Group net profit in 1985 was 596 mln marks,\nparent company net was 477 mln marks. Company\'s full name is\nVolkswagen AG &lt;VOWG.F>).\n REUTER\n&#3;',0
+'WHIRLPOOL CORP &lt;WHR> 1ST QTR NET Shr 66 cts vs 67 cts\n    Net 48,700,000 vs 49,300,000\n    Sales 961.0 mln vs 870.6 mln\n    Avg shrs 74,123,837 vs 73,374,398\n Reuter\n&#3;',0
+'U.S. SAID TO VIEW G-7 MEETING AS MAJOR SUCCESS The United States, which has long\nsought Japanese action to stimulate its economy, appears to be\nsatisfied Tokyo\'s latest package is a major development and\nallows leading industrial nations to reaffirm their agreement\nto stabilize currencies.\n    Monetary sources said they believed that U.S. Treasury\nSecretary James Baker considered Tokyo\'s package, announced\nyesterday, to be a major stimulation of the Japanese economy.\n    But y [...]
+'BANK OF FRANCE LEAVES INTERVENTION RATE UNCHANGED The Bank of France said it left its\nintervention rate unchanged at 7-3/4 pct when it injected funds\nin the market against first category paper in today\'s money\nmarket intervention tender.\n    Money market dealers had earlier expressed mixed views on\nthe possibility of quarter point cut.\n    The rate was last adjusted on March 9, when it was cut to\n7-3/4 pct from the eight pct rate set in January.\n REUTER\n&#3;',0
+'GLOBAL ECONOMIC SLOWDOWN RAISES NEW DEBT FEARS The global economy is expected to\nweaken this year, adding new worries to an already serious\npoverty outlook, economic analysts said.\n    For finance ministers and central bankers attending this\nweek\'s semi-annual meetings of the International Monetary Fund\nand World Bank, the new figures released by the IMF add an\nadditional concern.\n    The Fund estimated world output would only grow by 2.7 pct\nthis year, versus 2.9 pct last year [...]
+'SPANISH EMPLOYERS WORRIED BY HIGH INTEREST RATES The head of Spain\'s employers\'\nfederation, Jose Maria Cuevas, said employers were worried\nabout the government\'s monetary policies because high real\ninterest rates were hampering investment.\n    He told a news conference wage pacts signed so far this\nyear were not endangering the government\'s five pct inflation\ntarget. The government\'s perceived need to control inflation by\nkeeping a tight rein on credit was unnecessary, he sa [...]
+'SHOWBOAT &lt;SBO> DECLARES STOCK SPLIT Showboat Inc said its board declared a\ntwo-for-one stock split, payable to shareholders of record on\nMay 15.\n Reuter\n&#3;',0
+'LEAD PRICES RISE ON FINELY BALANCED PHYSICALS Lead prices have risen this week against\na background of a finely balanced physical sector, traders\nsaid.\n    Further gains are possible if the USSR steps up its buying\nor if labour problems develop in North America, they added.\n    London Metal Exchange (LME) prices are unusually buoyant at\na time of year when seasonal demand is normally slackening and\nprices tending to drift lower.\n    This buoyancy is generally attributed by trade [...]
+'REXHAM CORP &lt;RXH> 1ST QTR NET Shr 70 cts vs 42 cts\n    Net 2,918,000 vs 1,746,000\n    Sales 68.3 mln vs 53.5 mln\n    NOTE: 1987 net includes pretax gain 400,000 dlrs from\nchange in pension accounting.\n    1987 results include Production Graphics Corp and Systems\nTechnology and Weapons System Test Divisions of NEw Technology\nInc, acquired December 30, 1986.\n Reuter\n&#3;',0
+'FIRST EASTERN CORP &lt;FEBC> 1ST QTR NET Shr 50 cts vs 47 cts\n    Net 3,445,000 vs 3,193,000\n    NOTE: Share adjusted for two-for-one stock split in January\n1987.\n Reuter\n&#3;',0
+'FHLBB CHANGES SHORT-TERM DISCOUNT NOTE RATES The Federal Home Loan Bank Board\nadjusted the rates on its short-term discount notes as follows:\n    MATURITY   NEW RATE  OLD RATE  MATURITY\n  30-174 days  5.00 pct  5.00 pct    30-87 days\n 175-190 days  5.85 pct  5.82 pct   88-103 days\n 191-270 days  5.00 pct  5.00 pct  104-179 days\n 271-288 days  5.92 pct  5.85 pct  180-205 days\n 289-360 days  5.00 pct  5.00 pct  206-360 days\n                       \n Reuter\n&#3;',0
+'ANCHOR FINANCIAL &lt;AFCX> TO MAKE ACQUISITION Anchor Financial Corp said it\nhas agreed to acquire Waccamaw State Bank of Surfside Beach,\nS.C., in an exchange of 1.435 Anchor shares for each Waccamaw\nshare, subject to regulatory and shareholder approvals.\n    Waccamaw had assets of 22.8 mln dlrs as of March 31.\n Reuter\n&#3;',0
+'STOLTENBERG NOT SURPRISED BY DOLLAR REACTION West German Finance Minister Gerhard\nStoltenberg said he was not surprised by the overnight decline\nof the dollar in foreign exchange markets.\n    Speaking briefly with reporters before entering a meeting\nof the International Monetary Fund he said, \"These minor\nmovements don\'t really affect us.\"\n    The dollar declined in the initial reaction to a statement\nby the Group of Seven industrial countries reaffirming their\nParis agreemen [...]
+'ASARCO UPS U.S. LEAD PRICE 0.50 CT TO 26.50 CTS Asarco Inc said it is increasing its\nbase spot sales price for refined lead by one-half cent to\n26.50 cents a lb, FOB, delivered in carload lots, effective\nimmediately.\n Reuter\n&#3;',0
+'E.F. HUTTON &lt;EFH> UNIT\'S PUROLATOR OFFER EXPIRES E.F. Hutton LBO Inc said the tender\noffer by its wholly owned unit, PC Acquisition Inc, for\nPurolator Courier Corp &lt;PCC> expired at 2400 EDT yesterday\nwithout the purchase of any Purolator common stock.\n    Hutton added that PC Acquisition also terminated its merger\nagreement with Purolator.\n    Hutton said the offer, which had been conditioned upon the\ntender of at least 5,116,892 Purolator shares, or about\ntwo-thirds of t [...]
+'ABBOTT LABORATORIES 1ST QTR NET SHR 62 CTS VS 52 CTS\n ',0
+'INDIA FOODGRAIN TARGET 160 MLN TONNES IN 1987/88 India\'s national foodgrain target has\nbeen fixed at 160 mln tonnes in 1987/88 (Apr-Mar), unchanged\nfrom the 1986/87 target, the Agriculture Ministry said in its\nannual report for 1986/87.\n    Actual output was estimated at 151 mln tonnes in 1986/87\ndue to failure of monsoon rains in 15 out of 35 meterological\nsub-divisions of the country.\n    The report gave the targets for various crops with\nestimated harvested crops in 1986/87  [...]
+'CERTIFICATED COTTON STOCKS Certificated cotton stocks deliverable\non the New York Cotton Exchange No 2 cotton futures contract as\nof April 8 were reported at 34,661 bales, down 421 bales from\nthe previous day\'s figure. There were no bales awaiting review\nand 1,218 bales awaiting decertification.\n Reuter\n&#3;',0
+'REICHHOLD CHEMICAL &lt;RCI> SETS ANTI-TAKEOVER PLAN Reichhold Chemical Inc said its\nboard adopted a warrant dividend plan in which one preferred\nstock purchase right will be distributed as a dividend on each\ncommon share outstanding.\n    The company said its warrant dividend plan is designed to\nprotect its shareholders against unsolicted, coercive attempts\nto aquire control without making an adequate offer for all\nshares.\n    Reichhold said the adoption is not a response to any\ [...]
+'ABBOTT LABORATORIES INC &lt;ABT> 1ST QTR NET Shr 62 cts vs 52 cts \n    Net 142.0 mln vs 123.0 mln\n    Sales 1.00 billion vs 865.0 mln\n\n Reuter\n&#3;',0
+'HANSON &lt;HAN> TO BUY INT\'L PROTEIN &lt;PRO> STOCK International Proteins Corp said\nit has agreed to sell in a private placement 330,000 common\nshares at 11.75 dlrs a share to a U.S. subsidiary of Hanson\nTrust Plc.\n    In addition, David Clarke the president of another Hanson\nTrust subsidiary, Hanson Industries, will be named chairman of\nInternational Proteins\'s executive committee upon his election\nto the board at the annual meeting.\n    International Proteins recently acqui [...]
+'EGYPT BUYS PL 480 WHEAT FLOUR - U.S. TRADERS Egypt bought 125,723 tonnes of U.S.\nwheat flour in its PL 480 tender yesterday, trade sources said.\n    The purchase included 51,880 tonnes for May shipment and\n73,843 tonnes for June shipment. Price details were not\navailable.\n Reuter\n&#3;',1
+'SPAIN HAS 35 MLN DLR CURRENT SURPLUS FEBRUARY Spain had a 35 mln dlr current account\nsurplus in February compared with a 68 mln dlr surplus in\nJanuary and a 355 mln dlr surplus in February last year, Bank\nof Spain figures show.\n    Spain\'s trade deficit narrowed to 581 mln dlrs compared\nwith 664 mln dlrs in January but the large increase in non-oil\nimports contributed to the substantial increase over the 159\nmln dlr deficit registered in February 1986.\n    Exports at 2.58 billi [...]
+'INDIA OILSEED OUTPUT FORECAST TO RISE India\'s oilseed output is expected to\nrise to 12.25 mln tonnes in 1986/87 ending October, up on 11.15\nmln in 1985/86 but down from 12.95 mln harvested in 1984/85,\nthe Agriculture Ministry\'s 1986/87 report said.\n    But the forecast for 1986/87 is well below a target of 14.8\nmln tonnes fixed for the year, it said, adding bad weather hit\ngroundnut and other oilseed crops.\n    The National Oilseeds Development Program will invest 300\nmln rupe [...]
+'EXXON &lt;XON> SOUTH AFRICAN UNIT ACQUIRED BY ZENEX &lt;Zenex Oil Pty Ltd> said it\nacquired the interests of Esso South Africa, the local\nsubsidiary of Exxon Corp &lt;XON), and will use up to 20 mln rand\nin profits to finance educational and social programs.\n    The profit scheme will begin after Zenex has paid Exxon an\nundisclosed purchase price for Esso, Zenex chairman John\nTruscott said in a statement.\n    The acquisition follows the Exxon withdrawal from South\nAfrica announc [...]
+'SALLIE MAE ADJUSTS SHORT-TERM DISCOUNT NOTE RATES The Student Loan Marketing\nAssociation said its rates on short-term discount notes were as\nfollows:\n    MATURITY   NEW RATE    OLD RATE  MATURITY\n    5-14 days  5.80 pct    5.75 pct     5-14 days\n  15-360 days  5.00 pct    5.00 pct    15-85 days\n                           5.80 pct    86-91 days\n                           5.00 pct   92-176 days\n                           5.83 pct  177-183 days\n                           5.00 pct  [...]
+'FREDDIE MAC ADJUSTS SHORT-TERM DISCOUNT RATES The Federal Home Loan Mortgage Corp\nadjusted the rates on its short-term discount notes as follows:\n   MATURITY   RATE       OLD RATE  MATURITY\n    33 days   6.00 pct   6.00 pct  33 days\n  \n Reuter\n&#3;',0
+'ARGENTINE GRAIN BELT WEATHER REPORT ARGENTINE GRAIN BELT TEMPERATURES\n(CENTIGRADE) AND RAIN (MM) IN THE 24 HOURS TO 12.00 GMT WERE:\n    ...............MAX TEMP..MIN TEMP..RAINFALL\n    BUENOS AIRES.......24.......12............0\n    BAHIA BLANCA.......22........7............0\n    TRES ARROYOS.......22........8............0\n    TANDIL.............22........7............0\n    JUNIN..............24.......11............0\n    SANTA ROSA.........--........6............0\n    CORDOBA... [...]
+'VW SAYS 480 MLN MARKS MAXIMUM FOR CURRENCY LOSSES Losses for Volkswagen AG\n&lt;VOWG.F>, VW, linked to an alleged foreign currency fraud will\nnot exceed the 480 mln marks provision already made, a VW\nspokesman said.\n    The spokesman was commenting after VW had confirmed it\nwould pay an unchanged 10 mark dividend for ordinary shares on\n1986 business, despite the provision.\n    One West German newspaper today quoted foreign currency\ndealers in Frankfurt as speculating that the tot [...]
+'YUGOSLAVIA TO TENDER FOR 100,000 TONNES WHEAT Yugoslavia will tender April 14 for\n100,000 tonnes of wheat, the U.S. Agriculture Department\'s\nCounselor in Belgrade said in a field report.\n    The report, dated April 7, said the wheat must be from 1986\nand 1987 harvest, and imports of soft wheat from Europe and\nfrom other suppliers will not be considered.\n    It said the imports will be used to rebuild the federal\nreserves and as a result will not be subject to import\nsurcharges. [...]
+'FEDERATED DEPARTMENT STORES MARCH SALES UP 4.9 PCT\n ',0
+'PRICES GENERALLY LOWER AT NAIROBI COFFEE AUCTION Prices were lower at this week\'s coffee\nauction for all grades and qualities except better quality AB\ngrades, which held steady, the Coffee Board of Kenya said.\n    The board said it offered 35,000 bags and sold 32,876.\n    So far this coffee year, Kenya has sold 918,707 bags to all\nmarkets, of which 326,182 are for the 1986/7 pool, with an\noverall average price of 41,500 shillings a tonne, it added.\n    The board will offer 35,00 [...]
+'ALEX. BROWN &lt;ABSB> SETS SPLIT, TO OFFER SHARES Alex. Brown Inc said it has declared a\nthree-for-two stock split, payable May 29, record May 22.\n    The company also said it has filed to offer 912,000 common\nshares, including 162,000 to be sold by a shareholder, with\ncompany proceeds to be used for working capital and general\ncorporate purposes.  Its Alex. Brown and Sons Inc subsidiary is\nlead underwriter.\n    The offering is expected to be made before the record date\nof the s [...]
+'HIGHLAND SUPERSTORES INC &lt;HIGH> 4TH QTR NET Period ended Jan 31\n    Shr 38 cts vs 61 cts\n    Net 7,012,000 vs 11,193,000\n    Revs 223.0 mln vs 200.3 mln\n    Year\n    Shr 1.11 dlrs vs 1.36 dlrs\n    Net 20,214,000 vs 23,602,000\n    Revs 656.5 mln vs 520.5 mln\n    Avg shrs 18,257,631 vs 17,376,480\n Reuter\n&#3;',0
+'LVI GROUP &lt;LVI> TO MAKE ACQUISITION LVI Group Inc said it has agreed in\nprinciple to purchase all outstanding shares of &lt;Spectrum\nHolding Corp> for a proposed 13 mln dlrs in cash.\n    LVI said an additional 10 mln dlrs in common stock and\nseven mln dlrs in notes will become payable if Spectrum has\ncertain minimum future earnings.\n    LVI, an interior construction firm, said the acquisition is\nsubject to execution of a definitive agreement and completion\nof due diligence.\n [...]
+'TEXAS AMERICAN &lt;TAE> OMITS PREFERRED PAYOUT Texas American Energy Corp said\nits board has decided to again omit the quarterly dividend on\nits 2.575 dlr cumulative convertible exchangeable preferred\nstock.\n    The dividend would have been payable May One.  The company\nlast paid 64.3 cts a share on the issue in August 1986.\n Reuter\n&#3;',0
+'VORNADO INC &lt;VNO> 4TH QTR JAN 31 NET Shr 1.64 dlrs vs 1.56 dlrs\n    Net 4,583,000 vs 5,313,000\n    Revs 20.1 mln vs 19 mln\n    Avg shrs 2.8 mln vs 3.4 mln\n    Year\n    Shr 5.06 dlrs vs 5.92 dlrs\n    Net 16 mln vs 20.3 mln\n    Revs 74.6 mln vs 68 mln\n    Avg shrs 3.2 mln vs 3.4 mln\n Reuter\n&#3;',0
+'BRENDA MINES SELLING KERR ADDISON SHARES &lt;Brenda Mines Ltd> said it sold\n2,830,390 &lt;Kerr Addison Mines Ltd> shares to a group of\nunderwriters led by Wood Gundy Inc and Brown, Baldwin Nisker\nLtd for redistribution.\n    Financial terms were undisclosed.\n Reuter\n&#3;',0
+'PHOENIX FINANCIAL &lt;PHFC> BUYS DATA ACCESS STAKE Data Access Systems Inc said\nchairman David Cohen has sold 1,800,000 common shares to\nPhoenix Financial corp for undisclosed terms and resigned as\nchairman and chief executive officer.\n    The company said Phoenix Financial now has a 27 pct\ninterest in Data Access and effective control.\n    Data Access said Phoenix chairman Martin S. Ackerman has\nbeen named chairman of Data Access as well and two other\nPhoenix representatives ha [...]
+'HEALTH AND REHABILITATION &lt;HRP> INITIAL PAYOUT Health and Rehabilitation\nProperties Trust said it declared an intitial dividend of 55\ncts per share for the period ending March 31, 1987\n    The dividend will be payed May 20 to shareholders of record\non April 20, the company said.\n    The company said it organized in late 1986 and closed its\nintitial public offering of shares Dec 23, 1986.\n    The initital dividend includes five cts attributable to the\nperiod between Dec 23 and [...]
+'T. ROWE PRICE &lt;TROW> SEES HIGHER FIRST QUARTER T. Rowe Price Associates said its\nfirst quarter earnings rose about 50 pct from the year-ago\n2,634,000 dlrs and revenues about 30 pct from the year-ago 24.2\nmln dlrs.\n    It said it expects \"very good\" earnings and revenue growth\nthis year.  In 1986 it earned 14.8 mln dlrs on revenues of\n111.1 mln dlrs.\n Reuter\n&#3;',0
+'GENERAL PARTNERS CUTS STAKE IN GENCORP &lt;GY> General Partners told the Securities\nand Exchange Commission it has reduced its stake in GenCorp Inc\nto 8.6 pct, from 9.8 pct, by selling 250,000 shares at a price\nequal to 118.5 dlrs per share.\n    General Partners, which includes GC Holdings Inc and\nGeneral Acquisitions Inc, said yesterday it was dropping its\n100-dlr-a-share hostile takeover bid for GenCorp because of\nGenCorp\'s move to buy back its shares for up to 130 dlrs each.\ [...]
+'HERITAGE FINANCIAL SERVICES &lt;HERS> 1ST QTR NET Shr 45 cts vs 43 cts\n    Net 1,503,000 vs 938,000\n    Avg shrs 3,358,664 vs 2,158,664\n    NOTE: Company had its initial public offering of 1,200,000\nshares in October, 1986\n Reuter\n&#3;',0
+'NATIONAL COMPUTER &lt;NLCS> SEES EARNINGS GROWTH National Computer Systems Inc\nexpects fiscal year earnings to improve by about 20 pct, the\ncompany told analysts, although it said the April 30 first\nquarter should show \"down earnings and virtually flat\nrevenues.\"\n    Chairman Charles Oswald said National Computer has taken\nsteps to improve margins. He said revenues are expected to\nincrease modestly because of the company\'s decision to downsize\nits leasing business, nonrecurri [...]
+'U.K. CHANCELLOR LAWSON SAYS THERE MAY BE NEED TO CUT\nINTEREST RATES IN SOME COUNTRIES\n ',0
+'REXHAM &lt;RXH> REPURCHASES STAKE FROM NORTEK &lt;NTK> Rexham Corp said it has\nrepurchased 381,050 of its shares or 9.1 pct from Nortek Inc\nfor 42 dlrs each, and Nortek has withdrawn its proposal to\nacquire Rexham for 43 dlrs per share.\n    Rexham said Nortek has also agreed not to buy Rexham shares\nor take other actions under a 10-year standstill agreement. \nThe Rexham board had rejected the Nortek bid as inadequate.\n    The company also said its board has authorized the\nrepurc [...]
+'EXXON &lt;XON> CUTS HEATING OIL PRICE, TRADERS SAID Oil traders in the New York area said\nExxon Corp\'s Exxon U.S.A. unit reduced the price it charges\ncontract barge customers for heating oil in New York harbor\n0.50 cent a gallon, effective today.\n    They said the reduction brings Exxon\'s contract barge price\nto 49.75. The price decrease follows sharp declines in heating\noil prices in the spot and futures markets, traders said.\n Reuter\n&#3;',0
+'FHLBB CHANGES SHORT-TERM DISCOUNT NOTE RATES The Federal Home Loan Bank Board\nadjusted the rates on its short-term discount notes as follows:\n    MATURITY   NEW RATE  OLD RATE  MATURITY\n  30-174 days  5.00 pct  5.00 pct   30-174 days\n 175-190 days  5.88 pct  5.85 pct  175-190 days\n 191-270 days  5.00 pct  5.00 pct  191-270 days\n 271-288 days  5.92 pct  5.92 pct  271-288 days\n 289-360 days  5.00 pct  5.00 pct  289-360 days\n                       \n Reuter\n&#3;',0
+'&lt;STRATHFIELD OIL AND GAS LTD> YEAR NET Shr 46 cts vs 48 cts\n    Net 1,196,331 vs 1,341,314\n    Revs 5,153,109 vs 7,680,350\n Reuter\n&#3;',0
+'FED MAY ADD RESERVES TO BANKING SYSTEM The Federal Reserve may intervene in\nthe government securities market to supply temporary reserves\nindirectly via customer repurchase agreements, economists said.\n    They said that while the Fed faces no great urgency to add\nreserves at the start of the two-week maintenance period today\nit would probably do so in order to offset a relatively high\nfederal funds rate.\n    Fed funds opened at 6-3/16 pct and remained there in early\ntrading. Ye [...]
+'DIAMOND CRYSTAL &lt;DSLT> MIGHT SELL SALT UNIT Diamond Crystal Salt Co said it\nmight sell its salt division.\n    The company said it retained First Boston Corp to assist it\nwith the possible sale of the division, \"assuming a fair price\nand reasonable terms can be obtained.\"\n    Diamond Crystal said sale of the unit was in the best\nlong-term interests of its shareholders.\n    The company also said it incorporated its Packet Products\nDivision as of April one. The unit will be an [...]
+'LAWSON SAYS SOME COUNTRIES COULD CUT RATES Nigel Lawson, Britain\'s Chancellor of\nthe Exchequer, said some countries may need to cut interest\nrates with the aim of maintaining exchange rate stability.\n    Speaking to journalists one day after the Group of Seven\ncountries reaffirmed goals set in Paris six weeks ago, he said\ncentral banks would continue to intervene \"as and when\nnecessary.\"\n    He said the G-7 countries were concerned that Japan do more\nto stimulate domestic dem [...]
+'FRENCH FREE MARKET CEREAL EXPORT BIDS DETAILED French operators have requested licences\nto export 320,000 tonnes of free market barley, 225,000 tonnes\nof maize, 25,000 tonnes of free market bread-making wheat and\n20,000 tonnes of feed wheat at today\'s EC tender, trade sources\nsaid.\n    For the barley, rebates of between 138 and 141.25 European\ncurrency units (Ecus) per tonne were sought, for maize they\nwere between 129.65 and 139 Ecus, for bread-making wheat around\n145 Ecus and [...]
+'U.K. POTATO FUTURES TRADING NOT TO BE SUSPENDED Trading on the London potato futures\nmarket will not be suspended, Richard Harris, Chairman of the\nLondon Potato Futures Association (LPFA), said in a statement\nto floor members.\n    It was in response to strong representations by the Potato\nMarketing Board (PMB) complaining of a gross distortion of\nprice which they say will result in large deliveries into the\nphysical market when the April futures position expires.\n    The PMB had [...]
+'GROUP OF 10 WELCOMES LATEST G-7 AGREEMENT The Group of 10 developed nations\nissued a communique welcoming the reaffirmation of the Paris\naccord on currency stability by the Group of Seven leading\nindustrial democracies yesterday.\n    In the communique issued this morning, the G-10 said\n\"prospects of member countries\' economies would be improved by\nstability in the exchange rates of their currencies.\"\n    The G-10 includes the group of seven - the United States,\nCanada, Britai [...]
+'CANAM MANAC WINS 8.5 MLN DLR CONTRACT (The Canam Manac Group Inc) said its\nCanam Steel Works unit received a contract valued at 8.5 mln\ndlrs to supply steel trusses to (Canron Inc) for a new car\nplant in Ingersoll, Ontario.\n    Canam Manac said it will produce the trusses at its Quebec\nand Ontario plants and delivery will be completed by August.\n Reuter\n&#3;',0
+'SPOT TIN EASIER ON EUROPEAN FREE MARKET Spot tin on the European free market was\nindicated in the easier range 4,200 to 4,230 stg per tonne, for\nhigh grade metal in warehouse Rotterdam, down 20 stg from\nyesterday\'s afternoon kerb close.\n    Stability in sterling versus the dollar continued to apply\npressure to a market which is coming close to testing a\npsychological chart support base at 4,200 stg, traders said.\n    Dealers said major consumers still need to cover their May\nan [...]
+'DOLLAR ENDS LOWER IN LACKLUSTRE FRANKFURT The dollar drifted down to end one\npfennig lower after a lacklustre session, held in limits by the\nlack of concrete news from the Group of Seven meeting and\ncomments on the edge of the Washington IMF/World Bank meeting.\n    Dealers said the communique early in the European morning\nfrom the G-7 meeting contained no significant new factors and\nalthough the dollar dipped it generally resisted further\nattempts to push it lower through the day [...]
+'CONSOLIDATED PAPERS INC &lt;CPER> 1ST QTR NET Shr 1.01 dlrs vs 1.08 dlrs\n    Net 21,983,000 vs 23,434,000\n    Sales 174.9 mln vs 161.7 mln\n Reuter\n&#3;',0
+'HUMANA &lt;HUM> TO SELL MEDICAL OFFICES Humana Inc said it has agreed in\nprinciple to sell 68 MedFirst primary medical care facilities\nto &lt;Primedical Corp> for undisclosed terms, with transfers\ntaking place over the next four months.\n    It said it retains 37 MedFirst offices, mostly in the\nChicago area.\n    The transaction is not expected to have any impact on\nearnings, Humana said.\n Reuter\n&#3;',0
+'MET-COIL SYSTEMS CORP&lt;METS> 3RD QTR FEB 28 NET Shr seven cts vs nine cts\n    Net 168,000 vs 206,000\n    Sales 15.3 mln vs 10.9 mln\n    Nine mths\n    Shr 10 cts vs 38 cts\n    Net 228,000 vs 649,000\n    Sales 35.8 mln vs 32.5 mln\n    Qtly div three cts vs three cts prior\n    Pay April 30\n    Record April 20\n Reuter\n&#3;',0
+'FORD RAISES QTLY PAYOUT 10 CTS/SHR TO 75 CTS\n ',0
+'LAWSON SEES NO CHANGE IN U.K. MONETARY POLICY British Chancellor of the Exchequer\nNigel Lawson said he saw no immediate implications for British\nmonetary policy arising from the Group of Seven meeting\nyesterday.\n    \"Exchange rate stability is in the U.K.\'s interest,\" he told\njournalists.\n    Asked what it meant for U.K. monetary policy, he said, \"No,\nI do not think there are any immediate implications.\"\n Reuter\n&#3;',0
+'FORD MOTOR CO &lt;F> RAISES QTLY PAYOUT Qtly div 75 cts vs 65 cts prior\n    Pay June one\n    Record May one\n Reuter\n&#3;',0
+'TALKING POINT/STEEL COMPANIES Steel stocks, which have had a healthy\nrunup recently, still present some short term investment\nopportunities, according to some steel analysts.\n    But others say the upturn, based on strong orders and firm\nprices this spring, has been strictly seasonal and will end\nsoon. They recommend taking profits.\n    \"It\'s that time of year. This is strictly seasonal,\" said\nCharles Bradford of Merrill Lynch and Co. \"Orders will be\nstrong for about two mon [...]
+'DEKALB CORP &lt;DKLBB> 2ND QTR FEB 28 NET Shr 20 cts vs 14 cts\n    Net 2.4 mln vs 1.7 mln\n    Revs 136.7 mln vs 174.4 mln\n    Six Mths\n    SDhr 72 cts vs 82 cts\n    Net 8.6 mln vs 9.9 mln\n    Revs 212.5 mln vs 268.8 mln\n Reuter\n&#3;',0
+'ABBOTT &lt;ABT> SEES GAINS FROM WEAKER DOLLAR Abbott Laboratories Inc said\nits 1987 first quarter record results reflected continued\nproductivity improvement, higher volume, better product mix and\na weaker U.S. dollar.\n    Abbott reported 1987 first quarter earnings rose to a\nrecord 142 mln dlrs or 62 cts a share on record sales of one\nbillion dlrs.\n    Research and development expenses, most of which was\napplied to diagnostic and pharmaceutical products, increased by\n23 pct to [...]
+'EASTERN DISTRIBUTIVE BEEF TRADE WEEKLY - USDA Demand good for moderate\nsupplies of most beef cuts, However, limited interest noted for\ntenderloins/flank steaks. Yield grade 2-3 beef cuts, fabricated\nitems, vacuum packed.\n                          LBS    CHOICE\n ROUND CUTS -steady/up 11.00                 \n 160 round, part bnls     50-85  few 137\n 161 round, bnls          42-80  few 147\n 161 diamond cut          49-85  few 149\n 167 knuckle               8-15  few 148\n 167a knuc [...]
+'BRAZIL COTTON CROP LOWER -- USDA REPORT Brazil\'s 1986/87 cotton crop estimate\nhas been reduced to 710,000 from 735,000 tonnes (lint basis),\nthe U.S. Agriculture Department\'s officer in Sao Paulo said in\na field report.\n    The report, dated April 7, said the reduction is based on\nan expected smaller harvest in the center-south region.\n    The center-south crop is now estimated at 550,000 tonnes --\n25,000 tonnes below the previous estimate.\n    Hot, dry weather during part of J [...]
+'TREASURY\'S BAKER SAYS TRADE, CURRENT ACCOUNT IMBALANCES \"SIMPLY NOT SUSTAINABLE\"\n ',0
+'EC AUTHORISES EXPORT 55,000 TONNES MAIZE,  MAXIMUM REBATE 130 ECUS/TONNE - TRADE SOURCES.\n ',1
+'EC AUTHORISES EXPORT 65,000 TONNES BARLEY,  MAXIMUM REBATE 138.75 ECUS - BRUSSELS TRADE\n ',1
+'RJR NABISCO FIRST QUARTER NET TO INCLUDE 208 MLN DLR GAIN, 209 MLN DLR CHARGE\n ',0
+'BRAZIL COCOA EXPORTERS UNLIKELY TO LIMIT SALES Brazilian cocoa exporters are not\nlikely to follow the example of Cocoa Producers Alliance, CPA,\nmembers, who may limit sales of the product in an effort to\nboost world prices, trade sources said.\n    They said a similar procedure was taken in the past in\nBrazil and that it did not work out according to plans.\n    \"The cocoa market is completely free. Unlike coffee, which\nis controlled through export registrations, cocoa exporters i [...]
+'HEALTH/REHABILITATION &lt;HRP> SETS FIRST PAYOUT Health and Rehabilitation\nProperties Trust said its board declared an initial dividend of\n55 cts, including 50 cts for the first quarter just ended and\nfive cts from its initial operating period that began December\n23.\n    The dividend is payable May 30, record April 20.\n Reuter\n&#3;',0
+'U.S. TREASURY\'S BAKER SAYS RATE SHIFTS ORDERLY Treasury Secretary James Baker said\nthat changes in exchange rates have generally been orderly and\nhave improved the prospects for a reduction in external\nimbalances to more sustainable levels.\n    In remarks before the IMF\'s policy-making Interim\nCommittee, Baker reiterated a Group of Seven statement last\nnight that the substantial exchange rate changes since the\nPlaza agreement 18 months ago have \"now brought currencies\nwithin  [...]
+'TIME &lt;TL> TO SELL PART OF UNIT Time Inc said its Time-Life Video Inc\nsubsidiary has agreed in principle to sell its institutional\ntraining business to Time-Life Video president William V.\nAmbrose for undisclosed terms.\n    It said the business will operate as Ambrose Video\nPublishing.\n Reuter\n&#3;',0
+'SPRINKEL SAYS TAX HIKE WOULD NOT REDUCE DEFICIT Council of Economic Advisers chairman\nBeryl Sprinkel said the Reagan Administration remains strongly\nopposed to a tax increase, including 18 billion dlrs of new\nrevenues in the budget plan by Congressional Democrats.\n    \"We believe that significant increases in taxes would not\nreduce deficits and could have adverse effects on growth,\"\nSprinkel told the House Rules Committee.\n    He said the Administration wanted to continue its p [...]
+'ROYAL BUSINESS GROUP INC &lt;ROY> 2ND QTR MARCH ONE Shr 49 cts vs five cts\n    Shr diluted 45 cts vs five cts\n    Net 651,000 vs 95,000\n    Revs not given\n    1st half\n    Shr 57 cts vs one ct\n    Shr diluted 53 cts vs one ct\n    Net 781,000 vs 56,000\n    Revs not given\n    NOTE: Current year net both periods includes gain 873,000\ndlrs from repurchase of securities.\n    Results exclude Business Forms Division, which is to be\nsold.\n Reuter\n&#3;',0
+'&lt;MSE CABLE SYSTEMS INC> 4TH QTR NET Shr nil vs nil\n    Net 18,534 vcs 27,431\n    Revs 270,032 vs 188,326\n    Avg shrs 6,598,871 vs 6,090,576\n    Year\n    Shr nil vs nil\n    Net 47,299 vs 21,570\n    Revs 1,004,392 vs 677,909\n    Avg shrs 6,618,063 vs 5,931,324\n    NOTE: Share adjusted for one-for-11 reverse split.\n Reuter\n&#3;',0
+'RULE INDUSTRIES INC &lt;RULE> 2ND QTR FEB 28 NET Shr 17 cts vs 10 cts\n    Net 408,000 vs 237,000\n    Revs 8,863,000 vs 6,738,000\n    1st half\n    Shr 27 cts vs 15 cts\n    Net 647,000 vs 356,000\n    Revs 17.2 mln vs 12.5 mln\n Reuter\n&#3;',0
+'NEW JERSEY INVESTOR BUYS 5.2 PCT OF KINARK &lt;KIN> A New Jersey investor, Joseph\nFalkenstein, told the Securities and Exchange Commission he\nholds 5.2 pct of the shares of Kinark Corp.\n    He said he has no plans to change the company and that he\nbought the shares because he believed the stock was undervalued\nand would rise in the next six months.\n reuter\n&#3;',0
+'NATIONAL DISTILLERS &lt;DR> SEES SECOND QTR GAIN National Distillers and Chemical Corp\nexpects to realize a second quarter after-tax gain of four dlrs\nper share from the 545 mln dlr sale of its spirits business to\nAmerican Brands Inc &lt;AMB>.\n    National Distillers\' stock rose 1-1/8 to 65-1/2, after an\nopening delay on the New York Stock exchange for an imbalance\nof orders.\n    \"I think the sales price was higher than most people\nexpected,\" said John Henry of E.F. Hutton Gr [...]
+'WEATHER HURTS ITALIAN ORANGES - USDA REPORT Unfavorable weather conditions during\nthe second week of March caused damage to oranges in the\nCalabria region in southern Italy, the U.S. Agriculture\nDepartment\'s officer in Rome said in a field report.\n    The report, dated April 3, said the region accounts for\nabout 22,000 hectares of the Italian orange crop or about 26\npct of total production.\n    However, orange production in the region for marketing year\n1986/87 is forecast at 5 [...]
+'EC GRANTS FREE MARKET BARLEY, MAIZE EXPORTS The European Commission authorised the\nexport of 65,000 tonnes of free market barley at today\'s tender\nat a maximum rebate of 138.75 European currency units and\n55,000 tonnes of French maize at 130 Ecus, grain traders here\nsaid.\n    It rejected bids for breadmaking and feed wheat, they said.\n Reuter\n&#3;',1
+'FED BUYING DOLLARS FOR YEN IN OPEN MARKET, NEW YORK DEALERS SAY\n ',0
+'WASTE RECOVERY INC &lt;WRII> 4TH QTR NET Shr loss eight cts vs loss nine cts\n    Net loss 311,255 vs loss 157,941\n    Revs 546,069 vs 284,636\n    Avg shrs 3,790,235 vs 1,819,680\n    Year\n    Shr loss 27 cts vs loss 24 cts\n    Net loss 858,624 vs loss 399,385\n    Revs 1,491,518 vs 1,407,441\n    Avg shrs 3,175,157 vs 1,692,700\n Reuter\n&#3;',0
+'BRANCH CORP &lt;BNCH> 1ST QTR NET Shr primary 99ct vs 82 cxts\n    Shr diluted 93 cts vs 78 cts\n    Net 7,784,000 vs 6,357,000\n    Assets 3.25 billion vs 2.74 billion\n    Deposits 2.58 billion vs 2.24 billion\n    Loans 2.20 billion vs 1.81 billion\n Reuter\n&#3;',0
+'KURZ-KASCH UPS STAKE IN COMPONENT TECH &lt;CTEC> Kurz-Kasch Inc, a Dayton thermoset\nmolding maker, told the Securities and Exchange Commission it\nhad increased its holdings in Component Technology Corp by two\npct, to 9.3 pct.\n    It said it bought the 39,000 shares of stock at 5.30-6.875\ndlrs a share for investment purposes.\n Reuter\n&#3;',0
+'BRAZIL SOYBEAN YIELDS SEEN AVERAGE - USDA REPORT Based on field travel in the\nBrazilian state of Parana, soybean yields should be about\naverage or 2.0 to 2.2 tonnes per hectare, the U.S. Agriculture\nDepartment\'s officer in Sao Paulo said in a field report.\n    The report, dated March 24, noted Parana accounts for about\n20 to 24 pct of Brazil\'s total soybean crop.\n    It said generally favorable weather from early December\nthrough February helped compensate for earlier dryness.\ [...]
+'ZAYRE CORP &lt;ZY> RAISES QUARTERLY Qtly div 10 cts vs eight cts prior\n    Pay June Four\n    Record May 14\n Reuter\n&#3;',0
+'FED SEEN BUYING DOLLARS FOR YEN IN OPEN MARKET The Federal Reserve was detected buying\ndollars for yen in the open market as the dollar fell to a\n40-year low of 144.60 yen in nervous late morning trading,\ncurrency dealers said.\n     They said the size of the intervention was relatively\nmodest so far but it was a clear indication that the U.S.\nremained committed to the late February Paris currency\nstabilization accord, which was reaffirmed in Washington last\nnight.\n    A Fed spo [...]
+'RJR NABISCO &lt;RJR> HAS OFFSETTING GAINS, CHARGES RJR Nabisco Inc said its\n1987 first quarter results will include an after-tax gain of\n208 mln dlrs from the sale of Heublein Inc and offsetting\ncharges.\n    The company said its operations are performing well and in\nline with expectations.\n    RJR Nabisco said the charges reflect reserves it\nestablished to cover certain expenses.\n    RJR Nabisco said the expenses covered, on after-tax basis,\ninclude --\n    -- 50 mln dlrs for t [...]
+'BAYBANKS INC &lt;BBNK> 1ST QTR NET Oper shr 1.08 dlrs vs 96 cts\n    Oper shr diluted 1.02 dlrs vs 89 cts\n    Oper net 16.1 mln vs 12.8 mln\n    Avg shrs 14.9 mln vs 13.4 mln\n    Avg shrs 16.1 mln vs 14.8 mln\n    NOTE: 1987 net excludes gain 4,820,000 dlrs from cumulative\neffect of change in calculating depreciation expense.\n Reuter\n&#3;',0
+'FRANCE\'S BALLADUR SAYS TARGET ZONE NOTION NEARER French Finance Minister Edouard\nBalladur said that the financial community is closer to\narriving at a system of target zones for currencies despite the\nfact that little is being said about them.\n    Speaking with reporters at the semiannual meetings of the\nInternational Monetary Fund, Balladur said, \"We are not very far\nfrom the notion of target zones, even if we don\'t say so.\"\n    He told reporters that \"our ideas are progres [...]
+'STUDENT LOAN MARKETING ASSOCIATION &lt;SLM> 1ST QTR Shr 95 cts vs 71 cts\n    Net 42.4 mln vs 34.5 mln\n    Assets 18.61 billion vs 15.66 billion\n Reuter\n&#3;',0
+'FIRE AT TATE/LYLE LONDON JETTY HALTS UNLOADING No raw sugar is being unloaded at Tate\nand Lyles refinery at Silvertown on the River Thames following\na fire yesterday afternoon, Tate and Lyle Plc said.\n    The fire destroyed a large sector of the main conveyor from\nthe raw sugar jetty to the weighhouse.\n    The company said it is not yet known how long the jetty\nwill be out of use but it hoped that by tomorrow unloading of\nthe bulk carrier Mykon Wave will be able to continue using [...]
+'JP INDUSTRIES &lt;JPI> CONFIRMS PROPOSAL JP Industries Inc confirmed the\nannouncement by Clevite Industries Inc &lt;CLEV> that JP\nIndustries has submitted a proposal to Clevite for the\nacquisition of the company at 13.50 dlrs per share in cash.\n    John Psarouthakis, chairman and president of JP Industries,\nsaid that the company hopes to promptly negotiate an agreement\nwith the special committee of Clevite\'s board.\n    In February, JP Industries said it purchased Clevite\'s\neng [...]
+'MEDITRUST &lt;MTRUS> RAISES QUARTERLY Qtly div 43 cts vs 38 cts prior\n    Pay May 15\n    Record April 30  \n Reuter\n&#3;',0
+'MONSANTO &lt;MTC> UNIT SEES OPERATING LOSS IN 1987 Monsanto Corp\'s G.D. Searle and Co unit\nsaid it will report an operating loss for 1987, mainly due to\nexpenses for research and development.\n    Searle chairman Sheldon Gilgore said Searle\'s operating\nloss in 1987 will be less than the 87 mln dlr operating loss in\n1986.\n    He said Searle\'s first quarter sales will be up 21.8 pct to\n179 mln dlrs from 147 mln dlrs in the year ago quarter. In 1986\nSearle\'s sales were 665 mln d [...]
+'STATUS GAME CORP &lt;STGM> 3RD QTR FEB 28 NET Oper shr six cts vs one ct\n    Oper net 194,109 vs 28,751\n    Revs 2,731,688 vs 347,134\n    Avg shrs 3,360,527 vs 2,295,359\n    Nine mths\n    Oper shr 11 cts vs five cts\n    Oper net 356,571 vs 111,545\n    Revs 5,923,907 vs 1,491,852\n    Avg shrs 3,296,982 vs 2,289,762\n    NOTE: Share adjusted for 10 pct stock dividend in December\n1986. Prior year net excludes tax credits of 5,775 dlrs in\nquarter and 17,325 dlrs in nine mths.\n    [...]
+'UNIVERSAL FOODS CORP &lt;UFC> VOTES DIVIDEND Qtly div 20 cts vs 20 cts prior qtr\n    Pay 6 May\n    Record 21 April\n Reuter\n&#3;',0
+'BETZ LABORATORIES INC &lt;BETZ> SETS QUARTERLY Qtly div 35 cts vs 35 cts prior\n    Pay May 14\n    Record April 30\n Reuter\n&#3;',0
+'NORTHWESTERN NATIONAL LIFE &lt;NWNL> UPS PAYOUT Qtly div 24 cts vs 21-1/2 cts prior\n    Pay May 15\n    Record April 24\n    NOTE: Northwestern National Life Insurance Co.\n Reuter\n&#3;',0
+'GRAIN SHIPS WAITING AT NEW ORLEANS Ten grain ships were loading and 14\nwere waiting to load at New Orleans elevators, trade sources\nsaid.\n ELEVATOR                     LOADING  WAITING\n Continental Grain, Westwego     1      6\n Mississippi River, Myrtle Grove 1      0\n ADM Growmark                    1      4\n Bunge Grain, Destrehan          1      0\n    ELEVATOR                LOADING  WAITING\n ST CHARLES DESTREHAN         1      1\n RESERVE ELEVATOR CORP        1      0\n PEA [...]
+'FOOTHILL &lt;FGI>, SIERRITA IN STANDSTILL ACCORD Foothill Group Inc said it reached a\nstandstill agreement with Santa Cruz Resources Inc and its\nparent, Sierrita Resources Inc, that bars the companies from\nacquiring more than a 30 pct interest in Foothill, except\nthrough a business combination approved by Foothill\'s board.\n    The company also said Santa Cruz has advised it that it\nowns 24.7 pct of Foothill\'s outstanding common stock.\n    In addition, Santa Cruz and Sierrita ha [...]
+'FIRST FEDERAL OF MICHIGAN &lt;FFOM> 1ST QTR NET Shr 3.33 dlrs vs 3.39 dlrs\n    Net 37,069,000 vs 36,902,000\n    Avg shrs 10.95 mln vs 10.05 mln\n Reuter\n&#3;',0
+'COLONIAL BANCGROUP &lt;CLBGA> MAKES ACQUISITION Colonial BancGroup said it has\nsigned letter of intent to acquire Community Bank and Trust of\nHartselle, Ala., with assets of 26 mln dlrs, for undisclosed\nterms, subject to approval by regulatory authorities and\nCommunity Bank shareholders.\n    Completion is expected within the next year, it said.\n Reuter\n&#3;',0
+'FAB INDUSTRIES INC &lt;FIT> 1ST QTR FEB 28 NET Shr 69 cts vs 67 cts\n    Net 2,488,000 vs 2,435,000\n    Revs 27.6 mln vs 26.5 mln\n Reuter\n&#3;',0
+'EC COMMISSION AUTHORISED TO BUY MAIZE IN JUNE The European Commission was authorised\nto buy up to one mln tonnes of maize into intervention stores\nin the second half of June, although sales into intervention\nnormally end on April 30, Commission sources said.\n    They said approval was given by the EC\'s Cereals Management\nCommittee because of the possible disturbance of the market due\nto heavy imports of maize under the agreement between the EC\nand the United States.\n    The agr [...]
+'JAPAN BUYS 5,000 TONNES CANADIAN RAPESEED Japan bought 5,000 tonnes Canadian\nrapeseed overnight at an undisclosed price for May shipment,\ntrade sources said.\n Reuter\n&#3;',0
+'NORTHERN TRUST CORP &lt;NTRS> 1ST QTR NET Shr 87 cts vs 73 cts\n    Net 14.7 mln vs 11.7 mln\n    Assets 8.38 billion vs 7.43 billion\n    Loans 3.91 billion vs 3.40 billion\n    Deposits 5.60 billion vs 5.08 billion\n Reuter\n&#3;',0
+'COLOMBIA JAN EXPORTS UP BUT COFFEE VALUES FALL The value of colombian exports other than\ncoffee rose 55 pct in january compared with the same period\nlast year, apparently setting a trend for the trade balance in\n1987, government statistics institute figures show.\n    They amounted to 180.8 mln dlrs fob compared with 147.5 mln\ndlrs for coffee, a drop of 42 pct from last year.\n    The trade balance registered a 35 mln dlr surplus, compared\nwith a 56 mln dlr surplus in january 1986. [...]
+'LONDON GRAIN FREIGHTS 27,000 long tons\nUSG/Taiwan 23.25 dlrs fio five days/1,500 1-10/5 Continental.\n    Trade Banner - 30,000 long tons grain USG/Morocco 13.50\ndlrs 5,000/5,000 end-April/early-May Comanav.\n    Reference New York Grain Freights 1 of April 8, ship\nbrokers say the vessel fixed by Cam from the Great Lakes to\nAlgeria at 28 dlrs is reported to be the Vamand Wave.\n    Reference New York Grain Freights 2 of April 8, they say\nthe Cory Grain maize business from East Lond [...]
+'LONDON SUGAR FREIGHTS TBN 14,00 mt bulk sugar\nFiji/Prai 16 dlrs fio 10,000/1,000 1-10/5 Fiji Sugar Marketing.\n    TBN 15,000 mt bulk sugar Queensland/Japan 14.65 dlrs fio\n10,000/1,000 20-30/4 CSR.\n    ENQUIRIES - Antwerp/1-3 ports Greece 40,000 mt bagged sugar\nindications 750/750 in shipments of 10,000/15,000 tonnes spread\nfrom May to July a/c unnamed charterer.\n    Inchon/India 12,600 mt bagged sugar 1,000/1,000 20/4-5/5\na/c Kaines.\n    Reunion/1-2 ports Portugal 10,000 mt bul [...]
+'LONDON GRAIN FREIGHT ENQUIRIES Antwerp/Libya 5,500 mt bagged flour 14\ndaps 24-27/4.\n    New Orleans/Guanta 9,387 mt bulk hss 3,000/13 days\n25-4/5-5.\n    Naantali/Saudi Red Sea 30,000/35,000 mt barley 4,000/3,000\n20-30/4 or early May.\n    Dunkirk/Xingang 12,000 mt bagged flour 1,500/1,700 13-20/4.\n    Toledo/Seaforth 17,000 mt hss offers 18.50 dlrs four\ndays/8,000 13-15/4.\n    River Plate/Malaysia 20,000/22,000 long tons hss\n2,000/2,000 Apr.\n Reuter\n&#3;',1
+'HOME SAVINGS BANK &lt;HMSB> 1ST QTR NET Shr 51 cts vs not given\n    Net 6,089,000 vs 7,310,000\n    NOTE: Company went public in November 1986.\n    Net includes loan loss provisions of 75,000 dlrs vs 30,000\ndlrs and gains on sale of securities of 756,000 dlrs vs\n2,468,000 dlrs pretax.\n    1986 net includes tax credit 1,022,000 dlrs.\n    1987 net includes 2,400,000 dlr gain from tax credit\nresulting in reduction of goodwill.\n Reuter\n&#3;',0
+'AMOSKEAG BANK SHARES INC &lt;AMKG> 1ST QTR NET Shr 70 cts vs 67 cts\n    Net 6,416,000 vs 6,057,000\n    NOTE: Net includes pretax securities sales gains of\n5,900,000 dlrs vs 5,900,000 dlrs.\n Reuter\n&#3;',0
+'MSR EXPLORATION LTD &lt;MSR> YEAR LOSS Shr loss five cts vs profit 10 cts\n    Net loss 381,391 vs profit 736,974\n    Revs 6,161,391 vs 9,241,882\n    NOTE: Canadian dollars.\n    Proved oil reserves at year-end 3.3 mln barrels, up 39 pct\nfrom a year earlier, and natural gas reserves 4.7 billion cubic\nfeet, off nine pct.\n Reuter\n&#3;',0
+'SOUTHMARK &lt;SM> TO OFFER SPECIAL DIVIDEND Southmark Corp said it will issue its\nshareholders a special dividend right to acquire 22 shares of\nAmerican Realty Trust &lt;ARB> for each 100 shares of Southmark\nthey own.\n    Each right entitles the holder to buy one share of\nbeneficial interest of American Realty Trust at a price of 3.75\ndlrs per share, Southmark said.\n    Southmark said the offer\'s record date is May 1, with an\nex-dividend date of April 27, adding that the it wil [...]
+'EXPORTS OTHER THAN COFFEE RISE SHARPLY IN COLOMBIA Colombian exports other than coffee rose\n55 pct in January compared with the same period last year,\nfigures from the government statistics institute show.\n    Non-coffee exports amounted to 180.8 mln dlrs fob compared\nwith 147.5 mln dlrs for coffee, a drop of 42 pct from last\nyear.\n    The trade balance registered a 35 mln dlr surplus, compared\nwith a 56 mln dlr surplus in January 1986.\n    The national planning department forec [...]
+'TAFT BROADCASTING &lt;TFB> COMPLETES STATION SALE TVX Broadcast Group Inc\n&lt;TVXG> said it has completed the previously-announced purchase\nof five Taft television stations.\n    Last week, TVX said the sale, which was scheduled to close\nthen, had been delayed.\n    Taft said the purchase price was 240 mln dlrs, as\npreviously announced. The price is subject to final\nadjustments, Taft said.\n    Taft did not indicate the size of the gain, if any, it\nwould post on the sale.\n    It  [...]
+'U.S. MARCH RETAIL SALES CUT BY LATE EASTER U.S. retailers\' lackluster March sales\nwere due to a late Easter, according to analysts who expect a\nrecovery in April.\n    \"Sales look soft because of the Easter shift, but\nunderlying business is better than the numbers indicate,\" said\nBear Stearns analyst Monroe Greenstein.\n     Analysts generally average the sales results of March and\nApril to account for the variation of Easter\'s occurance. This\nyear, Easter is being observed on [...]
+'FIRST INTERSTATE EXPECTS BRAZIL, ECUADOR LOAN ACTIONS TO CUT 1987 NET BY 15.4 MLN DLRS\n ',0
+'MOROCCO TENDERS FOR 55,000 TONNES PL 480 SOYOIL Morocco is scheduled to tender April 14\nfor a total of 55,000 tonnes of U.S. soyoil under PL-480 for\nshipments from May through September, private export sources\nsaid.\n    The tender calls for shipment of 6,100 tonnes in May,\n12,200 tonnes each in June, July and August and 12,300 tonnes\nin September, they said.\n Reuter\n&#3;',0
+'MIDLANTIC CORP &lt;MIDL> 1ST QTR NET Shr diluted 1.18 dlrs vs 1.04 dlrs\n    Net 45.0 mln vs 39.2 mln\n    Assets 16.7 billion vs 15.2 billion\n    Deposits 13.0 billion vs 12.1 billion\n    Loans 11.9 billion vs 10.1 billion\n    NOTE: Results restated for merger of Midlantic Banks Inc\nand Continental Bancorp Inc on January 30, 1987.\n Reuter\n&#3;',0
+'COMMUNITY BANK SYSTEM INC &lt;CBSI> 1ST QTR NET Shr 46 cts vs 49 cts\n    Net 1,101,551 vs 831,398\n    NOTE: Share adjusted for two-for-one stock split in May\n1986.\n Reuter\n&#3;',0
+'FITCHBURG GAS &lt;FGE> RAISES QUARTERLY Qtly div 38 cts vs 35 cts prior\n    Pay May 15\n    Record May One\n Reuter\n&#3;',0
+'NORTHERN TRUST &lt;NTRS> NET HURT BY BRAZIL LOANS Northern Trust Corp said its first\nquarter earnings were reduced by 875,000 dlrs by placing 53.2\nmln dlrs of loans to Brazil and six mln dlrs in loans to\nEcuador on a cash basis.\n    Should these loans remain on nonperforming basis for the\nrest of 1987, net income for year will be cut by about 3.2 mln\ndlrs, the bank said.\n    Earlier it posted net income for the period of 14.7 mln\ndlrs or 87 cts a share, up from 11.7 mln dlrs or  [...]
+'DOE RUN RAISES LEAD PRICE 0.50 CT TO 26.50 CTS Doe Run Company said it is\nincreasing the price of its corroding grade lead by one-half\ncent to 26.50 cents a lb, effective immediately.\n    The price is quoted FOB, Herculaneum, Mo., and FOB, Boss,\nMo., with freight allowed for carload quantities.\n   \n Reuter\n&#3;',0
+'SPAIN\'S FOREIGN RESERVES RISE IN FEBRUARY Spain\'s foreign reserves rose by 905 mln\ndlrs in February to total 17.05 billion dlrs, compared with\n14.11 billion dlrs in February 1986, Bank of Spain figures\nshow.\n    Under a new accounting system introduced this month,\nSpain\'s foreign reserves now exclude foreign currency held by\nfinancial institutions.\n    Under the previous system, Spain\'s foreign reserves would\nhave risen by 391 mln dlrs in February, taking into account a\nfal [...]
+'&lt;SULPETRO LTD> 1ST QTR JAN 31 LOSS Shr not given\n    Net loss 9,900,000 vs loss 17,300,000\n    Revs 14.7 mln vs 29.8 mln\n    Note: Previous loss restated.\n Reuter\n&#3;',0
+'WESTERN FEDERAL SAVINGS BANK &lt;WFPR> 1ST QTR NET Shr 74 cts vs 92 cts\n    Net 1,300,450 vs 1,600,258\n    NOTE: Share adjusted for 10 pct stock dividend in July\n1986.\n    Company based in Mayaguez, Puerto Rico.\n Reuter\n&#3;',0
+'FINAL TEST INC &lt;FNLT> 4TH QTR LOSS Shr loss six cts vs loss 88 cts\n    Net loss 123,840 vs loss 1,298,377\n    Revs 1,333,416 vs 385,146\n    Year\n    Shr profit six cts vs loss 1.47 dlrs\n    Net profit 124,872 vs loss 2,171,011\n    Revs 4,618,232 vs 2,959,141\n Reuter\n&#3;',0
+'PROTECTIVE LIFE &lt;PROT> IN ACQUISITION Protective Life Corp said it\nhas signed a letter of intent to assume &lt;Liberty Life Insurance\nCo\'s> group insurance on July 1, subject to regulatory\napprovals.\n    Terms were not disclosed.\n\n Reuter\n&#3;',0
+'A.O. SMITH CORP &lt;SMC> SETS QUARTERLIES Qtly divs Class A and B 20 cts vs 20 cts\n    Pay May 15\n    Record April 30\n Reuter\n&#3;',0
+'CENTRAL BANCORP INC &lt;CBAN> 1ST QTR NET Shr 1.02 dlrs vs 78 cts\n    Net 14.4 mln vs 11.0 mln\n    NOTE: 1987 net includes gain 2,222,000 dlrs from\ntermination of pension plan.\n    Results restated for pooled acquisitions and share adjusted\nfor stock dividends.\n Reuter\n&#3;',0
+'&lt;EMCOR> COMPLETES SALE OF STOCK TO INVESTORS Emcore said it completed\nthe sale of 4.1 mln dlrs of stock to Citicorp Venture Capital\nLtd, Concord Ventures of Dillon Read and Co and private\ninvestors.\n Reuter\n&#3;',0
+'VLSI TECHNOLOGY INC &lt;VLSI> 1ST QTR NET Shr seven cts vs six cts\n    Net 1,612,000 vs 1,406,000\n    Revs 38.2 mln vs 34.3 mln\n    Avg shrs 23,742,000 vs 22,945,000\n Reuter\n&#3;',0
+'BELGIAN CURRENT ACCOUNT SURPLUS WIDENS IN 1986 Belgium\'s current account surplus,\nmeasured on a cash basis, widened sharply to 134.9 billion\nfrancs last year from 17.5 billion in 1985, the Finance\nMinistry said.\n    The increase was due almost entirely to a sharp rise in the\ngoods trade surplus to 126.1 billion francs from 20.4 billion.\n    The services trade surpluses increased to 52.4 billion\nfrancs from 38.9 billion while the deficit on transfers rose\nslightly to 43.6 billio [...]
+'SILICON SYSTEMS INC &lt;SLCN> 2ND QTR MARCH 28 Shr profit five cts vs profit two cts\n    Net profit 325,000 vs profit 105,000\n    Revs 19.5 mln vs 16.1 mln\n    Six Mths\n    Shr profit nine cts vs loss 35 cts\n    Net profit 627,000 vs loss 2,280,000\n    Revs 36.9 mln vs 27.4 mln\n Reuter\n&#3;',0
+'DISEASE PUTS ZIMBABWE BEEF EXPORTS IN JEOPARDY Zimbabwe\'s beef exports to the European\nCommunity (EC), potentially worth 70 mln Zimbabwean dlrs this\nyear, may be jeopardised by an outbreak of foot and mouth\ndisease in southwestern Matabeleland, industry sources said.\n    The country has temporarily suspended beef exports to the\nEC because of the outbreak and awaits a decision from the EC\nveterinary committee, which is considering a formal ban.\n    The outbreak in the country\'s  [...]
+'SHAWMUT CORP &lt;SHAS> 1ST QTR NET Shr 1.32 dlrs vs 1.26 dlrs\n    Net 21.2 mln vs 17.4 mln\n    Avg shrs 16.1 mln vs 13.8 mln\n    Assets 10.0 billion vs 8.4 billion\n    Deposits 7.2 billion vs 6.1 billion\n    Loans 6.7 billion up 26 pct\n    NOTE: Results restated for pooled acquisitions of Shawmut\nHome Bank and Fidelity Trust Co and include First Gibraltar\nMortgage Corp from December 30, 1986 purchase.\n    Loan loss provision 8,800,000 dlrs vs 6,300,000 dlrs.\n Reuter\n&#3;',0
+'MINNTECH &lt;MNTX> SEES FIRST QUARTER LOSS Minntech Corp said it expects\nto report loss for its fiscal 1988 first quarter to end June\n30, due to start-up costs related to a new membrane oxygenator\nand water filtration products.\n    However, revenues and earnings should consistently increase\nthroughout the remainder of the year, President Louis Cosentino\ntold analysts.\n Reuter\n&#3;',0
+'GORDEX MINERALS LOCATES GOLD DEPOSITS &lt;Gordex Mineral Ltd>\nsaid geologists located more than one mln tons of gold-bearing\ndeposits, 0.057 ounces per ton, at Cape Spencer.\n    The company said it plans to invest 2.5 mln Canadian dlrs\nto expand on-site treatment facilities to process 100,000 tons\nof gold-bearing deposits this year and 200,000 tons in 1988.\n    Prior to the completion of the recent exploration program,\nGordex estimated the Cape Spencer deposit had 200,000 tons.\n [...]
+'U.S. CONGRESSMAN INTRODUCES REAGAN SUGAR BILL Rep. John Porter, R-Ill., introduced\nin the House of Representatives legislation proposed by the\nReagan administration to slash the U.S. sugar price support, a\nspokesman for Porter said.\n    The spokesman said the bill was introduced without any\nchanges from the administration\'s proposal sent to Congress\nlast month.\n    That plan calls for a cut in the sugar loan rate to 12\ncents per pound from 18 cents now. Sugar growers would be\n [...]
+'CANADA 91-DAY T-BILLS AVERAGE 6.95 PCT, MAKING BANK RATE 7.20 PCT\n ',0
+'REPUBLIC SAVINGS AND LOAN &lt;RSLA> 3RD QTR NET Shr 89 cts vs not available\n    Net 1,163,000 vs 466,000\n    Nine Mths\n    Net 3,696,000 vs 1,624,000\n    NOTE: Company converted to stock ownership effective August\n1986.\n    Periods end March 31, 1987 and 1986 respectively.\n Reuter\n&#3;',0
+'SOUTHMARK &lt;SM> TO ISSUE AMERICAN REALTY RIGHTS Southmark Corp said shareholders will be\nissued, as a special dividend, rights to acquire 22 shares of\nAmerican Realty Trust &lt;ARB> for each 100 shares of Southmark\nowned.\n    The record date for Southmark shareholders to receive these\nrights will be May one with an ex-dividend date of April 27.\n    Southmark received these rights on April six, as the holder\nof about 84 pct of American Realty Trust\'s outstanding shares.\n   \n  [...]
+'WALL STREET STOCKS/UAL INC &lt;UAL> Takeover speculation continues to fuel\nheavy trading in UAL Inc, traders said.\n    UAL rose 1-5/8 to 73-5/8 on volume of more than two mln\nshares, after trading with little upward movement earlier in\nthe session.\n    Traders said rumors, which began yesterday, added to\nspeculation that the company would be the target of a takeover.\n    They said it was believed Coniston Partners and the\nPritzker family of Chicago were buying the stock.\n    Co [...]
+'GORDEX MINERALS LOCATES CANADA GOLD DEPOSITS Gordex Mineral Ltd\nsaid geologists located more than one mln short tons of\ngold-bearing deposits, 0.057 ounces per ton, at Cape Spencer.\n    The company said it plans to invest 2.5 mln Canadian dlrs\nto expand on-site treatment facilities to process 100,000 tons\nof gold-bearing deposits this year and 200,000 tons in 1988.\n    Prior to the completion of the recent exploration program,\nGordex estimated the Cape Spencer deposit had 200,000 [...]
+'CANADIAN BANK RATE RISES IN WEEK Canada\'s key bank rate rose to 7.20 pct\nfrom 7.15 pct the week before, Bank of Canada said.\n    Bank rate is set 1/4 percentage point above the average\nyield on the weekly issue of 91-day treasury bills. This week\'s\nyield was 6.95 pct compared with the previous week\'s 6.90 pct.\n    Tenders were accepted for 2.55 billion dlrs of 91-day bills\nat an average price of 98.296 dlrs against 98.310 dlrs last\nweek.\n    The 1.40 billion dlrs of 182-day b [...]
+'CONSENSUS SEEN ON TIN PACT EXTENSION The quarterly session of the\nInternational Tin Council (ITC) continued without formal\nagreement on an extension of the sixth International Tin\nAgreement (ITA), but delegates said it was apparent there was a\ngeneral consensus the Agreement should be prolonged.\n    Some delegations are still awaiting formal instructions\nfrom capitals, but informally most have indicated they favour\nan extension, delegates said.\n    This afternoon\'s session was  [...]
+'SLATER ELECTRIC INC &lt;SLAT> 1ST QTR FEB 28 NET Shr four cts vs 10 cts\n    Net 31,000 vs 82,000\n    Sales 10.9 mln vs 9,760,000\n Reuter\n&#3;',0
+'SOUTH JERSEY INDUSTRIES INC &lt;SJI> 1ST QTR NET Oper shr 1.64 dlrs vs 1.50 dlrs\n    Oper net 6,200,000 vs 5,600,000\n    Revs not given\n    12 mths\n    Oper shr 2.76 dlrs vs 2.58 dlrs\n    Oper net 10.4 mln vs 9,600,000\n    NOTE: Net income including discontinued operation and, in\nboth 1986 periods, 1,500,000 dlr gain from change in accounting\nfor which results restated, 6,200,000 dlrs vs 7,200,000 dlrs in\nquarter and 10.6 mln dlrs vs 11.6 mln dlrs.\n Reuter\n&#3;',0
+'CITY NATIONAL CORP &lt;CTYN> 1ST QTR NET Shr 56 cts vs 35 cts\n    Net 10,271,000 vs 6,425,000\n    Loans 1.44 billion vs 1.20 billion\n    Deposits 2.36 billion vs 1.96 billion\n    Assets 2.96 billion vs 2.55 billion\n Reuter\n&#3;',0
+'ALLIED BANKSHARES INC &lt;ABGA> 1ST QTR NET Shr 50 cts vs 26 cts\n    Net 1,316,000 vs 656,000\n    NOTE: qtr 1987 includes tax gain 500,000 dlrs, or 19 cts\nper share.\n Reuter\n&#3;',0
+'ROYAL DUTCH &lt;RD> UNIT TO CUT HEATING OIL PRICE Royal Dutch/Shell\'s Scallop Petroleum\nCo subsidiary said it will reduce the price it charges contract\nbarge customers in New York harbor for heating oil by 2.5 cts a\ngallon, effective tomorrow.\n    The company said the price cut will bring the contract\nbarge price for heating oil to 51 cts a gallon.\n Reuter\n&#3;',0
+'MAGMA RAISES COPPER PRICE 0.25 CT TO 65.75 CTS Magma Copper Co, a subsidiary of\nNewmont Mining Corp, said it is raising its copper cathode\nprice by 0.25 cent to 65.75 cents a lb, effective immediately.\n Reuter\n&#3;',0
+'FIRST BANK SYSTEM INC &lt;FBS> 1ST QTR NET Shr 95 cts vs 80 cts\n    Net 57.4 mln vs 46.6 mln\n    Assets 28.39 billion vs 25.87 billion\n    Loans 13.99 billion vs 14.35 billion\n Reuter\n&#3;',0
+'CENTERRE BANCORP &lt;CTBC> 1ST QTR NET Shr 94 cts vs 1.02 dlrs\n    Net 7,255,000 vs 7,856,000\n    Loans 2.88 billion vs 2.94 billion\n    Deposits 4.05 billion vs 3.73 billion\n    Assets 5.43 billion vs 5.14 billion\n\n Reuter\n&#3;',0
+'SEA GALLEY STORES INC &lt;SEAG> 1ST QTR NET Oper shr four cts vs one ct\n    Oper net 108,000 vs 30,000\n    Revs 12.8 mln vs 14.8 mln\n    Note: Current qtr figures exclude operating loss\ncarryforward gain of 57,000 dlrs, or two cts per share vs gain\nof 21,000 dlrs, or one ct per share.\n Reuter\n&#3;',0
+'EGYPT CANCELS WHEAT TENDER Egypt has cancelled its April 2 tender for\n200,000 tonnes of any origin wheat for April 15-30 shipment,\ntrade and Egyptian official sources said.\n    Trade sources said the cancellation followed an offer by an\nEgyptian company, Islamic Corp, at 85.80 dlrs/tonne cost and\nfreight, undercutting other traders\' offers of between 93.90\nand 94.49 dlrs/tonne.\n    An Egyptian trade official in Paris confirmed cancellation\nof the tender following the Islamic Co [...]
+'HOUSE PANEL WANTS PENTAGON MANAGE U.S. STOCKPILE The House Armed Services Committee\nhas voted for a transfer in the management of stockpiled\nmaterials for national defense to the U.S. Defense Secretary.\n    The committee also voted for legally-binding quantity and\nquality requirements on the materials, mostly metals.\n    The measures are a part of the Defense Authorization Bill\nwhich will be voted on in the House next month.\n    The purpose of the measures, passed by the committe [...]
+'CANADA TRADE RISE SEEN AS START OF RECOVERY Canada\'s trade picture has brightened\nconsiderably, underscoring economists\' predictions the sector\nwould post a long awaited recovery this year.\n    The federal government reported today that the monthly\nsurplus soared to 1.25 billion Canadian dlrs in February,\ndouble January\'s 623 mln dlrs surplus and sharply higher than\nFebruary 1986\'s 189 mln dlr tally.\n    \"Hopefully it\'s the beginning of a trend,\" said Richardson\nGreenshie [...]
+'FIRST BANK &lt;FBS> SEES LOSS ON BRAZILIAN LOANS First Bank Systems Inc, in reporting\nhigher first quarter net, said that if interest is not paid on\nthe 140 mln dlrs in Brazilian loans and nine mln dlrs in\nEcuadorian loans for the rest of 1987, its profits for the\nentire year will be cut by 6.9 mln dlrs.\n    The banking firm said the non-performing status of these\nloans cut first quarter net by 1.7 mln dlrs.\n    Earlier it reported first quarter profits of 57.4 mln dlrs\nor 95 ct [...]
+'USDA ESTIMATES 1986/87 USSR GRAIN IMPORTS  28.0 MLN TONNES VS 26.0 IN MARCH, 29.9 YEAR AGO\n ',1
+'USDA ESTIMATES 1986 SOVIET GRAIN CROP  AT 210 MLN TONNES VS 210 IN MARCH, 192 YEAR-AGO\n ',1
+'USDA - U.S. 1986/87 ENDING CORN STOCKS  5,240 MLN BU, WHEAT 1,848 MLN, SOYBEANS 610 MLN\n ',1
+'USDA 1986/87 U.S. ORANGE CROP 190,050,000  BOXES, FLORIDA CROP 122,900,000 BOXES\n ',0
+'USDA ESTIMATES 1986/87 ORANGE JUICE YIELD  AT 1.50 GALS PER BOX FROM FLORIDA CROP\n ',0
+'VORNADO INC &lt;VNO> 4TH QTR JAN 31 NET Oper shr 1.64 dlrs vs 84 cts\n    Oper net 4,583,000 vs 2,869,000\n    Revs 20.1 mln vs 19.0 mln\n    Avg shrs 2,791,639 vs 3,432,746\n    Year\n    Oper shr 4.46 dlrs vs 3.20 dlrs\n    Oper net 14.1 mln vs 10.9 mln\n    Revs 74.6 mln vs 68.0 mln\n    Avg shrs 3,154,665 vs 3,425,187\n    NOTE: Operating net excludes gains of nothing vs 2,444,000\ndlrs, or 72 cts a share, in quarter and 1,890,000 dlrs, or 60\ncts a share, vs 9,3267,000 dlrs, or 2.7 [...]
+'FIRST UNION CORP FIRST QTR SHR 71 CTS VS 61 CTS\n ',0
+'U.S. SUPPLY/DEMAND HIGHLIGHTS Following are highlights of the U.S.\nAgriculture Department supply/demand projections for the\n1986/87 seasons, in mln bushels, with comparisons, unless noted\n--\n    Corn -- Stocks, Aug 31, 1987, at 5,240, vs 5,595 last\nmonth. Stocks, Aug 31, 1986, at 4,040, vs 4,040 last month.\n    Exports projected at 1,375, vs 1,250 last month. Exports in\n1985/86 at 1,241, vs 1,241 last month.\n    Domestic use at 5,680, vs 5,450 last month. Usage in the\n1985/86 s [...]
+'U.S. CITRUS CROP ESTIMATE -- USDA The U.S. Agriculture Department\nestimated 1986/87 citrus production, as follows (in boxes) --\n    Total U.S. orange crop (excluding Florida Temples) --\n190,050,000 boxes, vs 190,850,000 boxes last month and\n176,410,000 boxes in the 1985/86 crop.\n    Florida oranges (excluding Temples) -- 122,900,000 boxes,\nvs 124,000,000 last month and 119,000,000 boxes in 1985/86.\n    Florida Temples -- 3,400,000 boxes, vs 3,400,000 last month\nand 2,950,000 box [...]
+'USDA ORANGE JUICE YIELD ESTIMATE The U.S. Agriculture Department\nprojected an average yield of 1.50 gallons of frozen\nconcentrated orange juice per box (42.0 degree brix equivalent)\nfrom Florida\'s 1986/87 crop.\n    That compares with 1.47 gallons per box previously and 1.38\ngallons per box from the 1985/86 crop.\n    The crop reporting board said the estimates for the 1986/87\nseason are based on maturity and yields tests as of April 1.\n Reuter\n&#3;',0
+'USSR ADDS U.S. CORN TO COMMITMENTS - USDA The Soviet Union has added 175,600\ntonnes of U.S. corn to its previous commitments for delivery in\nthe fourth year of the U.S.-USSR Grain Supply Agreement, which\nbegan October 1, 1986, the U.S. Agriculture Department said.\n    According to the department\'s Export Sales Report, covering\ntransactions in the week ended April 2, corn transactions\nconsisted of 140,600 tonnes of new sales and changes in\ndestinations for 35,000 tonnes.\n    Tot [...]
+'USDA SPRING POTATO ESTIMATES The U.S. Agriculture Department\nestimated 1987 spring potato production, based on April 1\nconditions, at 19,267,000 cwts (100 lbs), vs 19,822,000 cwts\nindicated last year.\n    The department estimated spring potato area for harvest at\n79,100 acres, vs 76,700 acres estimated last month and 75,900\nacres harvested last year.\n    Spring potato yield per harvested acre is forecast at 244\ncwt per acre, vs 261 cwt per acre a year ago, USDA said.\n Reuter\n&#3;',0
+'USDA REVISES 1986 SUMMER POTATOES The U.S. Agriculture Department made\nthe following revisions for 1986 crop summer potatoes --\n    Production -- 21,003,000 cwt (100 lbs), vs 20,900,000 cwt\nestimated previously.\n    Acreage for harvest -- 95,700 acres, vs 95,800 acres\nestimated previously.\n    Yield per harvested acre -- 219 cwt per acre, vs 218 cwt\nper acre previously estimated, the department said.\n Reuter\n&#3;',0
+'USDA DETAILS FREE GRAIN STOCKS UNDER LOAN The U.S. Agriculture Department gave\nprojected carryover free stocks of feedgrains, corn and wheat\nunder loans, with comparisons, as follows, in mln bushels,\nexcept feedgrains, which is in mln tonnes --\n                1986/87            1985/86\n           04/09/87 03/09/87  04/09/87 03/09/87\n Under Regular Nine Month Loan --\n      WHEAT    225     300       678     678\n FEEDGRAINS   52.1    68.1      75.7    75.7\n       CORN  1,800   2 [...]
+'CLEVITE &lt;CLEV> AMENDS RIGHTS PLAN Clevite Industries Inc, which\nearlier received a 96 mln dlr takeover offer from J.P.\nIndustries Inc &lt;JPI>, said it amended its Shareholder Rights\nPlan so that certain provisions of the plan cannot occur until\nthe board determines that it is in the best interests of the\ncompany and stockholders.\n    The plan, adopted in December 1986, permits Clevite to\nissue shares at half price to existing stockholders and allows\nstockholders to buy share [...]
+'USDA ESTIMATES SOVIET WHEAT, COARSE GRAINS The U.S. Agriculture Department\nforecast the Soviet 1986/87 wheat crop at 92.30 mln tonnes, vs\n92.30 mln tonnes last month. It put the 1985/86 crop at 78.10\nmln tonnes, vs 78.10 mln tonnes last month.\n    Soviet 1986/87 coarse grain production is estimated at\n103.30 mln tonnes, vs 103.30 mln tonnes last month. Production\nin 1985/86 is projected at 99.99 mln tonnes, vs 100.00 mln\ntonnes last month.\n    USSR wheat imports are forecast at  [...]
+'WHEAT BY CLASS BREAKDOWN The U.S. Agriculture Department gave\nthe 1986/87 breakdown of supply and distribution for wheats by\nclasses, in mln bushels, with comparisons, as follows.\n    HARD WINTER --\n                1986/87           1985/86\n           04/09/87 03/09/87  04/09/87 03/09/87\n Start Stocks 1,009   1,009      717     717\n Production   1,018   1,018    1,230   1,230\n Ttl Supply-X 2,027   2,027    1,947   1,947\n Domestic Use   599     579      543     543\n Exports     [...]
+'USDA FORECASTS BRAZIL/ARGENTINE SOYBEAN CROPS The U.S. Agriculture Department\nforecast Brazil\'s 1986/87 soybean crop at 17.00 mln tonnes, vs\n17.00 estimated last month. It put the 1985/86 crop at 13.90\nmln tonnes, vs 13.70 mln last month.\n    The department forecast Argentina\'s 1986/87 soybean crop at\n7.70 mln tonnes, vs 7.70 mln last month. It projected the\n1985/86 crop at 7.30 mln tonnes, vs 7.30 mln last month.\n    Brazil\'s 1986/87 soybean exports were forecast at 2.50 mln\ [...]
+'USDA ESTIMATES ARGENTINE COARSE GRAIN, WHEAT The U.S. Agriculture Department\nforecast Argentina\'s 1986/87 coarse grain crop at 13.99 mln\ntonnes, vs 15.44 mln tonnes last month. It estimated the\n1985/86 crop at 17.06 mln tonnes, vs 17.14 mln last month.\n    USDA forecast Argentina\'s 1986/87 wheat crop at 9.00 mln\ntonnes, vs 9.00 mln tonnes last month, while the 1985/86 crop\nwas projected at 8.50 mln tonnes, vs 8.50 mln last month.\n    USDA forecast Argentine 1986/87 coarse grain [...]
+'STOP AND SHOP COS IN 2-FOR-1 SPLIT, HIKES DIVIDEND\n ',0
+'USDA ESTIMATES AUSTRALIA WHEAT CROP The U.S. Agriculture Department\nforecast Australia\'s 1986/87 wheat crop at 16.70 mln tonnes, vs\n17.30 mln tonnes last month. It estimated 1985/86 output at\n16.13 mln tonnes, vs 16.13 mln last month.\n    Australian wheat exports in 1986/87 are forecast at 14.50\nmln tonnes, vs 14.50 mln tonnes last month, while exports in\n1985/86 are estimated at 15.96 mln tonnes, vs 15.96 mln last\nmonth.\n Reuter\n&#3;',1
+'USDA ESTIMATES CHINA WHEAT The U.S. Agriculture Department\nprojected China\'s 1986/87 wheat crop at 90.30 mln tonnes, vs\n88.50 mln tonnes last month. It estimated the 1985/86 crop at\n85.81 mln tonnes, vs 85.81 mln last month.\n    USDA projected China\'s 1986/87 wheat imports at 7.00 mln\ntonnes, vs 7.00 mln tonnes last month, and estimated 1985/86\nimports at 6.60 mln tonnes, vs 6.60 mln last month.\n Reuter\n&#3;',1
+'USDA ESTIMATES CANADIAN CROPS The U.S. Agriculture Department\nestimated Canada\'s 1986/87 wheat crop at 31.85 mln tonnes, vs\n31.85 mln tonnes last month. It estimated 1985/86 output at\n24.25 mln tonnes, vs 24.25 mln last month.\n    Canadian 1986/87 coarse grain production is projected at\n27.62 mln tonnes, vs 27.62 mln tonnes last month. Production in\n1985/86 is estimated at 24.95 mln tonnes, vs 24.95 mln last\nmonth.\n    Canadian wheat exports in 1986/87 are forecast at 19.00 mln [...]
+'NET CHANGE IN EXPORT COMMITMENTS -- USDA The U.S. Agriculture Department gave\nthe net change in export commitments, including sales,\ncancellations, foreign purchases and cumulative exports, in the\ncurrent seasons through the week ended April 2, with\ncomparisons, as follows, in tonnes, except as noted --\n                        4/2/87   Prev Week\n            All Wheat   119,800    368,300\n                 Corn 1,001,900    927,000\n             Soybeans   240,500    300,900\n      [...]
+'HOUSE PANEL WANTS PENTAGON MANAGE U.S. STOCKPILE The House Armed Services Committee\nhas voted for a transfer in the management of stockpiled\nmaterials for national defense to the U.S. Defense Secretary.\n    The committee also voted for legally-binding quantity and\nquality requirements on the materials, mostly metals.\n    The measures are a part of the Defense Authorization Bill\nwhich will be voted on in the House next month.\n    The purpose of the measures, passed by the committe [...]
+'USDA ESTIMATES EUROPEAN COMMUNITY CROPS The U.S. Agriculture Department\nforecast the European Community\'s 1986/87 wheat crop at 71.60\nmln tonnes, vs 71.50 mln tonnes last month. It estimated\n1985/86 output at 71.70 mln tonnes, vs 71.71 mln last month.\n    E.C. 1986/87 coarse grain production is projected at 81.22\nmln tonnes, vs 81.19 mln tonnes last month. The 1985/86 crop is\nestimated at 88.21 mln tonnes, vs 88.28 mln last month.\n    E.C. wheat exports in 1986/87 are forecast a [...]
+'U.S. SUPPLY/DEMAND DETAILED BY USDA The U.S. Agriculture Department made\nthe following supply/demand projections for the 1986/87\nseasons, in mln bushels, with comparisons, unless noted --\n    CORN --     1986/87            1985/86\n           04/09/87 03/09/87  04/09/87 03/09/87\n Acreage (mln acres) --\n     Planted   76.7    76.7     83.4    83.4\n   Harvested   69.2    69.2     75.2    75.2\n  Yield (bu)  119.3   119.3    118.0   118.0\n Supply (mln bu) -- \n Start Stock  4,040    [...]
+'USDA ESTIMATES USSR COTTON CROP The U.S. Agriculture Department\nforecast the Soviet 1986/87 cotton crop at 11.20 mln bales\n(480-lbs net), vs 11.20 mln bales forecast last month.\n    The department also estimated the 1985/86 Soviet cotton\ncrop at 12.10 mln bales, vs 12.10 mln bales last month.\n Reuter\n&#3;',0
+'USDA ESTIMATES SOUTH AFRICA CORN CROP, EXPORTS The U.S. Agriculture Department\nforecast South Africa\'s 1986/87 corn crop at 8.50 mln tonnes,\nvs 9.50 mln tonnes last month. It estimated the 1985/86 crop at\n8.08 mln, vs 8.08 mln last month.\n    USDA forecast South African 1986/87 corn exports at 2.10\nmln tonnes, vs 3.00 mln tonnes last month, and 1985/86 exports\nat 2.75 mln tonnes, vs 2.75 mln tonnes last month.\n Reuter\n&#3;',1
+'STOP AND SHOP COS &lt;SHP> IN TWO-FOR-ONE SPLIT The Stop and Shop Cos Inc said its board\nvoted a two-for-one stock split payable July One, to\nstockholders of record May 29.\n    It also said it was raising its quarterly cash dividend 16\npct to 32 cts per share from 27.5 cts per share prior.\n    As a result of the split, the number of outstanding shares\nwill increase to 28 mln from 14 mln, the company said.\n    The dividend is payable July One to shareholders of record\nMay 29, it  [...]
+'NATIONAL BEVERAGE TO ACQUIRE FAYGO BEVERAGES &lt;National Beverage Corp>\nsaid it agreed to acquire &lt;Faygo Beverages Inc> for an\nundisclosed amount of cash.\n    Faygo has revenues in excess of of 100 mln dlrs, National\nBeverage said.\n    \n Reuter\n&#3;',0
+'AUDIO/VIDEO AFFILIATES &lt;AVA> 4TH QTR JAN 31 NET Shr 17 cts vs 28 cts\n    Net 2,668,000 vs 3,655,000\n    Revs 93.9 mln vs 83.8 mln\n    Avg shrs 15.7 mln vs 13.2 mln\n    12 mths\n    Shr 48 cts vs 58 cts\n    Net 7,510,000 vs 7,482,000\n    Revs 228.8 mln vs 181.9 mln\n    Avg shrs 15.7 mln vs 12.9 mln\n    NOTE: full name of company is audio/video affiliates Inc.\n Reuter\n&#3;',0
+'FLUOROCARBON &lt;FCBN> BUYS EATON &lt;ETN> DIVISION Fluorocarbon Co said it\nsigned a definitive agreement to acquire Eaton Corp\'s\nIndustrial Polymer division for an undisclosed price.\n    The polymer division, based in Aurora, Ohio, had 1986 sales\nof 86 mln dlrs, Fluorocarbon also said.\n Reuter\n&#3;',0
+'FIRST UNION CORP &lt;FUNC> 1ST QTR NET Shr 71 cts vs 61 cts\n    Net 78.5 mln vs 64.6 mln\n    NOTE: Current qtr includes gain of seven cts/shr from sale\nof securities. Year-ago restated.\n Reuter\n&#3;',0
+'FINANCIAL NEWS NETWORK INC &lt;FNNI> 2ND QTR NET Qtr ended February 28\n    Shr six cts vs three cts\n    Net 765,138 vs 311,388\n    Rev 8.3 mln vs 3.7 mln\n    Avg shares 12,272,265 vs 11,377,491\n    Six months\n    Shr 17 cts vs five cts\n    Net 2,073,057 vs 515,229\n    Rev 15.0 mln vs 7.4 mln\n    Avg shares 12,295,934 vs 11,200,000\n Reuter\n&#3;',0
+'FIRST COLONIAL BANKSHARES CORP &lt;FCOLA> 1ST QTR Shr 41 cts vs 35 cts\n    Net 2,362,000 vs 1,613,000\n    Avg shrs 5,567,300 vs 4,070,700\n Reuter\n&#3;',0
+'SEASONAL EXPORTS REPORTED BY U.S. EXPORTERS Exports of the following commodities\nbetween start of current seasons and April 2, with comparisons,\nas reported to USDA by exporters, in thousand tonnes, unless\nnoted --\n               4/2/87    Prev Wk   4/3/86\n Wheat        21,044.6  20,398.3  19,725.8\n Soybeans     14,334.2  14,063.5  14,698.4\n Corn         20,296.0  19,194.6  25,182.6-x\n Sorghum       3,222.5   3,149.7   3,168.9-x\n Soybean Oil     138.4     135.8     179.9\n Soyb [...]
+'HAWAIIAN ELECTRIC &lt;HE> TO BUY HAWAIIAN INSURANCE Hawaiian Electric Industries said it\nhas entered a letter of intent to buy the Hawaiian Insurance\nCompanies.\n    The transaction is subject to a definitive agreement, and\ngovernment and board approvals.\n    The Hawaiian Insurance Companies ad assets at the end of\n1986 of 137.4 mln dlrs and earned premiums of 46.1 mln dlrs.\n    Hawaiian Electric said it plans to operate the comapny,\nwhich has 226 employees, with current manageme [...]
+'SOVIET UNION TO IMPORT MORE GRAIN IN 86/87-USDA The U.S. Agriculture Department\nincreased its estimate of 1986/87 grain purchases by the Soviet\nUnion to 28 mln tonnes, up two mln tonnes from last month.\n    In its monthly report on the Soviet grain situation, the\nUSDA said imports will be higher than earlier estimated because\nSoviet grain buyers have been actively purchasing in the last\nmonth.\n    USDA said the increased purchasing is \"somewhat surprising\"\nbecause of recent hi [...]
+'DISNEY FAMILY MAKES BID FOR HOLLY SUGAR &lt;HLY> The Roy Disney family disclosed in a\nfiling with the Securities and Exchange Commission that it made\na bid to acquire Holly Sugar Corp for a package of cash and\nsecurities.\n    Shamrock Holdings of California Inc, a Disney family\ncompany, said it submitted the bid on April 8 to Salomon\nBrothers Inc, Holly Sugar\'s investment banker.\n    The offer was for 45 dlrs in cash, securities with a face\nvalue of 70 dlrs, and a \"contingent  [...]
+'U.S. EXPORTERS REPORT 200,000 TONNES WHEAT  SOLD TO JORDAN FOR 1987/88 DELIVERY\n ',1
+'UNIVERSAL HEALTH REALTY &lt;UHT> 1ST QTR NET Shr 26 cts vs nil\n    Net 2,244,000 vs nil\n    Rev 3.4 mln vs nil\n    NOTE: Company\'s full name is Universal Health Realty Income\nTrust. Quarter is company\'s first full quarter of earnings.\n Reuter\n&#3;',0
+'FROST AND SULLIVAN INC &lt;FRSL> INCREASES PAYOUT Semi-annual div seven cts vs six cts prior\n    Pay June One\n    Record May One\n.\n Reuter\n&#3;',0
+'C.O.M.B. &lt;CMCO> MAKES ACQUISITION C.O.M.B. Co said it acquired for 8.7\nmln dlrs the principal assets of National Tech Industries Inc\nand Telkon Corp.\n    The companies are engaged in servicing, sales and\ntelemarketing of consumer electronic merchandise.\n Reuter\n&#3;',0
+'RAI RESEARCH CORP &lt;RAC> 3RD QTR FEB 28 SHr one cts vs 14 cts\n    Net 17,806 vs 328,290\n    Revs 1.3 mln vs 2.2 mln\n    Nine months\n    Shr 27 cts vs 26 cts\n    Net 640,156 vs 622,251\n    Revs 5.6 mln vs 5.6 mln\n    NOTE:1986 net includes loss of 49,040 in nine months from\ndiscontinued and gain of 15,598 dlrs in 3rd qtr.\n Reuter\n&#3;',0
+'CENTEL &lt;CNT> COMPLETES ACQUISITION Centel Corp said it completed the\nacquisition of Welbac Cable Television Corp, which serves more\nthan 2,500 cable television subscribers in east central\nMichigan.\n    Terms were not disclosed.\n    With the addition of Welbac customers, Centel Cable\nTelevision Co of Michigan serves more than 83,000 customers.\nOverall, Centel has nearly 495,000 customers in seven states.\n Reuter\n&#3;',0
+'JAMES RIVER CORP &lt;JR> SETS REGULAR PAYOUT Qtrly div 10 cts vs 10 cts prior\n    Pay April 30\n    Record April 21\n Reuter\n&#3;',0
+'THREE D DEPARTMENTS INC &lt;TDD> SETS PAYOUT Class A qtly div 2-1/2 cts vs 2-1/2 cts prior\n    Class B qtly div 1-1/2 cts vs 1-1/2 cts prior\n    Pay May 8\n    Record April 24\n Reuter\n&#3;',0
+'U.S. EXPORTERS REPORT 300,000 TONNES  SOYBEAN MEAL TO IRAQ FOR SPLIT DELIVERY\n ',0
+'U.S. EXPORTERS REPORT 100,000 TONNES CORN  SOLD TO ALGERIA FOR 1986/87 DELIVERY\n ',1
+'WORLD SUPPLY/DEMAND ESTIMATES ISSUED BY USDA The U.S. Agriculture Department made\nthe following 1986/87 projections in its world Supply/Demand\nreport, with comparisons, in mln tonnes, except where noted --\n    Total World Grain\n               1986/87            1985/86\n         04/09/87  03/09/87  04/09/87  03/09/87\n Produc  1,682.31  1,686.11  1,663.69  1,663.70\n Total\n Supply  2,025.71  2,028.45  1,919.18  1,920.13\n Trade-X   212.15    211.89    204.42    203.92\n Usage   1,6 [...]
+'ADAMS EXPRESS CO &lt;ADX> MARCH 31 ASSETS Shr 22.50 dlrs vs 21.74 dlrs\n    Assets 546.9 mln vs 485.2 mln\n    Shrs out 24.3 mln vs 22.3 mln\n    NOTE: lastest assets after capital gain distributions of 28\ncts a share in February 1987 and 2.55 dlrs a share in December\n1986\n Reuter\n&#3;',0
+'PETROLEUM AND RESOURCES CORP &lt;PEO> MARCH 31 Shr 31.36 dlrs vs 25.23 dlrs\n    Assets 286.5 mln vs 253.0 mln\n    Shrs out 9,138,526 vs 8,839,695\n    NOTE: latest assets after capital gain distributions of 50\ncts a share in February 1987 and 83 cts a share in December\n1986, and with 29,955,000 stated value 1.676 dlr convertible\npreferred stock outstanding.\n Reuter\n&#3;',0
+'CORN SUPPLY/DEMAND BY COUNTRY -- USDA The U.S. Agriculture Department\ndetailed world supply/demand data for major importers and\nexporters of corn, by country, as follows in mln tonnes --\n    USSR CORN\n                1986/87            1985/86\n           04/09/87 03/09/87  04/09/87 03/09/87\n Start Stocks  N.A.    N.A.     N.A.    N.A.\n Production   12.50   12.50    14.40   14.40\n Imports       8.00    6.00    10.40   10.40\n Domes Use    20.50   19.50    24.40   24.40\n Exports  [...]
+'USDA REPORTS EXPORT SALES ACTIVITY The U.S. Agriculture Department said\nprivate U.S. exporters reported sales of 200,000 tonnes of\nwheat to Jordan, 300,000 tonnes of soybean meal to Iraq and\n100,000 tonnes of corn to Algeria.\n    The wheat for Jordan includes 165,000 tonnes of hard red\nwinter and 35,000 tonnes of soft red winter and is for delivery\nduring the 1987/88 marketing year.\n    The soybean meal sales to Iraq includes 180,000 tonnes for\ndelivery during the 1986/87 season [...]
+'INTERNATIONAL AMERICAN &lt;HOME> TO ACQUIRE COS International American Homes Inc\nsaid it entered into a conditional contract to acquire the\n&lt;Maione-Hirschberg Cos Inc> and affiliated entitles for 19 mln\ndlrs.\n    International American, whose stock was halted on Nasdaq\nearlier, said the purchase price is payable 12 mln dlrs in cash\nand the balance in its own common shares.\n    Selling shareholders may earn an additional amount up to a\nmaximum of eight mln dlrs payable in cash [...]
+'SONY CHAIRMAN FORECASTS LOWER PROFITS THIS YEAR Sony Corp &lt;SNE.T> chairman Akio\nMorita said Sony\'s profits would be sharply down in 1987 as a\nresult of the dollar\'s decline.\n    Sony Corp posted net consolidated income of 41.89 billion\nyen (290 million dollars) in 1986, 42.6 pct down on 1985\'s\n73.02 billion yen (506 million dollars).\n    But Morita added that Japan would benefit from the strong\nyen by saving on its energy import bill and he expected profits\nto recover from [...]
+'COARSE GRAIN SUPPLY/DEMAND BY COUNTRY -- USDA The U.S. Agriculture Department\ndetailed world supply/demand data for major importers and\nexporters of coarse grains, by country, as follows in mln\ntonnes --\n    USSR COARSE GRAIN\n               1986/87           1985/86\n          04/09/87 03/09/87  04/09/87 03/09/87\n Start Stcks  N.A.    N.A.      N.A.    N.A.\n Production 103.30  103.30     99.99   99.99\n Imports     12.00   10.00     13.70   13.70\n Domes Use  112.30  112.30    11 [...]
diff --git a/arff/src/test/resources/weka-data/ReutersGrain-train.arff b/arff/src/test/resources/weka-data/ReutersGrain-train.arff
new file mode 100644
index 0000000..58fc0f6
--- /dev/null
+++ b/arff/src/test/resources/weka-data/ReutersGrain-train.arff
@@ -0,0 +1,1561 @@
+@relation 'Reuters-21578 Grain ModApte Train-weka.filters.unsupervised.attribute.NumericToBinary-weka.filters.unsupervised.instance.RemoveFolds-S0-N5-F1'
+
+@attribute Text string
+@attribute class-att {0,1}
+
+@data
+
+'BAHIA COCOA REVIEW Showers continued throughout the week in\nthe Bahia cocoa zone, alleviating the drought since early\nJanuary and improving prospects for the coming temporao,\nalthough normal humidity levels have not been restored,\nComissaria Smith said in its weekly review.\n    The dry period means the temporao will be late this year.\n    Arrivals for the week ended February 22 were 155,221 bags\nof 60 kilos making a cumulative total for the season of 5.93\nmln against 5.81 at the [...]
+'NATIONAL AVERAGE PRICES FOR FARMER-OWNED RESERVE The U.S. Agriculture Department\nreported the farmer-owned reserve national five-day average\nprice through February 25 as follows (Dlrs/Bu-Sorghum Cwt) -\n         Natl   Loan           Release   Call\n         Avge   Rate-X  Level    Price  Price\n Wheat   2.55   2.40       IV     4.65     --\n                            V     4.65     --\n                           VI     4.45     --\n Corn    1.35   1.92       IV     3.15   3.15\n     [...]
+'ARGENTINE 1986/87 GRAIN/OILSEED REGISTRATIONS Argentine grain board figures show\ncrop registrations of grains, oilseeds and their products to\nFebruary 11, in thousands of tonnes, showing those for futurE\nshipments month, 1986/87 total and 1985/86 total to February\n12, 1986, in brackets:\n    Bread wheat prev 1,655.8, Feb 872.0, March 164.6, total\n2,692.4 (4,161.0).\n    Maize Mar 48.0, total 48.0 (nil).\n    Sorghum nil (nil)\n    Oilseed export registrations were:\n    Sunflowerse [...]
+'CHAMPION PRODUCTS &lt;CH> APPROVES STOCK SPLIT Champion Products Inc said its\nboard of directors approved a two-for-one stock split of its\ncommon shares for shareholders of record as of April 1, 1987.\n    The company also said its board voted to recommend to\nshareholders at the annual meeting April 23 an increase in the\nauthorized capital stock from five mln to 25 mln shares.\n Reuter\n&#3;',0
+'COMPUTER TERMINAL SYSTEMS &lt;CPML> COMPLETES SALE Computer Terminal Systems Inc said\nit has completed the sale of 200,000 shares of its common\nstock, and warrants to acquire an additional one mln shares, to\n&lt;Sedio N.V.> of Lugano, Switzerland for 50,000 dlrs.\n    The company said the warrants are exercisable for five\nyears at a purchase price of .125 dlrs per share.\n    Computer Terminal said Sedio also has the right to buy\nadditional shares and increase its total holdings up [...]
+'COBANCO INC &lt;CBCO> YEAR NET Shr 34 cts vs 1.19 dlrs\n    Net 807,000 vs 2,858,000\n    Assets 510.2 mln vs 479.7 mln\n    Deposits 472.3 mln vs 440.3 mln\n    Loans 299.2 mln vs 327.2 mln\n    Note: 4th qtr not available. Year includes 1985\nextraordinary gain from tax carry forward of 132,000 dlrs, or\nfive cts per shr.\n Reuter\n&#3;',0
+'OHIO MATTRESS &lt;OMT> MAY HAVE LOWER 1ST QTR NET Ohio Mattress Co said its first\nquarter, ending February 28, profits may be below the 2.4 mln\ndlrs, or 15 cts a share, earned in the first quarter of fiscal\n1986.\n    The company said any decline would be due to expenses\nrelated to the acquisitions in the middle of the current\nquarter of seven licensees of Sealy Inc, as well as 82 pct of\nthe outstanding capital stock of Sealy.\n    Because of these acquisitions, it said, first qua [...]
+'AM INTERNATIONAL INC &lt;AM> 2ND QTR JAN 31 Oper shr loss two cts vs profit seven cts\n    Oper shr profit 442,000 vs profit 2,986,000\n    Revs 291.8 mln vs 151.1 mln\n    Avg shrs 51.7 mln vs 43.4 mln\n    Six mths\n    Oper shr profit nil vs profit 12 cts\n    Oper net profit 3,376,000 vs profit 5,086,000\n    Revs 569.3 mln vs 298.5 mln\n    Avg shrs 51.6 mln vs 41.1 mln\n    NOTE: Per shr calculated after payment of preferred\ndividends.\n    Results exclude credits of 2,227,000 or [...]
+'BROWN-FORMAN INC &lt;BFD> 4TH QTR NET Shr one dlr vs 73 cts\n    Net 12.6 mln vs 15.8 mln\n    Revs 337.3 mln vs 315.2 mln\n    Nine mths\n    Shr 3.07 dlrs vs 3.08 dlrs\n    Net 66 mln vs 66.2 mln\n    Revs 1.59 billion vs 997.1 mln\n Reuter\n&#3;',0
+'DEAN FOODS &lt;DF> SEES STRONG 4TH QTR EARNINGS Dean Foods Co expects earnings for the\nfourth quarter ending May 30 to exceed those of the same\nyear-ago period, Chairman Kenneth Douglas told analysts.\n    In the fiscal 1986 fourth quarter the food processor\nreported earnings of 40 cts a share.\n    Douglas also said the year\'s sales should exceed 1.4\nbillion dlrs, up from 1.27 billion dlrs the prior year.\n    He repeated an earlier projection that third-quarter\nearnings \"will p [...]
+'BONUS WHEAT FLOUR FOR NORTH YEMEN  -- USDA The Commodity Credit Corporation, CCC,\nhas accepted an export bonus offer to cover the sale of 37,000\nlong tons of wheat flour to North Yemen, the U.S. Agriculture\nDepartment said.\n    The wheat four is for shipment March-May and the bonus\nawarded was 119.05 dlrs per tonnes and will be paid in the form\nof commodities from the CCC inventory.\n    The bonus was awarded to the Pillsbury Company.\n    The wheat flour purchases complete the Ex [...]
+'MAGMA LOWERS COPPER 0.75 CENT TO 66 CTS Magma Copper Co, a subsidiary of Newmont\nMining Corp, said it is cutting its copper cathode price by\n0.75 cent to 66 cents a lb, effective immediately.\n Reuter\n&#3;',0
+'BROWN-FORMAN &lt;BFDB> SETS STOCK SPLIT, UPS PAYOUT Brown-Forman Inc said its board\nhas approved a three-for-two stock split and a 35 pct increase\nin the company cash dividend.\n    The company cited its improved earnings outlook and\ncontinued strong cash flow as reasons for raising the dividend.\n    Brown-Forman said the split of its Class A and Class B\ncommon shares would be effective March 13.\n    The company said directors declared a quarterly cash\ndividend on each new share  [...]
+'ESQUIRE RADIO AND ELECTRONICS INC &lt;EE> 4TH QTR Shr profit 15 cts vs profit four cts\n    Annual div 72 cts vs 72 cts prior yr\n    Net profit 72,000 vs profit 16,000\n    Revs 7,075,000 vs 2,330,000\n    12 mths\n    Shr profit 42 cts vs loss 11 cts\n    Net profit 203,000 vs loss 55,000\n    Revs 16.1 mln vs 3,971,000\n    NOTE: annual dividend payable April 10, 1987, to\nstockholders of record on March 27, 1987.\n Reuter\n&#3;',0
+'UNITED PRESIDENTIAL CORP &lt;UPCO> 4TH QTR NET Shr 39 cts vs 50 cts\n    Net 1,545,160 vs 2,188,933\n    Revs 25.2 mln vs 19.5 mln\n    Year\n    Shr 1.53 dlrs vs 1.21 dlrs\n    Net 6,635,318 vs 5,050,044\n    Revs 92.2 mln vs 77.4 mln\n    NOTE: Results include adjustment of 848,600 dlrs or 20 cts\nshr for 1986 year and both 1985 periods from improvement in\nresults of its universal life business than first estimated.\n Reuter\n&#3;',0
+'JANUARY HOUSING SALES DROP, REALTY GROUP SAYS Sales of previously owned homes\ndropped 14.5 pct in January to a seasonally adjusted annual\nrate of 3.47 mln units, the National Association of Realtors\n(NAR) said.\n    But the December rate of 4.06 mln units had been the\nhighest since the record 4.15 mln unit sales rate set in\nNovember 1978, the group said.\n    \"The drop in January is not surprising considering that a\nsignificant portion of December\'s near-record pace was made up\ [...]
+'ASSETS OF MONEY MARKET MUTUAL FUNDS ROSE 720.4 MLN DLRS IN LATEST WEEK\n ',0
+'OWENS AND MINOR INC &lt;OBOD> RAISES QTLY DIVIDEND Qtly div eights cts vs 7.5 cts prior\n    Pay March 31\n    Record March 13\n Reuter\n&#3;',0
+'COMPUTER LANGUAGE RESEARCH IN &lt;CLRI> 4TH QTR Shr loss 22 cts vs loss 18 cts\n    Net loss 3,035,000 vs loss 2,516,000\n    Revs 20.9 mln vs 19.6 mln\n    Qtly div three cts vs three cts prior\n    Year\n    Shr profit two cts vs profit 34 cts\n    Net profit 215,000 vs profit 4,647,000\n    Revs 93.4 mln vs 98.7 mln\n    NOTE: Dividend payable April one to shareholders of record\nMarch 17.\n Reuter\n&#3;',0
+'&lt;CINRAM LTD> 4TH QTR NET Shr 45 cts vs 58 cts\n    Net 1.1 mln vs 829,000\n    Sales 7.9 mln vs 9.4 mln\n    Avg shrs 2,332,397 vs 1,428,000\n    Year\n    Shr 1.22 dlrs vs 1.06 dlrs\n    Net 2.9 mln vs 1.5 mln\n    Sales 25.7 mln vs 22.2 mln\n    Avg shrs 2,332,397 vs 1,428,000\n Reuter\n&#3;',0
+'STANDARD TRUSTCO SEES BETTER YEAR Standard Trustco said it expects earnings\nin 1987 to increase at least 15 to 20 pct from the 9,140,000\ndlrs, or 2.52 dlrs per share, recorded in 1986.\n    \"Stable interest rates and a growing economy are expected to\nprovide favorable conditions for further growth in 1987,\"\npresident Brian O\'Malley told shareholders at the annual\nmeeting.\n    Standard Trustco previously reported assets of 1.28 billion\ndlrs in 1986, up from 1.10 billion dlrs in [...]
+'HANDY AND HARMAN &lt;HNH> 4TH QTR LOSS Shr loss 51 cts vs loss three cts\n    Net loss 7,041,000 vs loss 467,000\n    Rev 138.9 mln vs 131.4 mln\n    12 months\n    Shr loss 64 cts vs profit 46 cts\n    Net loss 8,843,000 vs profit 6,306,0000\n    Rev 558.9 mln vs 556.7 mln\n    NOTE: Net loss for 4th qtr 1986 includes charge for\nrestructuring of 2.6 mln dlrs after tax, or 19 cts a share.\n    1986 net loss includes after tax special charge of 2.7 mln\ndlrs, or 20 cts a share.\n   \n R [...]
+'ICO PRODUCERS TO PRESENT NEW COFFEE PROPOSAL International Coffee Organization, ICO,\nproducing countries will present a proposal for reintroducing\nexport quotas for 12 months from April 1 with a firm\nundertaking to try to negotiate up to September 30 any future\nquota distribution on a new basis, ICO delegates said.\n    Distribution from April 1 would be on an unchanged basis as\nin an earlier producer proposal, which includes shortfall\nredistributions totalling 1.22 mln bags, they [...]
+'MCLEAN\'S &lt;MII> U.S. LINES SETS ASSET TRANSFER McLean Industries Inc\'s United\nStates Lines Inc subsidiary said it has agreed in principle to\ntransfer its South American service by arranging for the\ntransfer of certain charters and assets to &lt;Crowley Mariotime\nCorp>\'s American Transport Lines Inc subsidiary.\n    U.S. Lines said negotiations on the contract are expected\nto be completed within the next week. Terms and conditions of\nthe contract would be subject to approval o [...]
+'CHEMLAWN &lt;CHEM> RISES ON HOPES FOR HIGHER BIDS ChemLawn Corp &lt;CHEM> could attract a\nhigher bid than the 27 dlrs per share offered by Waste\nManagement Inc &lt;WNX>, Wall Street arbitrageurs said.\n    Shares of ChemLawn shot up 11-5/8 to 29-3/8 in\nover-the-counter- trading with 3.8 mln of the company\'s 10.1\nmln shares changing hands by late afternoon.\n    \"This company could go for 10 times cash flow or 30 dlrs,\nmaybe 32 dollars depending on whether there is a competing\nbi [...]
+'U.S. SUGAR IMPORTS DOWN IN WEEK - USDA Sugar imports subject to the U.S.\nsugar import quota during the week ended January 9, the initial\nweek of the 1987 sugar quota year, totaled 5,988 short tons\nversus 46,254 tons the previous week, the Agriculture\nDepartment said.\n    The sugar import quota for the 1987 quota year\n(January-December) has been set at 1,001,430 short tons\ncompared with 1,850,000 tons in the 1986 quota year, which was\nextended three months to December 31.\n    Th [...]
+'BRAZIL ANTI-INFLATION PLAN LIMPS TO ANNIVERSARY inflation\nplan, initially hailed at home and abroad as the saviour of the\neconomy, is limping towards its first anniversary amid soaring\nprices, widespread shortages and a foreign payments crisis.\n    Announced last February 28 the plan froze prices, fixed the\nvalue of the new Cruzado currency and ended widespread\nindexation of the economy in a bid to halt the country\'s 250\npct inflation rate.\n    But within a year the plan has al [...]
+'N.Z. OFFICIAL FOREIGN RESERVES FALL IN JANUARY New Zealand\'s official foreign\nreserves fell to 7.15 billion N.Z. Dlrs in January from 7.20\nbillion dlrs in December and compared with 3.03 billion a year\nago period, the Reserve Bank said in its weekly statistical\nbulletin.\n Reuter\n&#3;',0
+'AGENCY REPORTS 39 SHIPS WAITING AT PANAMA CANAL The Panama Canal Commission, a U.S.\ngovernment agency, said in its daily operations report that\nthere was a backlog of 39 ships waiting to enter the canal\nearly today. Over the next two days it expects --              \n             2/26  2/27\n                       Due: 27    35\n      Scheduled to Transit: 35    41\n           End-Day Backlog: 31    25\n    Average waiting time tomorrow --\n         Super Tankers  Regular Vessels\n N [...]
+'AMERICA FIRST MORTGAGE SETS SPECIAL PAYOUT &lt;America First Federally Guaranteed\nMortgage Fund Two> said it is making a special distribution of\n71.6 cts per exchangeable unit, which includes 67.62 cts from\nreturn on capital and 3.98 cts from income gains.\n Reuter\n&#3;',0
+'EMHART CORP &lt;EMH> QTLY DIVIDEND Qtly div 35 cts vs 35 cts prior\n    Payable March 31\n    Record March nine\n\n Reuter\n&#3;',0
+'AM INTERNATIONAL &lt;AM> CITES STRONG PROSPECTS AM International Inc, reporting an\noperating loss for the January 31 second quarter, said\nprospects for the balance of the fiscal year remain good.\n    It said orders at its Harris Graphics subsidiary, acquired\nin June 1986, \"continue to run at a strong pace.\" For the six\nmonths, orders rose 35 pct over the corresponding prior-year\nperiod, or on an annualized basis are running at about 630 mln\ndlrs.\n    The backlog at Harris is u [...]
+'CCC CREDITS FOR HONDURAS SWITCHED TO WHITE CORN The Commodity Credit Corporation (CCC)\nannounced 1.5 mln dlrs in credit guarantees previously\nearmarked to cover sales of dry edible beans to Honduras have\nbeen switched to cover sales of white corn, the U.S.\nAgriculture Department said.\n    The department said the action reduces coverage for sales\nof dry edible beans to 500,000 dlrs and creates the new line of\n1.5 mln dlrs for sales of white corn.\n    All sales under the credit gu [...]
+'ASSETS OF U.S. MONEY FUNDS ROSE IN WEEK Assets of money market mutual funds\nincreased 720.4 mln dlrs in the week ended yesterday to 236.90\nbillion dlrs, the Investment Company Institute said.\n    Assets of 91 institutional funds rose 356 mln dlrs to 66.19\nbillion dlrs, 198 general purpose funds rose 212.5 mln dlrs to\n62.94 billion dlrs and 92 broker-dealer funds rose 151.9 mln\ndlrs to 107.77 billion dlrs.\n Reuter\n&#3;',0
+'GULF BARGE FREIGHT RATES UP FURTHER ON CALL Gulf barge freight rates firmed again on\nthe outlook for steady vessel loadings at the Gulf, increasing\nthe demand for barges to supply those ships, dealers said.\n    No barges traded today on the St Louis Merchants\' Exchange\ncall session, versus 29 yesterday.\n    Quotes included -\n - Delivery this week on the Illinois River (Joliet) 135 pct of\ntariff bid/140 offered, with next week same river (ex Chicago)\nquoted the same - both up 2- [...]
+'GULF APPLIED &lt;GATS> SELLS UNITS, SEES GAIN Gulf Applied Technologies Inc said it\nsold its pipeline and terminal operations units for 12.2 mln\ndlrs and will record a gain of 2.9 mln dlrs in the first\nquarter.\n    It added that any federal taxes owed on the transaction\nwill be offset by operating loss carryovers.\n Reuter\n&#3;',0
+'FARMERS GROUP INC &lt;FGRP> 4TH QTR NET Shr 80 cts vs 72 cts\n    Net 55,513,000 vs 48,741,000\n    Revs 290.9 mln vs 264.2 mln\n    Year\n    Shr 3.09 dlrs vs 2.72 dlrs\n    Net 213,470,000 vs 184,649,000\n    Revs 1.12 billion vs 992.9 mln\n    Avg shrs 69,127,000 vs 68,004,000\n Reuter\n&#3;',0
+'POTOMAC ELECTRIC POWER CO &lt;POM> JAN NET Shr 27 cts vs 29 cts\n    Net 13,555,000 vs 14,635,000\n    Revs 104,606,000 vs 110,311,000\n    Avg shrs 47.2 mln vs 47.1 mln\n    12 mths\n    Shr 4.10 dlrs vs 3.66 dlrs\n    Net 226,653,000 vs 186,790,000\n    Revs 1.4 billion vs 1.3 billion\n    Avg shr 47.1 mln vs 47.1 mln\n   \n    NOTE: latest 12 mths net includes gain 46 cts per share for\nsale of Virginia service territory to Dominion Resources Inc\n&lt;D>.\n Reuter\n&#3;',0
+'&lt;COFAB INC> BUYS GULFEX FOR UNDISCLOSED AMOUNT CoFAB Inc said it acquired &lt;Gulfex Inc>,\na Houston-based fabricator of custom high-pressure process\nvessels for the energy and petrochemical industries.\n    CoFAB said its group of companies manufacture specialized\ncooling and lubricating systems for the oil and gas,\npetrochemical, utility, pulp and paper and marine industries.\n Reuter\n&#3;',0
+'U.S. WEEKLY SOYBEAN CRUSH 21,782,929 BUSHELS Reporting members of the National\nSoybean Processors Association (NSPA) crushed 21,782,929\nbushels of soybeans in the week ended Feb 25 compared with\n22,345,718 bushels in the previous week and 16,568,000 in the\nyear-ago week, the association said.\n    It said total crushing capacity for members was 25,873,904\nbushels vs 25,873,904 last week and 25,459,238 bushels last\nyear.\n    NSPA also said U.S. soybean meal exports in the week wer [...]
+'TULTEX CORP &lt;TTX> SETS QUARTERLY DIVIDEND Qtly div eights cts vs eight cts prior\n    Pay April one\n    Record March 13\n Reuter\n&#3;',0
+'ATICO FINANCIAL CORP &lt;ATFC> 4TH QTR NET Shr 30 cts vs 5.92 dlrs\n    Net 1,142,000 vs 16.0 mln\n    Revs 10.6 mln vs 24.2 mln\n    Year\n    Shr 90 cts vs 6.20 dlrs\n    Net 3,320,000 vs 16.9 mln\n    Revs 45.00 mln vs 26.2 mln\n    NOTE: 1986 4th qtr and yr amounts include acquisition of\n98.8 pct of common of Atico, formerly Peninsula Federal Savings\nand Loan Association, on January 24, 1986.\n    1985 4th qtr and yr net include net gain of 15.9 mln dlrs\nor 5.86 dlrs per share on [...]
+'ICO EXPORTERS TO MODIFY NEW PROPOSAL International Coffee Organization (ICO)\nexporters will modify their new proposal on quota resumption\nbefore presenting it to importers tomorrow, ICO delegates said.\n    The change, which will be discussed tonight informally\namong producers, follows talks after the formal producer\nsession with the eight-member producer splinter group and will\naffect the proposed quota distribution for 12 months from April\none, they said.\n    The proposed share [...]
+'U.S. COMMERCIAL PAPER FALLS 375 MLN DLRS IN FEB 18 WEEK, FED SAYS\n ',0
+'N.Y. BUSINESS LOANS FALL 195 MLN DLRS IN FEB 18 WEEK, FED SAYS\n ',0
+'NEW YORK BANK DISCOUNT WINDOW BORROWINGS 64 MLN DLRS IN FEB 25 WEEK\n ',0
+'NEW YORK BUSINESS LOANS FALL 195 MLN DLRS Commercial and industrial loans on the\nbooks of the 10 major New York banks, excluding acceptances,\nfell 195 mln dlrs to 65.06 billion in the week ended February\n18, the Federal Reserve Bank of New York said.\n    Including acceptances, loans declined 114 mln dlrs to 65.89\nbillion.\n    Commercial paper outstanding nationally dropped 375 mln\ndlrs to 336.63 billion.\n    National business loan data are scheduled to be released on\nFriday.\n  [...]
+'N.Y. BANK DISCOUNT BORROWINGS 64 MLN DLRS The eight major New York City banks had\n64 mln dlrs in average borrowings from the Federal Reserve in\nthe week to Wednesday February 25, a Fed spokesman said.\n    The week marked the second half of the two-week bank\nstatement period that ended on Wednesday. The banks had no\nborrowings in the prior week.\n    Commenting on the latest week, a Fed spokesman said that\nall of the borrowing occurred yesterday and was done by fewer\nthan half of  [...]
+'PHILIPPINE LONG DISTANCE &lt;PHI> YEAR NET Shr primary 95.30 pesos vs 29.71 pesos\n    Shr diluted 61.11 pesos vs 18.49 pesos\n    Qtly div 1.25 pesos vs 1.25 pesos\n    Net 1.9 billion vs 779 mln\n    Revs 6.1 billion vs 4.7 billion\n    NOTE: Full name Philippine Long Distance Telephone Co.\n    Figures quoted in Philippine Pesos.\n    Dividend payable April 15 to holders or record March 13.\nExchange rate on day of dividend declaration was 20.792 pesos\nper dollar.\n Reuter\n&#3;',0
+'LIBERTY ALL-STAR EQUITY FUND INITIAL DIV Qtly div five cts vs N.A.\n    Payable April two\n    Record March 20\n    NOTE:1986 dividend includes special two cts per share for\nthe period beginning with the fund\'s commencement of operations\non Novebmer three through December 31, 1986.\n Reuter\n&#3;',0
+'COMBUSTION ENGINEERING INC &lt;CSP> REGULAR DIV Qtly div 25 cts vs 25 cts prior\n    Pay April 30\n    Record April 16\n Reuter\n&#3;',0
+'TONKA CORP &lt;TKA> RAISES DIVIDEND Qtly div two cts vs 1.7 cts\n    Pay March 26\n    Record March 12\n Reuter\n&#3;',0
+'BDM INTERNATIONAL &lt;BDM> INCREASES QTRLY DIVS Annual div Class A 14 cts vs 12 cts prior\n    Annual div Class B 12.1 cts vs 10.4 cts prior\n    Payable April one\n    Record March 20\n    NOTE: full name is BDM International Inc.\n Reuter\n&#3;',0
+'SYSTEMATICS INC &lt;SYST> REGULAR PAYOUT Qtly div three cts vs three cts prior\n    Pay March 13\n    Record February 27\n Reuter\n&#3;',0
+'U.S. M-1 MONEY SUPPLY RISES 2.1 BILLION DLRS IN FEB 16 WEEK, FED SAYS\n ',0
+'&lt;IVACO INC> YEAR NET Shr 1.11 dlrs vs 1.04 dlrs\n    Net 44,092,000 vs 35,145,000\n    Revs 1.94 billion vs 1.34 billion\n    Note: 1986 results include extraordinary gain of 1,035,000\ndlrs or six cts a share from secondary share offering of Canron\nunit.\n Reuter\n&#3;',0
+'U.S. BANK DISCOUNT BORROWINGS AVERAGE 310 MLN DLRS IN FEB 25 WEEK, FED SAYS\n ',0
+'U.S. BANK NET FREE RESERVES 644 MLN DLRS IN TWO WEEKS TO FEB 25, FED SAYS\n ',0
+'INVESTMENT FIRMS CUT CYCLOPS &lt;CYL> STAKE A group of affiliated New York\ninvestment firms said they lowered their stake in Cyclops Corp\nto 260,500 shares, or 6.4 pct of the total outstanding common\nstock, from 370,500 shares, or 9.2 pct.\n    In a filing with the Securities and Exchange Commission,\nthe group, led by Mutual Shares Corp, said it sold 110,000\nCyclops common shares on Feb 17 and 19 for 10.0 mln dlrs.\n Reuter\n&#3;',0
+'ASCS TERMINAL MARKET VALUES FOR PIK GRAIN The Agricultural Stabilization and\nConservation Service (ASCS) has established these unit values\nfor commodities offered from government stocks through\nredemption of Commodity Credit Corporation commodity\ncertificates, effective through the next business day.\n    Price per bushel is in U.S. dollars. Sorghum is priced per\nCWT, corn yellow grade only.\n     WHEAT     HRW   HRS    SRW   SWW   DURUM\n Chicago       --    3.04   2.98  --    --\ [...]
+'CORADIAN CORP &lt;CDIN> 4TH QTR NET Shr profit three cts vs loss three cts\n    Net profit 363,000 vs loss 197,000\n    Revs 3,761,000 vs 2,666,000\n    Year\n    Shr profit one cent vs loss 37 cts\n    Net profit 129,000 vs loss 1,715,000\n    Revs 11.4 mln vs 10.9 mln\n    Avg shrs 10,694,081 vs 4,673,253\n Reuter\n&#3;',0
+' &#2;\nFEDERAL RESERVE WEEKLY REPORT 1 - FEB 26\n    Two weeks ended Feb 25      daily avgs-mlns\n Net free reserves.............644 vs.....1,337\n Bank borrowings...............680 vs.......425\n Including seasonal loans.......81 vs........56\n Including extended loans......299 vs.......265\n Excess reserves.............1,025 vs.....1,497\n Required reserves (adj)....55,250 vs....55,366\n Required reserves............N.A. vs......N.A.\n Total reserves...............N.A. vs......N.A.\n  [...]
+'N.Z. TRADING BANK DEPOSIT GROWTH RISES SLIGHTLY New Zealand\'s trading bank seasonally\nadjusted deposit growth rose 2.6 pct in January compared with a\nrise of 9.4 pct in December, the Reserve Bank said.\n    Year-on-year total deposits rose 30.6 pct compared with a\n26.3 pct increase in the December year and 34.5 pct rise a year\nago period, it said in its weekly statistical release.\n    Total deposits rose to 17.18 billion N.Z. Dlrs in January\ncompared with 16.74 billion in Decembe [...]
+' &#2;\nFEDERAL RESERVE MONEY SUPPLY REPORT - FEB 26\n    One Week Ended Feb 16\n M-1.........................736.7 up.......2.1\n Previous week revised to....734.6 From...734.2\n Avge  4 Weeks (Vs Week Ago).735.0 Vs.....733.5\n Avge 13 Weeks (Vs week Ago).731.8 Vs.....729.8\n Monthly aggregates (Adjusted avgs in billions)\n M-1 (Jan vs Dec)............737.6 Vs.....730.5\n M-2 (Jan vs Dec)..........2,820.1 Vs...2,798.4\n M-3 (Jan vs Dec)..........3,513.6 Vs...3,488.1\n L...(Dec vs Nov).. [...]
+' &#2;\nFEDERAL RESERVE WEEKLY REPORT 3 - FEB 26\n    One week ended Feb 25       daily avgs-mlns\n Govts bought outright....193,374 down....1,342\n Govts repurchases............nil unch.........\n Agencies bought outright...7,719 unch.........\n Agencies repurchases.........nil unch.........\n Acceptances repurchases......nil unch.........\n Matched sales..............4,920 vs......3,788\n Including sales with cust..4,369 vs......3,788\n Other Fed assets..........16,806 down....1,161\n  [...]
+' &#2;\nFEDERAL RESERVE WEEKLY REPORT 4 - FEB 26\n    One week ended Feb 25       Daily avgs-Mlns\n Foreign deposits.............219 down.......29\n Gold stock................11,059 unch.........\n Custody holdings.........168,348 down......366\n Federal funds rate avg......5.95 vs.......6.21\n    Factors on Wednesday, Feb 25\n Bank borrowings............1,239 vs........446\n Including extended credits....92 vs........298\n Matched sales..............8,250 vs......2,998\n Including sales [...]
+'WORLD MARKET PRICE FOR UPLAND COTTON - USDA The U.S. Agriculture Department\nannounced the prevailing world market price, adjusted to U.S.\nquality and location, for Strict Low Middling, 1-1/16 inch\nupland cotton at 52.69 cts per lb, to be in effect through\nmidnight March 5.\n    The adjusted world price is at average U.S. producing\nlocations (near Lubbock, Texas) and will be further adjusted\nfor other qualities and locations. The price will be used in\ndetermining First Handler Cot [...]
+'SUGAR QUOTA IMPORTS DETAILED -- USDA The U.S. Agriculture Department said\ncumulative sugar imports from individual countries during the\n1987 quota year, which began January 1, 1987 and ends December\n31, 1987 were as follows, with quota allocations for the quota\nyear in short tons, raw value --\n            CUMULATIVE     QUOTA 1987\n              IMPORTS     ALLOCATIONS\n ARGENTINA        nil          39,130\n AUSTRALIA        nil          75,530\n BARBADOS         nil           7,5 [...]
+'GRAIN SHIPS LOADING AT PORTLAND There were seven grain ships loading and\nsix ships were waiting to load at Portland, according to the\nPortland Merchants Exchange.\n Reuter\n&#3;',1
+'MERIDIAN BANCORP INC &lt;MRDN> SETS REGULAR PAYOUT Qtly div 25 cts vs 25 cts prior\n    Pay April one\n    Record March 15\n Reuter\n&#3;',0
+'U.S. BANK DISCOUNT BORROWINGS 310 MLN DLRS U.S. bank discount window borrowings\nless extended credits averaged 310 mln dlrs in the week to\nWednesday February 25, the Federal Reserve said.\n    The Fed said that overall borrowings in the week fell 131\nmln dlrs to 614 mln dlrs, with extended credits up 10 mln dlrs\nat 304 mln dlrs. The week was the second half of a two-week\nstatement period. Net borrowings in the prior week averaged 451\nmln dlrs.\n    Commenting on the two-week state [...]
+'AMERICAN EXPRESS &lt;AXP> SEEN IN POSSIBLE SPINNOFF American Express Co remained silent on\nmarket rumors it would spinoff all or part of its Shearson\nLehman Brothers Inc, but some analysts said the company may be\nconsidering such a move because it is unhappy with the market\nvalue of its stock.\n    American Express stock got a lift from the rumor, as the\nmarket calculated a partially public Shearson may command a\ngood market value, thereby boosting the total value of American\nExp [...]
+'U.S. M-1 MONEY SUPPLY ROSE 2.1 BILLION DLRS U.S. M-1 money supply rose 2.1 billion\ndlrs to a seasonally adjusted 736.7 billion dlrs in the\nFebruary 16 week, the Federal Reserve said.\n    The previous week\'s M-1 level was revised to 734.6 billion\ndlrs from 734.2 billion dlrs, while the four-week moving\naverage of M-1 rose to 735.0 billion dlrs from 733.5 billion.\n    Economists polled by Reuters said that M-1 should be\nanywhere from down four billion dlrs to up 2.3 billion dlrs.\ [...]
+'LIBERTY ALL-STAR &lt;USA> SETS INITIAL PAYOUT Liberty All-Star Equity Fund said\nit declared an initial dividend of five cts per share, payable\nApril two to shareholders of record March 20.\n    It said the dividend includes a quarterly dividend of three\ncts a share and a special payout of two cts a share, which\ncovers the period from November three, 1986, when the fund\nbegan operations, to December 31, 1986.\n    The fund said its quarterly dividend rate may fluctuate in\nthe futur [...]
+'CHINESE PORK OUTPUT SEEN LOWER -- USDA High feed prices will cause the\nChinese to reduce hog herd growth and pork production this\nyear, the U.S. Agriculture Department said.\n    In its World Production and Trade Report, the department\nsaid hog numbers at the start of 1987 were estimated at 331.6\nmln head, up slightly from 1986, and 10 mln head above earlier\nprojections for 1987.\n    Pork production in 1986 was up 4.2 pct to 17.25 mln tonnes,\nslightly below earlier estimates, it  [...]
+'IVACO SEES MINIMAL FIRST QUARTER EARNINGS (Ivaco Inc) said price pressure on steel\nproducts, particularly in the U.S., and the recent increase in\nthe value of the Canadian dollar is expected to result in\n\"minimal\" first quarter earnings.\n    It said subsequent quarters should show substantial\nimprovement from first quarter levels but 1987 earnings will\nnot reach 1986 levels as long as those conditions continue.\n     Ivaco earlier reported 1986 profit rose to 44.1 mln dlrs,\naft [...]
+'U.S. GRAIN CARLOADINGS FALL IN WEEK U.S. grain carloadings totaled 26,108\ncars in the week ended February 21, down 2.2 pct from the\nprevious week but 22.8 pct above the corresponding week a year\nago, the Association of American Railroads reported.\n    Grain mill product loadings in the week totalled 11,382\ncars, down 1.8 pct from the previous week but 7.6 pct above the\nsame week a year earlier, the association said.\n Reuter\n&#3;',1
+'HONG KONG FIRM UPS WRATHER&lt;WCO> STAKE TO 11 PCT Industrial Equity (Pacific) Ltd, a\nHong Kong investment firm, said it raised its stake in Wrather\nCorp to 816,000 shares, or 11.3 pct of the total outstanding\ncommon stock, from 453,300 shares, or 6.3 pct.\n    In a filing with the Securities and Exchange Commission,\nIndustrial Equity, which is principally owned by Brierley\nInvestments Ltd, a publicly held New Zealand company, said it\nbought 362,700 Wrather common shares between F [...]
+'COLECO INDUSTRIES INC &lt;CLO> 4TH QTR Shr loss 6.48 DLS VS PROFIT 23 CTS\n    Net loss 110.6 mln vs profit 4.1 mln\n    Revs 74.0 mln vs 152.0 mln\n    Year\n    Shr loss 6.52 dlrs vs profit 3.87 dlrs\n    net loss 111.2 mln vs profit 64.2 mln\n    Revs 501.0 mln vs 776.0 mln\n Reuter\n&#3;',0
+'DIAMOND SHAMROCK (DIA) CUTS CRUDE PRICES Diamond Shamrock Corp said that\neffective today it had cut its contract prices for crude oil by\n1.50 dlrs a barrel.\n    The reduction brings its posted price for West Texas\nIntermediate to 16.00 dlrs a barrel, the copany said.\n    \"The price reduction today was made in the light of falling\noil product prices and a weak crude oil market,\" a company\nspokeswoman said.\n    Diamond is the latest in a line of U.S. oil companies that\nhave cut [...]
+'LIEBERT CORP &lt;LIEB> APPROVES MERGER Liebert Corp said its shareholders\napproved the merger of a wholly-owned subsidiary of Emerson\nElectric Co &lt;EMR>.\n    Under the terms of the merger, each Liebert shareholder\nwill receive .3322 shares of Emerson stock for each Liebert\nshare.\n Reuter\n&#3;',0
+'NORTHERN TELECOM PROPOSES TWO-FOR-ONE STOCK SPLIT\n ',0
+'COLECO INDUSTRIES &lt;CLC> SEES PROFIT IN 1987 Coleco Industries Inc said\nit expects to return to profitability in 1987.\n    Earlier, Coleco reported a net loss of 111.2 mln dlrs for\nthe year ended December 31 compared to a profit of 64.2 mln\ndlrs in the year earlier.\n    In a prepared statement, the company said the dramatic\nswing in operating results was due primarily to the steep\ndecline in sales of Cabbage Patch Kids products from 600 mln\ndlrs to 230 mln dlrs.\n    Coleco sa [...]
+' &#2;\nFEDERAL RESERVE WEEKLY REPORT 1 - FEB 26\n    Two weeks ended Feb 25      daily avgs-mlns\n Net free reserves.............644 vs.....1,337\n Bank borrowings...............680 vs.......425\n Including seasonal loans.......81 vs........56\n Including extended loans......299 vs.......265\n Excess reserves.............1,025 vs.....1,497\n Required reserves (adj)....55,250 vs....55,366\n Required reserves..........55,513 vs....56,208\n Total reserves.............56,538 vs....57,705\n  [...]
+' &#2;\nFEDERAL RESERVE WEEKLY REPORT 2 - FEB 26\n     Two weeks ended Feb 25                    \n Total vault cash...........25,237 vs....27,327\n Inc cash equal to req res..22,834 vs....24,680\n     One week ended Feb 25      Daily avgs-Mlns\n Bank borrowings...............614 down.....131\n Including seasonal loans.......88 up........14\n Including extended loans......304 up........10\n Float.........................511 down.....320\n Balances/adjustments........2,101 down......67\n  [...]
+'GULF APPLIED TECHNOLOGIES &lt;GATS> SELLS UNITS Gulf Applied Technologies Inc said it\nsold its subsidiaries engaged in pipeline and terminal\noperations for 12.2 mln dlrs.\n    The company said the sale is subject to certain post\nclosing adjustments, which it did not explain.\n Reuter\n&#3;',0
+'INVESTMENT GROUP RAISES ROBESON &lt;RBSN> STAKE A group of affiliated Miami-based\ninvestment firms led by Fundamental Management Corp said it\nraised its stake in Robeson Industries Corp to 238,000 shares,\nor 14.6 pct of the total, from 205,000 or 12.8 pct.\n    In a filing with the Securities and Exchange Commission,\nthe group said it bought 32,800 Robeson common shares between\nJan 26 and Feb 9 for 175,691 dlrs.\n    The group said it may buy more shares and plans to study\nRobeson [...]
+'GAO LIKELY TO SHOW CERTS MORE COSTLY THAN CASH A study on grain certificates due out\nshortly from the Government Accounting Office (GAO) could show\nthat certificates cost the government 10 to 15 pct more than\ncash outlays, administration and industry sources said.\n    Analysis that the GAO has obtained from the Agriculture\nDepartment and the Office of Management and Budget suggests\nthat certificates cost more than cash payments, a GAO official\ntold Reuters.\n    GAO is preparing  [...]
+'DAHLBERG INC &lt;DAHL> 4TH QTR NET Shr profit 10 cts vs loss seven cts\n    Net profit 286,870 vs loss 156,124\n    Revs 10.0 mln vs 7,577,207\n    Year\n    Shr profit five cts vs profit 42 cts\n    Net profit 160,109 vs profit 906,034\n    Revs 38.1 mln vs 31.2 mln\n    Avg shrs 2.9 mln vs 2.2 mln\n    NOTE: 1986 year includes 53 weeks.\n Reuter\n&#3;',0
+'CITY NATIONAL CORP &lt;CTYN> RAISES DIVIDEND Shr 16 cts vs 13 cts\n    Pay April 15\n    Record March 31\n Reuter\n&#3;',0
+'&lt;PAGE PETROLEUM LTD> YEAR LOSS Shr loss 1.98 dlrs vs loss 5.24 dlrs\n    Net loss 23.3 mln vs loss 44.8 mln\n    Revs 13.6 mln vs 29.6 mln\n    Note: 1986 net includes nine mln dlr extraordinary loss for\noil and gas writedowns and unrealized foreign exchange losses\nvs yr-ago loss of 32.5 mln dlrs.\n Reuter\n&#3;',0
+'IDB COMMUNICATIONS GROUP INC &lt;IDBX> YEAR NET Period ended December 31.\n    Shr 25 cts vs 20 cts\n    Net 801,000 vs 703,000\n    Revs 6,318,000 vs 3,926,000\n Reuter\n&#3;',0
+'ARMOR ALL PRODUCTS CORP &lt;ARMR> QUARTERLY DIV Qtly div ten cts vs ten cts\n    Pay April 1\n    Record March 9\n Reuter\n&#3;',0
+'OPEC MAY HAVE TO MEET TO FIRM PRICES - ANALYSTS OPEC may be forced to meet before a\nscheduled June session to readdress its production cutting\nagreement if the organization wants to halt the current slide\nin oil prices, oil industry analysts said.\n    \"The movement to higher oil prices was never to be as easy\nas OPEC thought. They may need an emergency meeting to sort out\nthe problems,\" said Daniel Yergin, director of Cambridge Energy\nResearch Associates, CERA.\n    Analysts an [...]
+'CENERGY &lt;CRG> REPORTS 4TH QTR NET PROFIT Cenergy Corp reported fourth quarter net\nincome of 790,000 dlrs or seven cts per share on revenues of\n7.7 mln dlrs.\n    For the year it reported a net loss of 6.5 mln dlrs or 70\ncts per share as a result of writedowns in the book value of\nits oil and gas properties in the first two quarters. Revenues\nwere 37 mln dlrs.\n    Following the company\'s fiscal year ended March 31, 1985,\nit changed to a calender year end.\n    For the nine mon [...]
+'NORTHERN TELECOM LTD &lt;NT> DECLARES STOCK SPLIT Two-for-one stock split\n    Pay May 12\n    Note: split is subject to approval of shareholders at April\n23 annual meeting.\n    Company also said it will increase dividend on post-split\nshares to six cts from five cts.\n Reuter\n&#3;',0
+'TORCHMARK &lt;TMK> AUTHORIZES STOCK REPURCHASE Torchmark Corp said its board\nauthorized the purchase from time to time of a significant\nportion of its 7-3/4 pct convertible subordinated debentures.\nAs of February 25, it said there were outstanding 150 mln dlrs\nof the principal amount of debenures.\n    The company also said it plans to redeem the debentures on\nJune eight.\n    It also declared a regular quarterly dividend of 25 cts per\nshare on its common payable May one to shareh [...]
+'TECHAMERICA GROUP INC &lt;TCH> 4TH QTR LOSS Shr loss six cts vs not available\n    Net loss 562,231 vs profit 10,253\n    Revs 8,871,874 vs 9,549,308\n    Year\n    Shr loss 60 cts vs loss nine cts\n    Net loss 5,058,145 vs loss 766,185\n    Revs 34.3 mln vs 35.5 mln\n   \n Reuter\n&#3;',0
+'WILFRED AMERICAN EDUCATIONAL &lt;WAE> REGULAR DIV Qtly div three cts vs three cts prior\n    Pay April three\n    Record March 13\n Reuter\n&#3;',0
+'DREXEL OFFICIAL HAS STAKE IN EPSILON DATA &lt;EPSI> A senior official of Drexel Burnham\nLambert Inc and his father told the Securities and Exchange\nCommission they have acquired 258,591 shares of Epsilon Data\nManagement Inc, or 9.4 pct of the total outstanding.\n    Kenneth Thomas, senior vice president-investments at\nDrexel\'s Los Angeles office, and his father, retired university\nprofessor C.A. Thomas, said they bought the stake for 2.1 mln\ndlrs primarily for investment purposes [...]
+'&lt;NOVA> WINS GOVERNMENT OKAY FOR HUSKY &lt;HYO> DEAL Nova, the Canadian company that\nowns 56 pct of Husky Oil Ltd, said it received government\napproval for a transaction under which &lt;Union Faith Canada\nHolding Ltd> would buy a 43 pct stake in Husky.\n    Nova said the Minister of Regional and Industrial\nExpansion, Michel Cote, ruled that Union Faith\'s purchase of\nthe Husky stake would not result in Husky ceding control to a\nnon-Canadian company. It said this ruling was a key [...]
+'POTOMAC ELECTRIC POWER CO &lt;POM> JANUARY NET Oper shr 27 cts vs 29 cts\n    Oper net 13.5 mln vs 14.6 mln\n    Revs 104.6 mln vs 110.3 mln\n    12 mths\n    Oper shr 4.10 dlrs vs 3.66 dlrs\n    Oper net 205 mln vs 186.8 mln\n    Revs 1.4 billion vs 1.3 billion\n    NOTE: 1986 12 mths oper net excludes extraordinary gain of\n21.7 mln dlrs or 46 cts per share from sale of Virginia service\nterritory to Virginia Power.\n Reuter\n&#3;',0
+'SUFFIELD FINANCIAL &lt;SSBK> GETS FED APPROVAL Suffield Financial Corp said the\nFederal Reserve Board approved its application to acquire\nCoastal Bancorp &lt;CSBK>, Portland, Me.\n    Suffield said it still needs the approval of the\nsuperintendent of Maine\'s banking department.\n Reuter\n&#3;',0
+'AFG INDUSTRIES INC &lt;AFG> QUARTERLY DIVIDEND Qtly div four cts vs four cts\n    Pay April 3\n    Record March 23\n Reuter\n&#3;',0
+'&lt;GSW INC> YEAR NET Oper shr 2.16 dlrs vs 2.07 dlrs\n    Oper net 8,037,000 vs 7,710,000\n    Revs 136.4 mln vs 133.3 mln\n    Note: 1986 net excludes extraordinary gain of 13 mln dlrs\nor 3.50 dlrs shr from sale of &lt;Camco Inc> shares vs yr-ago loss\nof 4.3 mln dlrs or 1.14 dlrs shr.\n Reuter\n&#3;',0
+'SANTA ANITA REALTY &lt;SAR> QUARTERLY DIVIDEND Qtly div 51 cts vs 51 cts\n    Pay April 9\n    Record March 25\n    (Santa Anita Realty Enterprises Inc)\n Reuter\n&#3;',0
+'LIQUID AIR CORP &lt;LANA> QUARTERLY DIVIDEND Qtly div 40 cts vs 40 cts\n    Pay March 31\n    Record March 16\n Reuter\n&#3;',0
+'(MARSHALL STEEL LTD) YEAR NET Oper shr five cts vs 36 cts\n    Oper net 508,000 vs 3,450,000\n    Revs 296.7 mln vs 298.0 mln\n    Note: former name Marshall Drummond McCall Inc.\n    Results include extraordinary gains of 952,000 dlrs or 11\ncts per share in 1986 and 2,569,000 dlrs or 29 cts in 1985 from\nincome tax reduction.              \n Reuter\n&#3;',0
+'MARSHALL STEEL DETAILS GAIN FROM UNIT SALE (Marshall Steel Ltd), formerly Marshall\nDrummond McCall Inc, said it will report a 17 mln dlr net gain\nbefore taxes this year from the sale of its Drummond McCall\ndivision, which was sold effective January one.                \n   \n Reuter\n&#3;',0
+'MAYFAIR INDUSTRIES INC &lt;MAYF> 4TH QTR NET Oper shr 21 cts vs 18 cts\n    Oper net 659,000 vs 523,000\n    Revs 7,866,000 vs 5,503,000\n    Avg shrs 3,141,217 vs 2,925,294\n    12 mths\n    Oper shr 70 cts vs 46 cts\n    Oper net 2,075,000 vs 1,358,000\n    Revs 25.9 mln vs 19.3 mln\n    Avg shrs 2,980,247 vs 2,925,294\n    Note: Excludes tax gain of 295,000 dlrs for qtr and year.\n Reuter\n&#3;',0
+'LNG IMPORTS FROM ALGERIA UNLIKELY IN 1987 Liquefied natural gas imports from\nAlgeria are unlikely to happen in 1987 even though its\neconomically feasible, U.S. industry analysts sources said.\n    Youcef Yousfi, director-general of Sonatrach, the Algerian\nstate petroleum agency, indicated in a television interview in\nAlgiers that such imports would be made this year.\n    \"Contract negotiations, filing with the U.S. government and\nthe time required to restart mothballed terminals  [...]
+'SWISS ECONOMY IN EXCELLENT CONDITION, OECD SAYS Switzerland\'s economy, combining low\nunemployment, financial stability and a large external payments\nsurplus, is in excellent condition and faces a satisfactory\nfuture, the Organisation for Economic Cooperation and\nDevelopment, OECD, said.\n    This reflected the success of stable and relatively tight\nfiscal and monetary policies followed by the government, it\nsaid.\n    The OECD, in its annual report on Switzerland, picked out\nsom [...]
+'U.S. WHEAT BONUS TO SOVIET CALLED DORMANT The U.S. Agriculture Department is not\nactively considering offering subsidized wheat to the Soviet\nUnion under the export enhancement program (EEP), senior USDA\nofficials said.\n    However, grain trade analysts said the proposal has not\nbeen ruled out and that an offer might be made, though not in\nthe very near future.\n    \"The grain companies are trying to get this fired up again,\"\nan aide to Agriculture Secretary Richard Lyng said.  [...]
+'ALATENN RESOURCES INC &lt;ATNG> 4TH QTR NET Shr 75 cts vs 52 cts\n    Net 1,699,124 vs 1,177,786\n    Revs 45.6 mln vs 31.6 mln\n    12 mths\n    Shr 2.22 dlrs vs 2.20 dlrs\n    Net 5,057,292 vs 4,961,085\n    Revs 130.2 mln vs 126.7 mln\n Reuter\n&#3;',0
+'VERSATILE TO SELL UNIT TO VICON &lt;Versatile Corp> said\nit agreed in principle to sell its Alberta-based Versatile\nNoble Cultivators Co division to Vicon Inc, of Ontario, for\nundisclosed terms.\n    The division manufactures tillage and spraying equipment.\n Reuter\n&#3;',0
+'VIDEOTRON BUYS INTO EXHIBIT COMPANY (Groupe Videotron Ltd) said it agreed to\nbuy 50 pct of (Groupe Promexpo Inc), a company which\nspecializes in product exhibits, for three mln dlrs.           \n  \n Reuter\n&#3;',0
+'&lt;MEMOTEC DATA INC> YEAR NET Shr 81 cts vs 66 cts\n    Net 5,011,000 vs 2,314,000\n    Revs 57.3 mln vs 17.6 mln\n    Note: results include extraordinary gains of 1,593,000 dlrs\nor 26 cts a share in 1986 and 451,000 dlrs or 13 cts a share in\n1985.\n Reuter\n&#3;',0
+'TEXACO CANADA CUTS CRUDE PRICES 64 CANADIAN CTS/BBL, PAR GRADE TO 22.26 CANADIAN DLRS\n ',0
+'TEXACO CANADA &lt;TXC> LOWERS CRUDE POSTINGS Texaco Canada said it lowered the\ncontract price it will pay for crude oil 64 Canadian cts a\nbarrel, effective today.\n    The decrease brings the company\'s posted price for the\nbenchmark grade, Edmonton/Swann Hills Light Sweet, to 22.26\nCanadian dlrs a bbl.\n    Texaco Canada last changed its crude oil postings on Feb\n19.\n Reuter\n&#3;',0
+'USDA SAID UNLIKELY TO BROADEN CORN BONUS OFFER The U.S. Agriculture Department\nprobably will not offer a two dlr per bushel bonus payment to\ncorn farmers for any erodible cropland they enrolled in the\nconservation reserve program last year, an aide to USDA\nSecretary Richard Lyng said.\n    Sen. Charles Grassley (R-Iowa) said yesterday that Lyng had\nindicated he would consider giving those farmers the same two\ndlr bonus offered corn farmers who are signing up for the 1987\nprogram  [...]
+'MARATHON PETROLEUM REDUCES CRUDE POSTINGS Marathon Petroleum Co said it reduced\nthe contract price it will pay for all grades of crude oil one\ndlr a barrel, effective today.\n    The decrease brings Marathon\'s posted price for both West\nTexas Intermediate and West Texas Sour to 16.50 dlrs a bbl. The\nSouth Louisiana Sweet grade of crude was reduced to 16.85 dlrs\na bbl.\n    The company last changed its crude postings on Jan 12.\n Reuter\n&#3;',0
+'&lt;GEORGE WESTON LTD> YEAR NET Shr 2.31 dlrs vs 1.96 dlrs\n    Net 119.0 mln vs 101.0 mln\n    Revs 10.03 billion vs 8.88 billion\n Reuter\n&#3;',0
+'RELIEF TO U.S. CORN/OATS GROWERS SAID LIKELY U.S. farmers who in the past have\ngrown oats for their own use but failed to certify to the\ngovernment that they had done so probably will be allowed to\ncontinue planting that crop and be eligible for corn program\nbenefits, an aide to Agriculture Secretary Richard Lyng said.\n    Currently a farmer, to be eligible for corn program\nbenefits, must restrict his plantings of other program crops to\nthe acreage base for that crop.\n    Severa [...]
+'N.Z. MONEY SUPPLY RISES 3.6 PCT IN DECEMBER New Zealand\'s broadly defined,\nseasonally adjusted M-3 money supply grew an estimated 3.6 pct\nin December after rising a revised 2.4 pct in November and 4.04\npct in December last year, the Reserve Bank said in a\nstatement.\n    It said unadjusted M-3 increased to an estimated 30.07\nbillion N.Z. Dlrs from a revised 28.30 billion in November and\n25.53 billion in December 1985.\n    Year-on-year M-3 rose 17.77 pct from a revised 15.34 pct  [...]
+'CIRCUIT SYSTEMS &lt;CSYI> BUYS BOARD MAKER Circuit Systems Inc said it has\nbought all of the stock of (Ionic Industries Inc) in exchange\nfor 3,677,272 shares of its common.\n    Following the exchange there will be 4,969,643 shares of\nCircuit Systems stock outstanding. Ionic holders will own about\n74 pct of the outstanding stock of Circuit Systems, it said.\n    Ionic, a maker of circuit boards, had revenues of 8.4 mln\ndlrs and pretax profits of 232,000 dlrs in 1986, up from\nreven [...]
+'FALLING SOYBEAN CRUSH RATIOS CUT OUTPUT The sharp decline in soybean crush ratios\nseen in the last few weeks, accelerating in recent days, has\npushed margins below the cost of production at most soybean\nprocessing plants and prompted many to cut output of soybean\nmeal and oil.\n    The weekly U.S. soybean crush rate was reported by the\nNational Soybean Processors Association this afternoon at 21.78\nmln bushels, down from the 22 mln bushel plus rate seen over\nthe past two months w [...]
+'MAIL BOXES ETC &lt;MAIL> 3RD QTR JAN 31 NET Shr 23 cts vs 18 cts\n    Net 509,144 vs 277,834\n    Revs 2,258,341 vs 1,328,634\n    Avg shrs 2,177,553 vs 1,564,605\n    Nine mths\n    Shr 55 cts vs 42 cts\n    Net 1,150,633 vs 649,914\n    Revs 6,169,168 vs 3,178,115\n Reuter\n&#3;',0
+'MUNSINGWEAR INC &lt;MUN> 4TH QTR JAN 3 LOSS Shr loss 32 cts vs loss seven cts\n    Net loss 1,566,000 vs loss 292,000\n    Revs 39.4 mln vs 34.7 mln\n    Year\n    Shr profit 79 cts vs profit 74 cts\n    Net profit 3,651,000 vs profit 3,020,000\n    Revs 147.9 mln vs 114.2 mln\n    Avg shrs 4,639,000 vs 4,059,000\n    Note: Per shr adjusted for 3-for-2 stock split July 1986\nand 2-for-1 split May 1985.\n Reuter\n&#3;',0
+'FED DATA SUGGEST STABLE U.S. MONETARY POLICY Latest Federal Reserve data suggest that\nthe central bank voted to maintain the existing degree of\npressure on banking reserves at its regular policy-making\nmeeting two weeks ago, money market economists said.\n    \"The numbers were a little disappointing, but I think we\ncan take Mr Volcker at his word when he said that nothing had\nchanged,\" said Bob Bannon of Security Pacific National Bank.\n    Fed Chairman Paul Volcker told a Congre [...]
+'FRANCE FACES PRESSUE TO CHANGE POLICIES France\'s right wing government is facing\ngrowing pressure to modify its economic policies after revising\ndown its 1987 growth targets and revising up its inflation\nforecasts for this year.\n    Moving reluctantly into line with most private sector\nforecasts the government yesterday raised its 1987 inflation\nestimate a half percentage point to 2.5 per cent and cut its\neconomic growth estimate to between two and 2.8 per cent from a\n2.8 per c [...]
+'GTI CORP &lt;GTI> 4TH QTR OPER NET Oper shr profit six cts vs loss two cts\n    Oper net profit 225,000 vs loss 91,000\n    Revs 4,814,000 vs 3,339,000\n    Year\n    Oper shr profit 12 cts vs loss two cts\n    Oper net profit 415,000 vs loss 73,000\n    Revs 16.4 mln vs 16.9 mln\n    Note: data does not include from discontinued operations,\n4th qtr 1986 gain of 632,000 dlrs, or 19 cts per shr; 4th qtr\n1985 loss of 250,000 dlrs, or seven cts per shr; 1986 year loss\nof 4,054,000 dlrs, [...]
+'HOUSTON OIL &lt;HO> RESERVES STUDY COMPLETED Houston Oil Trust said that independent\npetroleum engineers completed an annual study that estimates\nthe trust\'s future net revenues from total proved reserves at\n88 mln dlrs and its discounted present value of the reserves at\n64 mln dlrs.\n    Based on the estimate, the trust said there may be no money\navailable for cash distributions to unitholders for the\nremainder of the year.\n    It said the estimates reflect a decrease of about  [...]
+'FAMOUS RESTAURANTS INC &lt;FAMS> 4TH QTR LOSS Shr loss 2.07 dlrs vs loss eight cts\n    Net loss 11,445,000 vs loss 501,000\n    Revs 14.5 mln vs 11.0 mln\n    Year\n    Shr loss 1.91 dlrs vs profit four cts\n    Net loss 12,427,000 vs profit 211,000\n    Revs 60.8 mln vs 51.5 mln\n    Note: includes non-recurring charges of 12,131,000 dlrs in\nthe 4th qtr and 12,500,000 dlrs in the year for reserve for\nunderperforming restaurants.\n Reuter\n&#3;',0
+'JAPAN CONSUMER PRICES FALL 0.4 PCT IN JANUARY Japan\'s unadjusted consumer price index\n(base 1985) fell 0.4 pct to 99.7 in January from the previous\nmonth, the government\'s Management and Coodination Agency said.\n    The fall compares with a decline of 0.2 pct in December.\n    The January index compared with a year earlier was down 1.1\npct, the first drop larger than 1.0 pct since it fell 1.3 pct\nin September 1958.\n    Food costs rose in January from December but prices fell\nfo [...]
+'AVERY &lt;AVY> SETS TWO FOR ONE STOCK SPLIT Avery said its board authorizerd\na two for one stock split, an increased in the quarterly\ndividend and plans to offer four mln shares of common stock.\n    The company said the stock split is effective March 16 with\na distribution of one additional share to each shareholder of\nrecord March 9.\n    It said the quarterly cash dividend of 10.5 cts per share\non the split shares, a 10.5 pct increase from the 19 cts per\nshare before the split. [...]
+' &#2;\nFEDERAL RESERVE WEEKLY M-2 COMPONENTS - FEB 26\n    Week Feb 16 vs Feb 9 (DAILY AVG BILLIONS)\n          Seasonally Adjusted      Unadjusted\n Currency......186.9 vs 186.8....185.6 vs 185.7\n Demand Depos..300.3 vs 300.0....291.5 vs 295.6\n Other Check...242.9 vs 241.2....240.0 vs 242.7\n Savings.......164.3 vs 163.2....162.8 vs 161.9\n Small Time....362.2 vs 362.9....361.9 vs 362.7\n MMDAs...(Commercial Bank Only)..378.2 vs 379.1\n O/N Repos........................58.9 vs  59.0\ [...]
+'N.Z. CENTRAL BANK SEES SLOWER MONEY, CREDIT GROWTH Monetary and credit growth rates in\nNew Zealand are not expected to continue at current levels\nfollowing the Reserve Bank\'s move to tighten liquidity late\nlast year, Reserve Bank Governor Spencer Russell said.\n    The monetary and credit growth figures for the December\nquarter were probably artifically inflated by unusually high\ngrowth in inter-institutional lending activity on the short\nterm money market, Russell said in a stat [...]
+'AVERAGE YEN CD RATES FALL IN LATEST WEEK Average interest rates on yen certificates\nof deposit, CD, fell to 4.27 pct in the week ended February 25\nfrom 4.32 pct the previous week, the Bank of Japan said.\n    New rates (previous in brackets), were -\n    Average CD rates all banks 4.27 pct (4.32)\n    Money Market Certificate, MMC, ceiling rates for the week\nstarting from March 2          3.52 pct (3.57)\n    Average CD rates of city, trust and long-term banks\n    Less than 60 days  [...]
+'JAPAN EXPECTED TO CUT BASE RATE FOR STATE BODIES Japan is expected to cut the base lending\nrate for state financial institutions to 5.5 pct from 6.2 as\npart of the recent pact by major industrial nations in Paris,\nFinance Ministry sources said.\n    They said the cut is based on a revision of the Trust Fund\nBureau Law, which should be approved by parliament on March 3,\nabolishing the 6.05 pct minimum interest rate on deposits with\nthe bureau.\n    The bureau channels funds to gove [...]
+'AUSTRALIA\'S KEATING CHANGES ECONOMIC FORECASTS Domestic demand is now expected to make\nno contribution to Australian economic growth in fiscal\n1986/87, ending June 30, while net exports will account for all\nof the overall increase, Treasurer Paul Keating said here.\n    However, he did not say in his speech to the Economic\nPlanning Advisory Council (EPAC) if the forecast 2.25 pct rise\nin gross domestic product (gdp) had been revised.\n    But Keating said domestic demand could fal [...]
+'THAI RICE EXPORTS RISE IN WEEK ENDED FEBRUARY 24 Thailand exported 84,960 tonnes of rice\nin the week ended February 24, up from 80,498 the previous\nweek, the Commerce Ministry said.\n    It said government and private exporters shipped 27,510 and\n57,450 tonnes respectively.\n    Private exporters concluded advance weekly sales for 79,448\ntonnes against 79,014 the previous week.\n    Thailand exported 689,038 tonnes of rice between the\nbeginning of January and February 24, up from 5 [...]
+'TOKYO GRAIN EXCHANGE TO RAISE MARGIN REQUIREMENTS The Tokyo Grain Exchange said it will raise\nthe margin requirement on the spot and nearby month for U.S.\nAnd Chinese soybeans and red beans, effective March 2.\n    Spot April U.S. Soybean contracts will increase to 90,000\nyen per 15 tonne lot from 70,000 now. Other months will stay\nunchanged at 70,000, except the new distant February\nrequirement, which will be set at 70,000 from March 2.\n    Chinese spot March will be set at 110,0 [...]
+'PRODUCER SPLIT HEATS UP COFFEE QUOTA TALKS Talks on the possibility of reintroducing\nglobal coffee export quotas have been extended into today, with\nsparks flying yesterday when a dissident group of exporters was\nnot included in a key negotiating forum.\n    The special meeting of the International Coffee\nOrganization (ICO) council was called to find a way to stop a\nprolonged slide in coffee prices.\n    However, delegates said no solution to the question of how\nto implement quota [...]
+'ITALIAN TREASURY CUTS INTEREST ON CERTIFICATES The Italian treasury said annual coupon\nrates payable March 1988 on two issues of long-term treasury\ncertificates (CCTs) would be cut by about four percentage\npoints compared with rates this March.\n    Coupon rates on 10-year certificates maturing March 1995\nwill fall to 9.80 pct from 13.65 pct and rates on 10-year\nissues maturing in March 1996 would fall to 10.05 pct from\n14.30 pct.\n    The Treasury also cut by 0.60 point six-month [...]
+'INDONESIAN AGRICULTURE GROWTH EXPECTED TO SLOW Indonesia\"s agriculture sector will grow\nby just 1.0 pct in calendar 1987, against an estimated 2.4 pct\nin 1986 as the production of some commodities stagnates or\ndeclines, the U.S. Embassy said in a report.\n    Production of Indonesia\"s staple food, rice, is forecast to\nfall to around 26.3 mln tonnes from an embassy estimate of\n26.58 mln tonnes in 1986, according to the annual report on\nIndonesia\"s agricultural performance.\n     [...]
+'KUWAIT SAYS NO PLANS FOR EMERGENCY OPEC TALKS Kuwait\"s Oil Minister, in remarks\npublished today, said there were no plans for an emergency OPEC\nmeeting to review oil policies after recent weakness in world\noil prices.\n    Sheikh Ali al-Khalifa al-Sabah was quoted by the local\ndaily al-Qabas as saying: \"None of the OPEC members has asked\nfor such a meeting.\"\n    He denied Kuwait was pumping above its quota of 948,000\nbarrels of crude daily (bpd) set under self-imposed producti [...]
+'INDONESIA SEEN AT CROSSROADS OVER ECONOMIC CHANGE Indonesia appears to be nearing a\npolitical crossroads over measures to deregulate its protected\neconomy, the U.S. Embassy says in a new report.\n    To counter falling oil revenues, the government has\nlaunched a series of measures over the past nine months to\nboost exports outside the oil sector and attract new\ninvestment.\n    Indonesia, the only Asian member of OPEC and a leading\nprimary commodity producer, has been severely hit [...]
+'CHINESE WHEAT CROP THREATENED BY PESTS, DISEASE China\'s wheat crop this year is seriously\nthreatened by plant pests and diseases, the New China News\nAgency said.\n    More than 5 mln hectares of wheat-producing land in North\nChina could be affected because relatively warm and dry weather\nhad allowed bacteria and insect eggs to survive the winter, the\nagency added.\n    China\"s Ministry of Agriculture, Animal Husbandry and\nFisheries has called for measures including the timely su [...]
+'SAUDI RIYAL DEPOSIT RATES REMAIN FIRM Saudi riyal interbank deposits were\nsteady at yesterday\'s higher levels in a quiet market.\n    Traders said they were reluctant to take out new positions\namidst uncertainty over whether OPEC will succeed in halting\nthe current decline in oil prices.\n    Oil industry sources said yesterday several Gulf Arab\nproducers had had difficulty selling oil at official OPEC\nprices but Kuwait has said there are no plans for an emergency\nmeeting of the  [...]
+'QATAR UNVEILS BUDGET FOR FISCAL 1987/88 The Gulf oil state of Qatar, recovering\nslightly from last year\'s decline in world oil prices,\nannounced its first budget since early 1985 and projected a\ndeficit of 5.472 billion riyals.\n    The deficit compared with a shortfall of 7.3 billion riyals\nin the last published budget for 1985/86.\n    In a statement outlining the budget for the fiscal year\n1987/88 beginning today, Finance and Petroleum Minister Sheikh\nAbdul-Aziz bin Khalifa al [...]
+'GULF BOND, STOCK MARKETS LAG BEHIND, GIB SAYS Gulf money markets have grown reasonably\nwell during the past decade, but bond and stock markets remain\nto a large extent fragmented and lag behind, &lt;Gulf\nInternational Bank BSC> (GIB) said.\n    The bank\'s economist Henry Azzam said in a review of Gulf\ncapital markets that investors have to relinquish traditional\ninvestment vehicles such as real estate, foreign currency bank\naccounts and precious metals.\n    \"Greater financial s [...]
+'SAUDI ARABIA REITERATES COMMITMENT TO OPEC PACT Saudi Arabian Oil Minister Hisham Nazer\nreiterated the kingdom\'s commitment to last December\'s OPEC\naccord to boost world oil prices and stabilise the market, the\nofficial Saudi Press Agency SPA said.\n    Asked by the agency about the recent fall in free market\noil prices, Nazer said Saudi Arabia \"is fully adhering by the\n... Accord and it will never sell its oil at prices below the\npronounced prices under any circumstance.\"\n   [...]
+'COFFEE QUOTA TALKS CONTINUE, NO ACCORD SEEN LIKELY The International Coffee Organization\n(ICO ) council talks on reintroducing export quotas continued\nwith an extended session lasting late into Sunday night, but\ndelegates said prospects for an accord between producers and\nconsumers were diminishing by the minute.\n    The special meeting, called to stop the prolonged slide in\ncoffee prices, was likely to adjourn sometime tonight without\nagreement, delegates said.\n    The council  [...]
+'CANADA-EGYPT WHEAT NEGOTIATIONS TO CONTINUE Canadian and Egyptian wheat negotiators\nfailed to conclude an agreement on Canadian wheat exports to\nEgypt during talks last week, but the Canadian team will return\nto Cairo for further negotiations, Canadian embassy officials\nsaid.\n    An embassy official declined to identify which issues\nremained to be resolved and when the talks would resume.\n    In a five-year protocol signed in 1985, Cairo agreed to\npurchase 500,000 tonnes of Cana [...]
+'INDONESIAN WHEAT IMPORTS EXPECTED TO FALL IN 1987 Indonesia\'s wheat imports are expected\nto fall to 1.5 mln tonnes in calendar 1987 from 1.69 mln in\n1986, the U.S. Embassy\'s annual agriculture report said.\n    It said the drop was expected, because there will be a\ndrawdown on stocks built up near the end of 1986.\n    It said wheat stocks at the end of 1986 were 390,000\ntonnes, up from 223,000 at end-1985. It forecast end-1987\nstocks at around 290,000 tonnes.\n    The main suppl [...]
+'ZAMBIA TO RETAIN CURRENCY AUCTION, SAYS KAUNDA Zambia will retain its foreign-exchange\nauction system despite the suspension of weekly auctions since\nJanuary 24, President Kenneth Kaunda said.\n    \"We have not run away from the auction. It hasn\'t been\nabolished at all,\" he told Reuters in an interview.\n    He said the system would be reintroduced after current\ntalks with the World Bank and the International Monetary Fund\nand, he hoped, would be backed by fresh foreign aid fund [...]
+'INDONESIAN SUGAR OUTPUT SEEN SHORT OF TARGET Indonesia\'s raw sugar output is likely\nto be 1.8 mln tonnes in calendar 1987, unchanged from 1986 and\nbelow the government\'s 1987 forecast of 2.5 mln, the U.S.\nEmbassy said in its agricultural outlook for 1987.\n    Indonesia bought 162,500 tonnes of raw sugar on world\nmarkets in late 1986, the report said.\n    The embassy estimated Indonesia\'s calendar 1986 raw sugar\nproduction at 1.8 mln tonnes, against a government estimate of\n1. [...]
+'NIPPON KOKAN STEEL AFFILIATES CONSIDERING MERGER Toshin Steel Co Ltd &lt;TOSS.T> and &lt;Azuma\nSteel Co Ltd>, affiliates of Nippon Kokan KK &lt;NKKT.T>, are\nconsidering a merger, company spokesmen said.\n    Toshin Steel, owned 41.9 pct by Nippon Kokan, and Azuma\nSteel, owned 41.3 pct by Nippon Kokan, are expected to decide\nby the end of March, they said. Both firms have been struggling\nwith losses caused by the recession in the steel industry and\nthe yen\'s appreciation.\n    Azu [...]
+'INDONESIA UNLIKELY TO IMPORT PHILIPPINES COPRA Indonesia is unlikely to import copra\nfrom the Philippines in 1987 after importing 30,000 tonnes in\n1986, the U.S. Embassy\'s annual agriculture report said.\n    The report said the 31 pct devaluation of the Indonesian\nrupiah, an increase in import duties on copra and increases in\nthe price of Philippines copra have reduced the margin between\nprices in the two countries.\n    Indonesia\'s copra production is forecast at 1.32 mln tonne [...]
+'JAPAN FEBRUARY INTERIM TRADE SURPLUS JUMPS Japan\'s customs-cleared trade surplus in\nthe first 20 days of February jumped to 3.58 billion dlrs from\n1.94 billion a year earlier, the Finance Ministry said.\n    The February interim surplus was sharply up from a 965.04\nmln dlr surplus in the same January period.\n    FOB exports rose 14.6 pct from a year earlier in the first\n20 days of February to 10.91 billion, while CIF imports fell\n3.2 pct to 7.33 billion.\n    The average dollar/y [...]
+'NIPPON LIGHT METAL CONTINUES ALUMINIUM OUTPUT CUT Nippon Light Metal Co Ltd &lt;NLGT.T>, which\nhas annual capacity of 63,000 tonnes, will continue primary\naluminium production at a rate of 35,000 tonnes owing to low\ndomestic and world prices and low water supplies at its\nhydroelectric power plant, a company official said.\n    Nippon, which has no plans to restore output to the 48,000\ntonnes a year at which it was working until late 1986, will\nbecome Japan\'s only smelter.\n    &l [...]
+'SAUDI FEBRUARY CRUDE OUTPUT PUT AT 3.5 MLN BPD Saudi crude oil output last month fell\nto an average of 3.5 mln barrels per day (bpd) from 3.8 mln bpd\nin January, Gulf oil sources said.\n    They said exports from the Ras Tanurah and Ju\'aymah\nterminals in the Gulf fell to an average 1.9 mln bpd last month\nfrom 2.2 mln in January because of lower liftings by some\ncustomers.\n    But the drop was much smaller than expected after Gulf\nexports rallied in the fourth week of February to [...]
+'INDONESIAN PALM OIL OUTPUT EXPECTED TO RISE Indonesia\'s palm oil output is expected\nto rise and exports to increase, the U.S. Embassy said in its\nannual report on Indonesia\'s agriculture sector.\n    The Indonesian government said crude palm oil (CPO) output\nis expected to rise to 1.56 mln tonnes in 1987 and 2.11 mln in\n1988, up from a projected 1.45 mln tonnes in 1986 and 1.26 mln\nin 1985.\n    The 1986 projection of 1.45 mln tonnes is up from a\nprovisional figure of 1.3 mln to [...]
+'INDONESIAN TEA, COCOA EXPORTS SEEN UP, COFFEE DOWN Indonesia\'s exports of tea and cocoa\nwill continue to rise in calendar 1987 but coffee exports are\nforecast to dip slightly in 1987/88 (April-March) as the\ngovernment tries to improve quality, the U.S. Embassy said.\n    The embassy\'s annual report on Indonesian agriculture\nforecast coffee output in 1986/87 would be 5.77 mln bags of 60\nkilograms each. That is slightly less than the 5.8 mln bags\nproduced in 1985/86.\n    In 1987/ [...]
+'JAPAN\'S NTT FORECASTS PROFITS FALL IN 1987/88 &lt;Nippon Telegraph and Telephone Corp>\n(NTT) expects its profits to fall to 328 billion yen in the\nyear ending March 31, 1988 from a projected 348 billion this\nyear, the company said.\n    Total sales for the same period are expected to rise to\n5,506 billion yen from a projected 5,328 billion this year, NTT\nsaid in a business operations plan submitted to the Post and\nTelecommunications Ministry.\n    NTT said it plans to make capita [...]
+'CHINA SIGNS WORLD BANK LOAN FOR TIANJIN PORT China has signed a 130 mln dlr loan\nagreement with the World Bank to partly finance 12 new berths\nwith an annual capacity of 6.28 mln tonnes at the 20 mln tonne\na year capacity Tianjin port, the New China News Agency said.\n    China will provide 370 mln yuan for the project and a\nChinese company won a bid against 12 other firms from seven\ncountries to do the foundation work, it said.\n    It said 11 of the new berths will be able to han [...]
+'Japan February external reserves record 51.73 billion dlrs (January 51.46 billion)\n ',0
+'JAPAN FEBRUARY RESERVES RECORD 51.73 BILLION DLRS Japan\'s external reserves rose to a record\n51.73 billion dlrs at the end of February from the previous\nrecord of 51.46 billion at end-January, the Finance Ministry\nsaid.\n    End-February reserves last year were 27.58 billion dlrs.\n    In January, the nation\'s foreign reserves showed the\nlargest-ever monthly increase at 9.22 billion dlrs due to\nmassive Bank of Japan dollar buying intervention during the\nmonth as the dollar fell  [...]
+'ICO TALKS ON COFFEE QUOTAS TO RESUME AT NOON Talks on coffee export quotas at the\nInternational Coffee Organization (ICO) special council session\nwill resume at noon gmt today, following a last minute decision\ntaken early this morning to extend the meeting 24 hours, ICO\nofficials said.\n    An 18 member contact group will meet at midday to examine\nnew ideas, and the full council is to convene at 1900gmt, they\nsaid.\n    The extension resulted from a last ditch effort by Colombia\n [...]
+'INDIAN SUGAR OUTPUT RISES IN FIRST FOUR MONTHS India\'s sugar output to January 31 in\nthe 1986/87 season (October/September) rose to 3.66 mln tonnes\nfrom 3.46 mln in the same 1985/86 period, the Indian Sugar\nMills Association said.\n    Total offtake in the first four months of the current year\nwas 2.71 mln tonnes (including 241,000 tonnes imported) for\ndomestic use and 4,000 tonnes for export, against 2.81 mln\ntonnes (including 993,000 imported) for domestic use and 3,000\ntonnes [...]
+'NEW DUTCH ADVANCES TOTAL 4.8 BILLION GUILDERS The Dutch Central Bank said it has\naccepted bids totalling 4.8 billion guilders at tender for new\nseven-day special advances at 5.3 pct covering the period March\n2 to 9 aimed at relieving money market tightness.\n    Subscriptions to 300 mln guilders were met in full, amounts\nabove 300 mln at 50 pct.\n    The new facility replaces old five-day advances worth 8.0\nbillion guilders at the same rate.\n    Dealers expect this week\'s money m [...]
+'JAPAN BUYS SOME 95,000 TONNES SOYBEANS FROM CHINA Japanese importers bought some 95,000\ntonnes of Chinese soybeans late last month for May to September\nshipment, under the semi-annual trade accords, trade sources\nsaid.\n    The FOB premium rose to 13.50 dlrs per tonne, up 2.50 dlrs\nfrom the premium for the November to April shipment, but down\nfrom 13.80 for the last May to September shipment.\n    Flat prices for Chinese beans are based on futures prices\nin Chicago plus the FOB pr [...]
+'SHV SAYS IT MAKING TENDER OFFER FOR UP TO 33 MLN SHARES IN IC GAS\n ',0
+'CHEUNG KONG (HOLDINGS) LTD &lt;CKGH.HK> YEAR 1986 Shr 3.25 H.K. Dlrs vs 1.40\n    Final div 52 cents vs 38, making 75 cents vs 57\n    Net 1.28 billion dlrs vs 551.7 mln\n    Note - Earnings excluded extraordinary gains of 983.6 mln\ndlrs vs 81.3 mln. Bonus issue one-for-four vs nil. Share split\nfour-for-one. Dividend payable June 3, books close May 11-21.\n REUTER\n&#3;',0
+'WALLENBERGS FIGHT BID FOR SWEDISH MATCH STAKE Sweden\'s Wallenberg group fought back\na bid by the London-based Swedish financier Erik Penser to\nsecure a large stake in Swedish Match &lt;SMBS ST>, one of the\ncompanies at the core of their business empire.\n    A statement issued by the Wallenberg holding companies AB\nInvestor and Forvaltnings AB Providentia said they had taken\nover an option held by Nobel Industrier Sweden AB to acquire 33\npct of the voting rights in Swedish Match. [...]
+'INDONESIAN SOYBEAN IMPORTS FORECAST TO RISE Soybean imports are forecast to rise to\n425,000 tonnes in 1987/88 (October/September) from an estimated\n300,000 in 1986/87 and 375,000 in 1985/86, the U.S. Embassy\nsaid in its annual report on Indonesia\'s agriculture.\n    It said Indonesia did not achieve its goal of\nself-sufficiency in soybean output in calendar 1986 because it\ndid not meet a planned increase in area planted and because\nyields have remained below target.\n    Soybean  [...]
+'SHV SAYS IT MAKING TENDER OFFER FOR IC GAS &lt;SHV (United Kingdom) Holding Co Ltd>\nsaid it was making a tender offer for up to 33 mln ordinary\nshares in Imperial Continental Gas Association.&lt;ICGS.L>.\n    It said in a statement the offer was on the basis of 700p\nfor each IC Gas ordinary and 252p for every one stg nominal of\nIC Gas loan stock.\n    SHV already holds 6.8 mln IC Gas ordinary stock units\nrepresenting around 4.9 pct of the current issued share\ncapital.\n    Success [...]
+'U.K. MONEY MARKET DEFICIT FORECAST AT 800 MLN STG The Bank of England said it forecast a\nshortage of around 800 mln stg in the money market today.\n    Among the main factors affecting liquidity, bills maturing\nin official hands and the take-up of treasury bills will drain\nsome 1.61 billion stg.\n    Partly offsetting this outflow, exchequer transactions and\na fall in note circulation will add around 425 mln stg and 360\nmln stg respectively. In addition, bankers\' balances above\nt [...]
+'BLACK MINERS SUPPORT S. AFRICAN MINES TAKEOVER Thousands of black\nmineworkers roared support for a union proposal to seize\ncontrol of South Africa\'s gold, uranium, platinum and coal\nmines if the owners refuse to improve conditions for migrant\nblack workers.\n    About 15,000 miners attended a rally here to endorse moves\nproposed by last week\'s annual meeting of the 200,000 strong\nNational Union of Mineworkers (NUM).\n    They also supported a proposal for a national strike at th [...]
+'THAILAND ANNOUNCES THIRD TAPIOCA QUOTA FOR EC Thailand\'s Commerce Ministry announced a\nnew tapioca export quota of 737,987 tonnes for the European\nCommunity against 762,860 tonnes for the previous allocation.\n    The ministry said the fresh allocation, for the February\n27-July 7 shipment period, is the third under a maximum 5.5 mln\ntonne overall quota that Thailand obtained from the EC for\ncalendar 1987.\n    It said the quota allocation was based on a national\ntapioca pellet st [...]
+'ATPC MEMBERS FIND WAYS TO CURB TIN EXPORTS Mine and industry officials from\nmost member states of the Association of Tin Producing\nCountries (ATPC) say they have found ways to limit group\nexports to 96,000 tonnes in the year started March 1, according\nto views polled by Reuter correspondents.\n    The plan to curb exports, agreed in January, is aimed at\ncutting the world surplus to 50,000 tonnes from 70,000 now and\nboosting prices to about 19 ringgit a kilo from just over 16.\n    [...]
+'SOUTH KOREA TO HOLD CURRENT ACCOUNT SURPLUS DOWN South Korea plans to take steps to keep\nits 1987 current account surplus below five billion dlrs,\nEconomic Planning Board Minister Kim Mahn-je said.\n    Kim told reporters the government would repay loans ahead\nof schedule and encourage firms to increase imports and\ninvestment abroad to prevent the current account surplus from\nrising too quickly.\n    Last year South Korea\'s current account surplus was 4.65\nbillion dlrs. It widene [...]
+'DUTCH OILSEEDS/FATS IMPORTS ROSE IN 1986 and oil-bearing\nraw materials, fats and oils rose to 2.16 mln tonnes on a\nfat/oil basis in 1986 from 2.12 mln tonnes in 1985, the\nCommodity Board for Margarine, Fats and Oils said.\n    Exports of the same commodities fell to 1.35 mln tonnes\nfrom 1.38 mln on a fat-oil basis.\n    Fat- and oil-bearing raw materials imports rose to 760,000\nfrom 709,200 tonnes on a fat/oil basis and to 3.47 mln tonnes\nactual weight from 3.32 mln.\n    Soyabean [...]
+'CHINA\'S HEILONGJIANG PROVINCE BOOSTS GOLD OUTPUT Gold output in the northeast China\nprovince of Heilongjiang rose 22.7 pct in 1986 from 1985\'s\nlevel, the New China News Agency said. It gave no figures.\n    It said the province, China\'s second largest gold producer\nafter Shandong, plans to double gold output by 1990 from the\n1986 level. China does not publish gold production figures.\n    However, industry sources estimate output at about 65\ntonnes a year, with exports put betwe [...]
+'SALE TILNEY BUYS STAKE IN U.S. INSURANCE BROKER &lt;Sale Tilney Plc> said it has purchased\n80 pct of the ordinary share capital of &lt;B and R International\nInc.>, a U.S. Insurance broker, for 5.6 mln dlrs.\n    Sale is paying 3.6 mln dlrs in cash on completion, with the\nbalance plus interest to be paid in equal instalments over the\nnext six years.\n    B and R posted pretax profit of 855,000 dlrs in the year to\nDec 31, 1986 when it had net tangible assets of 563,000 dlrs.\n REUTER [...]
+'ESTIMATED DROP IN JAPAN CORPORATE PROFITS TRIMMED The combined profits of Japan\'s major\ncorporations, excluding financial institutions, are forecast to\nfall 19.2 pct in the 1986/87 year ending March 31, compared to\nthe 19.9 pct decline projected in late November, Wako Research\nInstitute of Economics said.\n    The private research body also said in a statement that 437\nof the 1,084 firms listed on the first section of the Tokyo\nStock Exchange foresee an 11.6 pct fall in sales in  [...]
+'INDIA BUYS 46,000 TONNES OF VEGETABLE OILS The Indian State Trading Corporation\npurchased 46,000 tonnes of vegetable oils at its import tender\non Friday, market sources said.\n    The business was for April shipments and comprised 20,000\ntonnes of European rapeseed oil at 318 dlrs, 20,000 tonnes of\nsoyoil, believed South American origin, at 314, and 6,000\ntonnes of Malaysian rbd palm olein at 347 dlrs, all per tonne\ncif.\n    Palm oil sellers were disappointed at the light purchas [...]
+'JAPAN TO PROMOTE INTEREST RATE LIBERALISATION The Bank of Japan decided at a policy\nboard meeting to promote further interest rate liberalisation\nby lowering the minimum denomination of regulation-free large\ndeposits and by raising the interest rate ceiling on money\nmarket certificates (MMCs), a central bank official said.\n    The new guideline will go into effect on April 6, the bank\nsaid.\n    Under the guideline, the minimum denomination of\nregulation-free large deposits will  [...]
+'TAIWAN POWER FIRM PLANS MORE FOREIGN DEBT CUTS State-owned (Taiwan Power co) will boost\nits domestic borrowings to further cut its foreign debt in line\nwith a government policy to trim the island\'s huge foreign\nexchange reserves, a company official said.\n    The company\'s foreign debt, mainly from the Japanese and\nU.S. Banks, was cut nearly by half to 66.2 billion taiwan dlrs\nequivalent in calendar 1986 from 124.6 billion in 1985, he\nsaid.\n    Its domestic borrowings however r [...]
+'DUTCH ANIMAL FEED USAGE DOWN IN FIRST HALF SEASON Dutch animal feed usage in the first\nhalf of the current season from July through December 1986 fell\n7.6 pct to 6.5 mln tonnes from 7.1 mln in the same period of\n1985, figures in the latest newsletter from the co-operative\nCebeco-Handelsraad show.\n    Tapioca usage fell 9.1 pct to 1.4 mln tonnes from 1.6 mln\nin the first half of the 1985/86 season.\n    Grain usage fell 6.1 pct to 1.1 mln tonnes from 1.2 mln,\nwhile soymeal usage f [...]
+'U.K. CONFIRMS JANUARY STERLING M3 RISE The Bank of England said the broad\nmeasure of U.K. Money supply, Sterling M3, rose a seasonally\nadjusted 1.1 pct in January after a 0.2 pct rise in December.\n    The unadjusted year-on-year rise was 17.6 pct after 18.1\npct in the year to December.\n    The narrow measure of money supply, M0, fell by a\nseasonally adjusted 0.6 pct in January, and rose by a\nnon-adjusted 4.1 pct year-on-year, the Bank said.\n    The figures confirm provisional da [...]
+'EXCO BUYS U.S. GOVERNMENT SECURITIES BROKER &lt;Exco International Plc>, a subsidiary of\nBritish and Commonwealth Shipping Co Plc &lt;BCOM.L>, said it had\nagreed in principle to buy an 80 pct stake in &lt;RMJ Holdings\nCorp> for about 79 mln dlrs.\n    Exco Chairman Richard Lacy told Reuters the acquisition was\nbeing made from Bank of New York Co Inc &lt;BK.N>, which currently\nholds a 50.1 pct, and from RMJ partners who hold the remainder.\n    Bank of New York and the partners will [...]
+'PAKISTAN TO TENDER FOR RBD PALM OIL Pakistan will hold an import tender\ntomorrow for 6,000 tonnes of refined bleached deodorised palm\noil for second half March shipments, traders said.\n REUTER\n&#3;',0
+'COLOROLL AGREES TO BUY U.S. WALLCOVERINGS COMPANY &lt;Coloroll Group Plc> said it has entered\ninto a conditional agreement to acquire the business and assets\nof &lt;Wallco Inc> and related companies for 14.5 mln dlrs.\n    Miami-based Wallco manufactures and distributes\nwallcoverings and showed a pretax profit of 1.5 mln dlrs on\nturnover of 37 mln in the year ending June 1986. The total U.S.\nMarket was estimated to be worth 840 mln dlrs in 1986, having\ngrown by 47 pct in the previ [...]
+'U.K. MONEY MARKET SHORTAGE FORECAST REVISED DOWN The Bank of England said it revised its\nforecast of the shortage in the money market down to around 700\nmln stg from its original estimate of 800 mln.\n REUTER\n&#3;',0
+'SWEDEN TO GO AHEAD WITH S. AFRICAN TRADE SANCTIONS Sweden\'s ruling Social Democratic\nParty gave full power to the government to decree unilateral\ntrade sanctions against South Africa, Prime Minister Ingvar\nCalrsson said.\n    Carlsson told a news conference the party decided the fight\nagainst apartheid took priority over Sweden\'s traditional\npolicy of only adopting sanctions with the backing of the U.N.\nSecurity Council.\n    The government will decide later what form the trade\ [...]
+'U.K. MONEY MARKET RECEIVES 37 MLN STG ASSISTANCE The Bank of England said it had provided\nthe money market with 37 mln stg assistance in the morning\nsession. This compares with the Bank\'s downward revised\nestimate of the shortfall in the system today of around 700 mln\nstg.\n    The central bank purchased bank bills outright comprising\nfour mln stg in band one at 10-7/8 pct and 33 mln stg in band\ntwo at 10-13/16 pct.\n REUTER\n&#3;',0
+'JAPAN, U.S. SET TO BEGIN HIGH-LEVEL TRADE TALKS Japan and the U.S. Kick off top-level\ntrade talks tomorrow amid signs officials from both sides are\ngrowing increasingly irritated with each other.\n    The talks, held annually at sub-cabinet level to review the\nwhole gamut of U.S./Japan economic relations, will pave the way\nfor American Secretary of State George Schultz\'s one day\nstop-over here at end-week on his way home from China.\n    Faced with growing Congressional protection [...]
+'INDIA TO HOLD WHITE SUGAR BUYING TENDER India will hold a buying tender on\nWednesday, March 4, for two to three cargoes of white sugar for\nMarch/April shipment, traders said.\n REUTER\n&#3;',0
+'CARLTON COMMUNICATIONS OPTIMISTIC FOR 1987 &lt;Carlton Communications Plc> has started\nthe current financial year well, with accounts for the first\nfour months showing a healthy increase on the same period last\nyear, and Chairman M.P. Green told the annual meeting he looked\nforward to 1987 with optimism.\n    The issue of 4.6 mln shares in ADR form had now been\nsuccessfully completed, he added.\n    Carlton intended to increase its presence in the U.S. Which\nrepresented 50 pct of  [...]
+'EC OPENS ANTI-DUMPING ENQUIRY INTO SOVIET MERCURY The European Community Commission said\nit has opened an enquiry into allegations that the Soviet Union\nis dumping mercury on the European market at below-cost prices.\n    The Commission said its decision follows a complaint from\nEC non-ferrous metals producers that the sales of Soviet\nmercury were harming their business and threatening jobs in the\nEuropean industry.\n    According to the complaint, Soviet mercury sales in the EC\nh [...]
+'GULF ARAB DEPUTY OIL MINISTERS TO MEET IN BAHRAIN Deputy oil ministers from six Gulf\nArab states will meet in Bahrain today to discuss coordination\nof crude oil marketing, the official Emirates news agency WAM\nreported.\n    WAM said the officials would be discussing implementation\nof last Sunday\'s agreement in Doha by Gulf Cooperation Council\n(GCC) oil ministers to help each other market their crude oil.\n    Four of the GCC states - Saudi Arabia, the United Arab\nEmirates (UAE), [...]
+'SAUDI ARABIA REITERATES COMMITMENT TO OPEC ACCORD Saudi Arabian Oil Minister Hisham Nazer\nreiterated the kingdom\'s commitment to last December\'s OPEC\naccord to boost world oil prices and stabilize the market, the\nofficial Saudi Press Agency SPA said.\n    Asked by the agency about the recent fall in free market\noil prices, Nazer said Saudi Arabia \"is fully adhering by the\n... accord and it will never sell its oil at prices below the\npronounced prices under any circumstance.\"\n [...]
+'KUWAIT MINISTER SAYS NO EMERGENCY OPEC TALKS SET Kuwait\'s oil minister said in a newspaper\ninterview that there were no plans for an emergency OPEC\nmeeting after the recent weakness in world oil prices.\n    Sheikh Ali al-Khalifa al-Sabah was quoted by the local\ndaily al-Qabas as saying that \"none of the OPEC members has\nasked for such a meeting.\"\n    He also denied that Kuwait was pumping above its OPEC quota\nof 948,000 barrels of crude daily (bpd).\n    Crude oil prices fell  [...]
+'TAIWAN PLANS NEW TARIFF CUTS Taiwan plans another round of deep tariff\ncuts this year to help narrow its trade surplus with the U.S.,\nA senior economic planner said.\n    Wang Chao-Ming, vice-chairman of the council for economic\nplanning and development, told Reuters Taiwan would further\nreduce import tariffs on 1,700 products sometime in the second\nhalf of this year.\n    Cuts of up to 50 pct on those items were made last year and\nWang said further cuts would go much deeper.\n    [...]
+'HUTCHISON SEES HIGHER PAYOUT, SATISFACTORY PROFITS Hutchison Whampoa Ltd &lt;HWHH.HK>\nexpects satisfactory profits in 1987 and will pay a higher\ndividend for the year, chairman Li Ka-shing said.\n    He did not make any specific projections for the company\'s\nearnings this year but he said the firm will pay a dividend of\nnot less than 32.5 cents per share after a proposed\nfour-for-one stock split and a one-for-four bonus issue.\n    It paid total dividends of 1.30 dlrs per share la [...]
+'SCIENTIFIC MICRO SYSTEMS &lt;SMSI> ACUIRES SUPERMAC Scientific Micro Systems Inc said it\nhas acquired Supermac Technology, a rapidly growing supplier of\nenhancement products and disc drive subsystems for the Apple\npersonal computer market.\n    Scientific Micro said it acquired all the common stock of\nSupermac in exchange for 1.05 mln shares of its own common\nstock. The stock closed at 5.50 dlrs bid on Friday.\n    Supermac, a privately held firm based in Mountain View,\nCalifornia [...]
+'AMERICAN EXPRESS &lt;AXP> VIEWING SHEARSON OPTIONS American Express Co, rumored to be\nconsidering a spinoff of part of Shearson Lehman Brothers Inc,\nsaid it is studying a range of options for its brokerage unit\nthat could improve Shearon\'s access to capital and help it meet\nbroadening international competition.\n    In a joint statement, American Express and Shearson said\nthe actions under consideration are an integral part of\nAmerican Express\' worldwide financial services strat [...]
+'ROPAK &lt;ROPK> HAS 34 PCT OF BUCKHORN &lt;BKN> Ropak Corp said it received\nand accepted about 456,968 common shares and 527,035 Series A\nconvertible preferred shares of Buckhorn Inc at four dlrs and\n5.75 dlrs each respectively in response to its tender offer\nthat expired Friday, and it now owns 34.4 pct of Buckhorn\nvoting power.\n    The company had owned 63,000 common and 25,100 preferred\nshares before starting the hostile tender.  Ropak said it is\nborrowing the funds needed to [...]
+'PHILADELPHIA PORT CLOSED BY TANKER CRASH The port of Philadelphia was closed\nwhen a Cypriot oil tanker, Seapride II, ran aground after\nhitting a 200-foot tower supporting power lines across the\nriver, a Coast Guard spokesman said.\n    He said there was no oil spill but the ship is lodged on\nrocks opposite the Hope Creek nuclear power plant in New\nJersey.\n    He said the port would be closed until today when they\nhoped to refloat the ship on the high tide.\n    After delivering o [...]
+'PENRIL &lt;PNL> SEEKS TO SELL TWO UNITS Penril Corp said it is seeking to\nsell its Triplett Electrical Instrument Corp subsidiary in\nBluffton, Ohio, and Triplett\'s Alltest division in Hoffman\nEstates, Ill., as part of a plan to concentrate on its three\nprofitable division and reduce its debt load.\n    The company also said it is evaluating a plan to satisfy\nits obligations under its 10-7/8 pct subordinated notes but\ngave no details.  Interest on the notes is due today.\n    Penr [...]
+'&lt;DALE BURDETT INC> FACES DAMAGE CLAIM Dale Burdett Inc said it\nfaces damages claims totalling about 420,000 dlrs from the\nformer owners of Burdett Publications Inc.\n    The company said on February 20, 1986, its predecessor\nNolex Development Inc acquired Burdett Publications Inc in an\nexchange of 17 mln common shares for all Burdett Publications\nshares, but the transaction was not qualified with the\nCalifornia Department of Corporations.\n    As a result, it said, the former B [...]
+'PUROLATOR &lt;PCC> IN BUYOUT WITH HUTTON &lt;EFH> New Jersey-based overnight messenger\nPurolator Courier Corp said it has agreed to be acquired for\nabout 265 mln dlrs by a company formed by E.F. Hutton LBO Inc\nand certain managers of Purolator\'s U.S. courier business.\n    Analysts have said that Purolator has been for sale for\nsome time. Purolator announced earlier it was mulling a\ntakeover bid, but analysts wrongly predicted the offer was from\nanother courier company.\n    Hutt [...]
+'PAKISTAN COTTON OUTPUT REACHES 7.7 MLN BALES Pakistan cotton production during the\ncurrent crop season (Sept/March) reached 7.7 mln bales of 375\npounds each, up 500,000 from last season, Shafi Niaz, Chairman\nof the Agricultural Prices Commission, said.\n    Official sources said Pakistan was likely to use 3.4 mln\nbales of cotton during the current financial year ending June\nafter 2.96 mln in 1985/86 and 2.70 mln in 1984/85.\n    They said consumption would increase due to a rise in [...]
+'FINANCIAL SANTA BARBARA &lt;FSB> TO MAKE PURCHASE Financial Corp of Santa\nBarbara said it has signed a definitive agreement to purchase\nStanwell Financial, the lending operations unit of mortgage\nbanking company &lt;Stanwell Mortgage>, for undisclosed terms.\n Reuter\n&#3;',0
+'ALCAN TO CLOSE WEST GERMAN ALUMINIUM SMELTER &lt;Alcan Aluminiumwerke\nGmbH>, a subsidiary of Alcan Aluminium Ltd &lt;AL.N> of Canada,\nsaid it plans to close its aluminium smelter in Ludwigshafen at\nthe end of June.\n    A spokesman said Alcan was closing the smelter, with annual\ncapacity of 44,000 tonnes and 320 employees, because of high\nelectricity costs and the low world market price of aluminium.\n    Alkan had said earlier this year it would close half the\nplant\'s capacity b [...]
+'BBC AG BROWN BOVERI UND CIE &lt;BBCZ.Z> 1986 YEAR Parent Company net profit 12.8 mln Swiss francs vs 7.5 mln.\n    Orders received 2.21 billion francs vs 2.61 billion.\n    Sales 2.25 billion francs vs 2.49 billion.\n    Group sales 13.83 billion francs vs 13.88 billion.\n    Group orders 11.03 billion francs vs 13.00 billion.\n REUTE\n&#3;',0
+'MARRIOTT &lt;MHS> TO SELL HOTEL &lt;Four Seasons Hotels> said it and &lt;VMS\nRealty Partners> of Chicago have agreed to purchase the Santa\nBarbara Biltmore Hotel from Marriott Corp for an undisclosed\namount.\n    It said the venture will rename the hotel the Four Seasons\nBiltmore at Santa Barbara and invest over 13 mln dlrs in\nimprovements on the 228-room property.\n Reuter\n&#3;',0
+'BROWN BOVERI OMITS DIVIDEND, PLANS WARRANT BOND BBC AG Brown Boveri und Cie\n&lt;BBCZ.Z> said it will omit dividend in 1986 for the second\nconsecutive year.\n    It said it planned to invite shareholders and non-voting\nstockholders to subscribe to a warrant bond issue of around 150\nmln Swiss francs to be made after the June 2 annual meeting.\n    The value of the stock subscription rights should\ncorrespond roughly to the dividend of 30 francs per share paid\nin 1984. The company als [...]
+'VIACOM SAID IT HAS NEW NATIONAL AMUSEMENTS, MCV HOLDINGS BIDS\n ',0
+'LAROCHE STARTS BID FOR NECO &lt;NPT> SHARES Investor David F. La Roche of North\nKingstown, R.I., said he is offering to purchase 170,000 common\nshares of NECO Enterprises Inc at 26 dlrs each.\n    He said the successful completion of the offer, plus shares\nhe already owns, would give him 50.5 pct of NECO\'s 962,016\ncommon shares.\n    La Roche said he may buy more, and possible all NECO\nshares. He said the offer and withdrawal rights will expire at\n1630 EST/2130 gmt, March 30, 198 [...]
+'&lt;SDC SYDNEY DEVELOPMENT CORP> NINE MTHS LOSS Period ended December 31, 1986\n    Oper shr loss 1.08 dlrs vs loss 84 cts\n    Oper loss 7,700,000 vs loss 1,700,000\n    Revs 11,800,000 vs 9,800,000\n    Note: Current shr and net exclude extraordinary gain of\n300,000 dlrs or five cts shr, versus extraordinary gain of\n200,000 dlrs or four cts shr\n Reuter\n&#3;',0
+'SENIOR ENGINEERING MAKES 12.5 MLN DLR US PURCHASE &lt;Senior Engineering Group Plc> said it\nreached agreement with &lt;Cronus Industries Inc> to acquire the\nwhole share capital of &lt;South Western Engineering Co> for 12.5\nmln dlrs cash. This sum is being financed by a term loan.\n    South Western is one of the U.S.\'s leading manufacturers of\nheat transfer equipment, with a turnover of 54.86 mln dlrs and\npre-tax profits of 1.72 mln in 1986.\n    Completion of the deal is conditio [...]
+'CHEUNG KONG CHAIRMAN SEES STRONG RESULTS IN 1987 Cheung Kong (Holdings) Ltd &lt;CKGH.HK>\nis expecting strong results this year after reporting better\nthan expected profits in 1986, chairman Li Ka-shing said.\n    He did not give a specific earnings projection but he told\nreporters the firm will pay total dividends of not less than 19\ncents a share this year after a one-for-four bonus issue and a\nfour-for-one stock split.\n    The company earlier declared total dividends equal to 15 [...]
+'WHITTAKER CORP 1ST QTR OPER SHR 17 CTS VS 25 CTS\n ',0
+'VIACOM &lt;VIA> RECEIVES TWO REVISED OFFERS Viacom International Inc said it\nreceived revised merger offers from &lt;National Amusements Inc>\nand &lt;MCV Holdings Inc>.\n    The company said the special committee plans to meet later\ntoday to review both offers.\n    Viacom said National Amusements\' Arsenal Holdings Inc\nraised the value of its offer for the Viacom shares not held by\nNational Amusements in three areas. National Amusements holds\n19.6 pct of Viacom\'s stock.\n    The [...]
+'FRENCH ESTIMATE 86/87 WHEAT DELIVERIES UNCHANGED The French Cereals Intervention Board,\nONIC, left its estimate of French 1986/87 (July/June) soft\nwheat deliveries unchanged from its last forecast at 21.98 mln\ntonnes.\n    This compared with deliveries of 24.38 mln tonnes in\n1985/86 (August/July).\n    Estimated 1986/87 maize deliveries were also left unchanged\nfrom ONIC\'s previous forecast at the beginning of February at\n9.91 mln tonnes against 10.77 mln the previous season.\n   [...]
+'WASTE MANAGEMENT CORP VOTES TWO FOR ONE STOCK SPLIT AND BOOSTS QTLY DIVIDEND TO 18 CTS\n ',0
+'PITTSTON AGREES TO ACQUIRE WTC INTERNATIONAL IN EXCHANGE OF STOCK\n ',0
+'TUESDAY MORNING INC &lt;TUES> 4TH QTR NET Shr 1.19 dlrs vs 1.46 dlrs\n    Net 3,150,185 vs 2,665,284\n    Revs 27.9 mln vs 24.1 mln\n    Avg shrs 2,653,646 vs 1,826,858\n    Year\n    Shr 1.45 dlrs vs 1.37 dlrs\n    Net 3,611,802 vs 2,502,443\n    Sales 62.2 mln vs 52.8 mln\n    Avg shrs 2,489,978 vs 1,826,858\n Reuter\n&#3;',0
+'DIAGNOSTIC/RETRIEVAL SYSTEMS INC MAKES 53 MLN DLR BID FOR ROSPATCH CORP\n ',0
+'MILLER TABAK HAS 91.8 PCT OF PENN TRAFFIC &lt;PNF> &lt;Miller Tabak Hirsch and Co> said it\nhas received an accepted 3,424,729 common shares of Penn\nTraffic Co in response to its 31.60 dlr per share tender offer\nthat expired Friday, and together with the 380,728 shares it\nalready owned, it now has about 91.8 pct of Penn Traffic.\n    The company said Penn Traffic is expected to hold a special\nshareholders\' meeting later this month to approve a merger into\nMiller Tabak at the tende [...]
+'COFFEE QUOTA TALKS CONTINUE BUT NO AGREEMENT YET Coffee quota talks at the International\nCoffee Organization council meeting here continued this\nafternoon, but producers and consumers still had not reached\ncommon ground on the key issue of how to estimate export\nquotas, delegates said.\n    The 54 member contact group was examining a Colombian\nproposal to resume quotas April 1 under the ad hoc system used\nhistorically, with a pledge to meet again in September to\ndiscuss how quota [...]
+'WASTE MANAGEMENT &lt;WMX> VOTES SPLIT, UPS PAYOUT Waste Management Corp said its\nboard voted a two-for-one stock split payable April 21, record\nMarch 30.\n    In other action, Waste Management directors approved an\nincrease in the quarterly dividend to 18 cts from 14 cts,\npayable April three, record March 18.\n Reuter\n&#3;',0
+'POREX TECHNOLOGIES &lt;PORX> SETS INITIAL DIVIDEND Porex Technologies Corp said its\nboard declared an initial annual dividend of 10 cts per share,\nits first payout, payable March 26 to holders of record March\n12.\n Reuter\n&#3;',0
+'DAVIS WATER &lt;DWWS> DECLARES STOCK DIVIDEND Davis Water and Waste\nIndustries Inc said its board declared a 33-1/3 pct stock\ndividend, payable March 23 to holders of record March 12.\n Reuter\n&#3;',0
+'MEDCO CONTAINMENT &lt;MCCS> SETS INITIAL PAYOUT Medco Containment Services\nInc said its board declared an initial annual dividend of 10\ncts per share, its first payout, payable March 19 to holders of\nrecord March 12.\n Reuter\n&#3;',0
+'PITTSTON &lt;PCO> AGREES TO ACQUIRE WTC &lt;WAF> Pittston Co said it has\ntentatively agreed to acquire WTC International N.V. in a\ntax-free exchange of stock.\n    Pittston said it agreed to exchange 0.523 common share for\neach of the about 8,612,000 WTC common shares outstanding.\n    Pittston said WTC\'s three principal shareholders, who own\n62 pct of its stock, are parties to this agreement. They have\ngranted Pittston the right of first refusal to their shares.\n    WTC has gran [...]
+'SDC SYDNEY COST REVIEW MAY ELIMINATE PRODUCTS &lt;SDC Sydney\nDevelopment Corp>, earlier reporting an increased nine month\noperating loss, said a cost control review now underway may\nresult in cost reduction and elimination of unprofitable and\nnon-strategic products and services.\n    The company\'s operating loss for the nine months ended\nDecember 31, 1986 increased to 7.7 mln dlrs from a loss of 1.7\nmln dlrs in the prior year, it said earlier.\n    Revenues increased by 20 pct to [...]
+'&lt;MULTI-STEP PRODUCTS INC> SIX MTHS DEC 31 LOSS Shr loss 11 cts\n    Loss 739,146\n    Revs 11,754,251\n    Note: initial public listing December, 1986\n Reuter\n&#3;',0
+'U.K. MONEY MARKET OFFERED BORROWING FACILTIES The Bank of England said it had offered\nborrowing facilities to those discount houses wishing to use\nthem at 1430 GMT.\n    The Bank also said it provided the money market 456 mln stg\nassistance in the afternoon session bringing its total help so\nfar today to 493 mln stg. This compares with its forecast of a\nshortage in the system today of around 700 mln stg.\n    The central bank purchased bank bills outright comprising\n41 mln stg in  [...]
+'SWISS SIGHT DEPOSITS RISE 3.10 BILLION FRANCS Sight deposits by commercial banks at the\nSwiss National Bank rose by 3.10 billion Swiss francs to 10.53\nbillion in the last 10 days of February, the National Bank\nsaid.\n    Foreign exchange reserves fell 3.06 billion francs to 30.64\nbillion.\n    Sight deposits are an important measure of Swiss money\nmarket liquidity.\n    The decline in foreign exchange reserves reflected the\ndismantling of swap arrangements, the National Bank said. [...]
+' &#2;\nUSDA LIFTS CROSS-COMPLIANCE FOR 1987 CROP OATS\n    REPEAT FROM LATE FRIDAY\n    WASHINGTON, Feb 27 - The USDA said it is lifting the\nlimited cross-compliance requirement for 1987 crop oats.\n    Deputy Secretary Peter Myers said the action was being\ntaken to help alleviate the short supply of oats.\n    Under limited cross compliance, the plantings of other\nprogram crops on the farm may not exceed the crop acreage bases\nof those crops.\n    The lifting of the cross-complianc [...]
+'CONSOLIDATED TVX SAYS IT WILL ISSUE SHARES TO BUY STAKES IN THREE BRAZIL MINING FIRMS\n ',0
+'WHITTAKER CORP &lt;WKR> 1ST QTR JAN 31 NET Oper shr 17 cts vs 25 cts\n    Qtly div 15 cts vs 15 cts prior\n    Oper net 1,522,000 vs 3,501,000\n    Sales 98.0 mln vs 86.3 mln\n    NOTE: Prior year net excludes loss from discontinued\noperations of 1,817,000 dlrs.\n    Company said common shares outstanding down significantly\nto 7,814,000, reflecting retirement of about 5,200,000 shares\nsince start of restructurining in August 1986.\n    Dividend pay April 30, record April 16.\n Reuter [...]
+'STOP AND SHOP COS INC &lt;SHP> 4TH QTR JAN 31 NET Oper shr 1.80 dlrs vs 1.46 dlrs\n    Oper net 25.0 mln vs 20.2 mln\n    Sales 1.09 billion vs 996.4 mln\n    Avg shrs 13.9 mln vs 13.8 mln\n    Year\n    Oper shr 3.20 dlrs vs 2.57 dlrs\n    Oper net 44.4 mln vs 35.4 mln\n    Sales 3.87 billion vs 3.43 billion\n    Avg shrs 13.9 mln vs 13.8 mln\n    NOTES: Operating net excludes losses of 12.1 mln dlrs, or\n87 cts a share, vs 321,000 dlrs, or two cts a share, in quarter\nand 6.0 mln dlrs [...]
+'JIM WALTER CORP &lt;JWC> REGULAR DIVIDEND Qtly div 35 cts vs 35 cts in prior qtr\n    Payable April one\n    Record March 14\n Reuter\n&#3;',0
+'DIAGNOSTIC &lt;DRS> MAKES A BID FOR ROSPATCH &lt;RPCH> Diagnostic Retrieval Systems Inc\nsaid it has made an offer to acquire, through a wholly owned\nunit, all outstanding shares of Rospatch Corp\'s common stock\nfor 22 dlrs a share cash, or about 53 mln dlrs.\n    DRS, a warfare systems producer, said it would make the\ntransaction through a cash tender offer for all, but not less\nthan 51 pct, of Rospatch\'s outstanding common stock followed by\na merger with Rospatch, a labels, high [...]
+'RECORD N.Z. FUTURES VOLUMES TRADED IN FEBRUARY The volume of contracts traded on the\nNew Zealand Futures Exchange (NZFE) reached a record 25,559\ncontracts in February, the International Commodities Clearing\nHouse (ICCH) said.\n    The previous high was 22,583 contracts in December 1986.\n    The ICCH said the value of the contracts traded in February\nwas 2.90 billion N.Z. Dlrs.\n    The seven contracts currently traded on the NZFE are:\nfive-year government bonds, the share price in [...]
+'WHITTAKER &lt;WKR> TO HAVE GAINS FROM SALES Whittaker Corp said it will have a\ngain on the sale of discontinued businesses after any operating\nlosses from the businesses up until the dates of disposition,\nbut it will defer reporting the gain until its restructuring\nprogram hsa been substantially completed.\n    The company said in the first quarter ended January 31,m it\ncompleted the divestiture of its health maintenance\norganization operations to Travelers Corp &lt;TIC> , sold it [...]
+'THE JAPAN FUND &lt;JPN> GETS BUYOUT OFFER The Japan Fund Inc said it has received\nan unsolicited offer from &lt;Sterling Grace Capital Management\nLP>, acting together with certain other persons and entities,\nto purchase all the assets of the fund at five pct below its\naggregate net asset value.\n    The Japan Find said tne deal is subject to obtaining\nsatisfactory financing and a due diligence review.\n    It added that the proposal has been referred to its Board\nof Directors for  [...]
+'&lt;SAMSUNG CO> CALENDAR 1986 Div 50 won vs 50 won\n    Net profit 6.91 billion won vs 6.10 billion\n    Sales 4,275.4 billion vs 3,801,7 billion\n    Note - Company has set 1987 sales target of 4,800 billion\nwon.\n Reuter\n&#3;',0
+'&lt;DAEWOO CORP> CALENDAR 1986 Div 50 won vs 50 won\n    Net profit 35.4 billion won vs 34.2 billion\n    Sales 4,214.9 billion won vs 3,779.2 bilion\n    Note - company has set 1987 sales target of 5,200 billion.\n REUTER\n&#3;',0
+'CORNING TO OFFER 0.5165 SHARE FOR EACH HAZLETON SHARE UNDER EARLIER AGREEMENT\n ',0
+'BANK OF NEW YORK &lt;BK> TO HAVE GAIN ON UNIT SALE Bank of New York Co said it and the\nmanagement of RMJ Securities Corp have agreed to sell 80 pct of\ntheir interests in RMJ Holding Corp to &lt;British and\nCommonwealth Holdings PLC> and Bank of New York expects to\nrealize a substantial gain on the transaction.\n    RMJ Holding is the holding company for RMJ Securities, a\nlarge broker of U.S. government securities and agency\nobligations  Bank of New York owns a majority interest in [...]
+'CORNING &lt;GLW>, HAZLETON &lt;HLC> SET EXCAHNGE RATIO Corning Glass Works said the\nexchange ratio for its previously announced acquisition of\nHazleton Laboratories Corp has been established at 0.5165\nCorning common share for each Hazleton common share.\n    Corning said the prospectus regarding the merger is\nexpected to be mailed tomorrow to all Hazleton holders of\nrecord February 18. Hazleton shareholders will vote on the\nproposed merger at a special meeting on March 31.\n Reute [...]
+'HEALTH EXPERTS URGE ERADICATION OF RINDERPEST World animal health experts called for a\ncampaign to eradicate the lethal cattle disease Rinderpest in\nBangladesh, Bhutan, India, Nepal and Pakistan, a statement from\na Food and Agriculture Organization (FAO) meeting here said.\n    Some 230 mln dlrs is needed over two years to vaccinate the\nentire susceptible cattle population in Bangladesh and Pakistan\nand high-risk areas of the other three countries. In India some\n240 mln cattle are [...]
+'TURKISH RETAIL PRICES RISE 2.7 PCT IN FEBRUARY Turkish retail prices rose 2.7 pct in\nFebruary after 2.9 pct in January and 1.7 pct in February 1986,\nthe State Statistics Institute said.\n    Prices in the year to February rose 31.6 pct, compared with\n30.3 pct in the year to January and 38.8 pct in the 12 months\nto February 1986.\n    The index (base 1978/79), covering 14 towns and five\nregions, was 1,886.8 in February, 1,837.2 in January and\n1,434.0 in February 1986.\n REUTER\n&#3;',0
+'BALLY &lt;BLY> COMPLETES PURCHASE OF GOLDEN NUGGET Bally Manufacturing Corp said it\ncompleted the acquisition of the Golden Nugget Casino Hotel in\nAtlantic City, New Jersey from Golden Nugget Inc.\n    Bally also acquired from Golden Nugget various parcels of\nreal estate in Atlantic City, it noted.\n    The transaction included 140 mln dlrs in cash and stock and\nthe assumption of a 299 mln dlrs mortgage.\n Reuter\n&#3;',0
+'CONSOLIDATED TVX TO BUY BRAZIL GOLD MINE STAKES &lt;Consolidated TVX Mining Corp> said it\nagreed to issue 7.8 mln treasury shares to acquire interests in\nthree gold mining companies in Brazil and an option to increase\nthe company\'s interest in a platinum property.\n    The company said the transactions will bring immediate\nproduction and earnings to Consolidated TVX, enhance its\nprecious metal potential and is expected to improve cash flow\nand earnings on a per share basis. The c [...]
+'WARWICK INSURANCE MANAGERS INC &lt;WIMI> 4TH QTR Oper shr 17 cts vs 19 cts\n    Oper net 636,000 vs 358,000\n    Revs 10.6 mln vs 7,024,000\n    Avg shrs 3,808,000 vs 1,924,000\n    Year\n    Oper shr 73 cts vs 65 cts\n    Oper net 2,467,000 vs 1,199,000\n    Revs 31.5 mln vs 22.9 mln\n    Avg shrs 3,372,000 vs 1,785,000\n    NOTE: Net excludes investment gains 20,000 dlrs vs 86,000\ndlrs in quarter and 586,000 dlrs vs 195,000 dlrs in year.\n    1985 year net excludes 304,000 dlr tax cr [...]
+'CANADA INDUSTRIAL PRICES UP 0.2 PCT IN MONTH Canada\'s industrial product price index\nrose 0.2 pct in January after falling 0.2 pct in each of the\ntwo previous months, Statistics Canada said.\n    The rise was led by price gains for papers, pharmaceuticals\nand petroleum and coal products. Price declines were recorded\nfor meat products, lumber and motor vehicles.\n    On a year over year basis, the federal agency said the\nindex fell 0.9 pct in January, the largest yearly decline on\ [...]
+'GELCO CORP 2ND QTR SHR 67 CTS VS 23 CTS\n ',0
+'STROBER ORGANIZATION INC &lt;STRB> 4TH QTR NET Shr 22 cts vs 17 cts\n    Net 1,232,000 vs 834,000\n    Sales 24.1 mln vs 20.9 mln\n    Avg shrs 5,609,000 vs five mln\n    Year\n    Shr 97 cts vs 69 cts\n    Net 4,985,000 vs 3,426,000\n    Sales 92.4 mln vs 77.9 mln\n    Avg shrs 5,153,000 vs five mln\n Reuter\n&#3;',0
+'SHELL CANADA CUTS CRUDE OIL PRICES BY UP TO 1.27 CANADIAN DLRS/BBL EFFECTIVE MARCH ONE\n ',0
+'BRENCO INC &lt;BREN> DECLARES QTLY DIVIDEND Qtly div three cts vs three cts prior\n    Pay April six\n    Record March 20\n Reuter\n&#3;',0
+'MASSACHUSETTS INVESTORS GROWTH STOCK FUND PAYOUT Qtly div from income 5.1 cts vs 3.035 dlrs in prior qtr\nincluding capital gains of 2.978 dlrs\n    Payable March 27\n    Record February 27\n Reuter\n&#3;',0
+'&lt;PREMDOR INC> 4TH QTR NET Shr 35 cts vs 25 cts\n    Net 1,590,000 vs 1,140,000\n    Revs 32.2 mln vs 23.0 mln\n    YEAR\n    Shr 1.16 dlrs vs 68 cts\n    Net 5,300,000 vs 3,100,000\n    Revs 110.0 mln vs 85.4 mln\n Reuter\n&#3;',0
+'AMERICAN NURSERY &lt;ANSY> BUYS FLORIDA NURSERY American Nursery Products Inc\nsaid it purchased Miami-based Heinl\'s Nursery Inc, for\nundisclosed terms.\n    Heinl\'s Nursery has sales of about 4.5 mln dlrs and owns\n100 acres, of which 75 are in shade houses and about 58,300\nsquare feet cover greenhouses, shipping and office facilities.\n Reuter\n&#3;',0
+'MFS MANAGED SECTORS TRUST DIVIDEND INCREASED Semi-annual div from income of 7.3 cts vs 1.0 cent in prior\nperiod\n    Payable March 27\n    Record February 27\n Reuter\n&#3;',0
+'MULTI-STEP TO SELL LADDER UNIT, CANCEL SHARES &lt;Multi-Step Products Inc>, earlier\nreporting an initial six month loss, said it agreed to sell\nwholly owned Multi-Step Manufacturing Inc for 100,000 dlrs\ncash, subject to shareholder and regulatory approval.\n    Multi-Step also said it will pay 900,000 dlrs to cancel\n711,192 of its own shares, which will be acquired from Michael\nPenhale and his benficiaries. Penhale will control and manage\nMulti-Step Manufacturing, following the tr [...]
+'ESSELTE BUSINESS &lt;ESB> UNIT BUYS ANTONSON UNIT Esselte Business Systems Inc\'s\nEsselte Meto division said it has acquired the Antonson America\nCo, a subsidiary of &lt;Antonson Machines AB>, of Sweden.\n    Esselte said the Antonson unit, based in LaPorte, Indiana,\nmanufactures scales and label printers. The company said the\npurchase is part of a plan to increase the range of retail\nelectronic scales being offered by Esselte in the U.S.\n    It said the acquisition will enble Ess [...]
+'FED EXPECTED TO ADD TEMPORARY RESERVES The Federal Reserve is expected to\nenter the U.S. Government securities market to add temporary\nreserves, economists said.\n    They expect it to supply the reserves indirectly by\narranging a fairly large round, two billion dlrs or more, of\ncustomer repurchase agreements. The Fed may add the reserves\ndirectly instead via System repurchases.\n    Federal funds, which averaged 6.02 pct on Friday, opened at\n6-1/8 pct and traded between there and [...]
+'FOUR SEASONS BUYING MARRIOTT &lt;MHS> HOTEL &lt;Four Seasons Hotels Inc> and VMS Realty\nPartners said they agreed to acquire the Santa Barbara Biltmore\nHotel in California from Marriott Corp, for undisclosed terms.\n    Closing was expected by March 31, they added.\n    The companies said they would jointly own the hotel and\nrename it the Four Seasons Biltmore at Santa Barbara. They said\nthey would spend more than 13 mln U.S. dlrs \"to enhance the\nBiltmore\'s position as one of the [...]
+'STONE &lt;STO> SPLITS STOCK, RAISES PAYOUT Stone Container Corp said it is\nsplitting its common stock 2-for-1 and increasing its dividend\n33-1/3 pct.\n    The dividend of 20 cts a share, an increase of five cts\nover the prior 15 cts a share on pre-split shares, is payable\nJune 12 to holders of record May 22.\n    The stock split also is payable June 12 to holders of\nrecord May 22.\n Reuter\n&#3;',0
+'S-K-I LTD &lt;SKII> 2ND QTR JAN 25 NET Shr 81 cts vs 57 cts\n    Net 3,660,273 vs 2,437,914\n    Rev 28.5 mln vs 23.1 mln\n    Six months\n    Shr 29 cts vs 12 cts\n    Net 1,325,755 vs 483,559\n    Rev 31.7 mln vs 26.4 mln\n Reuter\n&#3;',0
+'KAPOK CORP &lt;KPK> YEAR SEPT 30 LOSS Shr loss 20 cts vs profit 96 cts\n    Net loss 499,000 vs profit 2,369,000\n    Revs 11.5 mln vs 10.3 mln\n    NOTE: Prior year net includes gain on sale of property of\n4,557,000 dlrs.\n Reuter\n&#3;',0
+'CARGILL U.K. STRIKE TALKS POSTPONED Talks due today between management and\nunions to try to end the strike at Cargill U.K. Ltd\'s Seaforth\noilseed crushing plant have been rescheduled for Thursday, a\ncompany spokesman said.\n    Oilseed processing at the plant has been halted since\nDecember 19 when mill workers walked out in protest at new\ncontract manning levels.\n Reuter\n&#3;',0
+'AMAX &lt;AMX> IN GOLD, SILVER FIND AMAX Incx said it has identified\nadditional gold and silver ore reserves at its AMAX Sleeper\nMine near Winnemucca, Nev..\n    It said as a result of recent drilling, reserves at thhe\nmine are now estimated at 2,470,000 short tons of ore grading\n0.24 ounce of gold and 0.50 ounce of silver per ton that is\ntreatable by conventional milling techniques.\n    AMAX said additional reserves amenable to heap leaching are\nestimated at 38.3 mln tons averagi [...]
+'STUDY GROUP URGES INCREASED U.S. OIL RESERVES A study group said the United States\nshould increase its strategic petroleum reserve to one mln\nbarrels as one way to deal with the present and future impact\nof low oil prices on the domestic oil industry.\n    U.S. policy now is to raise the strategic reserve to 750\nmln barrels, from its present 500 mln, to help protect the\neconomy from an overseas embargo or a sharp price rise.\n    The Aspen Institute for Humanistic Studies, a privat [...]
+'K-TRON INTERNATIONAL INC &lt;KTII> 4TH QTR NET Oper shr profit 36 cts vs loss 1.48 dlrs\n    Oper net profit 1,353,000 vs loss 5,551,000\n    Revs 11.3 mln vs 8,142,000\n    Year\n    Oper shr profit 31 cts vs loss 1.58 dlrs\n    Oper net profit 1,165,000 vs loss 5,919,000\n    Revs 38.0 mln vs 31.6 mln\n    NOTE: Net includes pretax unusual gain 64,000 dlrs vs loss\n4,744,000 dlrs in quarter and losses 3,0077,000 dlrs vs\n4,744,000 dlrs in year.  1986 items include settlement of\npaten [...]
+'PRESIDENTIAL REALTY CORP &lt;PDO> ANNUAL NET Shr 1.65 dlrs vs 1.50 dlrs\n    Net 5,370,000 vs 4,901,000\n    Rev 8.4 mln vs 7.8 mln\n    NOTE: 1986 net gain from property investments 717,000 dlrs,\nor 22 cts per share, vs 721,000 dlrs, or 22 cts per share.\n Reuter\n&#3;',0
+'REDSTONE DETAILS SWEETENED VIACOM &lt;VIA> OFFER Investor Sumner Redstone, who leads\none of the two groups vying for control of Viacom International\nInc, offered to sweeten his bid for the company by 1.50 dlrs a\nshare cash and 1.50 dlrs in securities.\n    In a filing with the Securities and Exchange Commission,\nRedstone, who controls Dedham, Mass.,-based National Amusements\nInc, a theater chain operator, offered to raise the cash\nportion of its Viacom offer to 42 dlrs a share fro [...]
+'MONTEDISON CONCLUDES TALKS WITH ANTIBIOTICOS Montedison Spa &lt;MONI.MI> said it has\nconcluded its negotiations with Spanish pharmaceuticals company\n&lt;Antibioticos SA>.\n    A company spokesman told Reuters \"We have concluded the\ntalks and we are now awaiting authorization from Spanish\nauthorities.\" He declined to comment further.\n    Earlier today the Italian company postponed a scheduled\npress conference on its talks with Antibioticos. An Italian\npress report today said Mon [...]
+'UTILICORP &lt;UCU> COMPLETES ACQUISITION UtiliCorp United Inc said it\ncompleted the acquisition of West Virginia Power from Dominion\nResources for about 21 mln dlrs.\n    The sale was approved by the West Virginia Public Service\nCommission in January and became effective March one. West\nVirginia\'s management will continue to be responsible for\noperating the utility, it said.\n Reuter\n&#3;',0
+'TRADERS DETAIL FRENCH CEREAL EXPORT REQUESTS French operators last Friday requested\nlicences to export 10,500 tonnes of free market maize, 11,950\ntonnes of free market barley and 13,000 of soft wheat flour to\nnon-EC countries, at prefixed daily (droit commun) rebates,\nFrench trade sources said.\n    The latest requests for the maize were for export to\nSwitzerland, Austria and Lichtenstein at a maximum daily rebate\nprefixed last Friday at 141 Ecus a tonne against a previous 20\nEcu [...]
+'STUDY GROUP URGES INCREASED U.S. OIL RESERVES A study group said the United States\nshould increase its strategic petroleum reserve to one mln\nbarrels as one way to deal with the present and future impact\nof low oil prices on the domestic oil industry.\n    U.S. policy now is to raise the strategic reserve to 750\nmln barrels, from its present 500 mln, to help protect the\neconomy from an overseas embargo or a sharp price rise.\n    The Aspen Institute for Humanistic Studies, a privat [...]
+'CARBIDE &lt;UK> LOOKS TO ACQUISITIONS FOR GROWTH Union Carbide Corp is looking to\nacquisitions and joint ventures to aid its chemicals and\nplastics growth, according the H.W. Lichtenberger, president of\nChemicals and Plastics.\n    Describing this as a major departure in the company\'s\napproach to commercial development, he told the annual new\nbusiness forum of the Commercial Development Association \"We\nare looking to acquisitions and joint ventures when they look\nlike the faste [...]
+'CORRECTED - BANKAMERICA NEGOTIATING SALE OF UNITS Bank of America NT and SA\'s\n&lt;BAC.N> West German branch said it is negotiating the sale of\nBankhaus Centrale Credit AG, a small local West German bank it\nacquired in 1965, and of its West German Visa credit card\noperation.\n    Michael Seibel, Bank of America vice-president and regional\nmanager, said the negotiations were proceeding well. He\ndeclined to give further details.\n    Bank of America\'s West German branch lost some 3 [...]
+'&lt;FRANKLIN GOLD FUND> CUTS DIVIDEND Semi div 13 cts vs 18 cts prior\n    Pay March 13\n    Record March Two\n Reuter\n&#3;',0
+'&lt;FRANKLIN CALIFORNIA TAX-FREE INCOME FUND>PAYOUT Mthly div 4.5 cts vs 4.5 cts prior\n    Pay March 13\n    Record March Two\n Reuter\n&#3;',0
+'&lt;FRANKLIN AGE HIGH INCOME FUND> SETS PAYOUT Mthly div 3.6 cts vs 3.6 cts prior\n    Pay March 13\n    Record March Two\n Reuter\n&#3;',0
+'PETRO-CANADA CUT CRUDE PRICES BY 1.43 CANADIAN DLRS/BBL EFFECTIVE MARCH ONE\n ',0
+'&lt;FRANKLIN FEDERAL TAX-FREE INCOME FUND> PAYOUT Mthly div 7.7 cts vs 7.7 cts prior\n    Pay March 13\n    Record March Two\n Reuter\n&#3;',0
+'&lt;FRANKLIN NEW YORK TAX-FREE INCOME FUND> PAYOUT Mthly div 7.3 cts vs 7.3 cts prior\n    Pay March 13\n    Record March Two\n Reuter\n&#3;',0
+'&lt;FRANKLIN U.S. GOVERNMENT SECURITIES FUND>PAYOUT Mthly div six cts vs six cts prior\n    Pay March 13\n    Record March Two\n Reuter\n&#3;',0
+'CANADA RULING ON U.S. CORN INJURY DUE THIS WEEK The Canadian government is expected\nto announce later this week its final ruling whether U.S. corn\nexports to Canada have injured Ontario corn growers, U.S.\ngovernment and farm group representatives said.\n    The deadline for a final determination is March 7.\n    U.S. officials said they are encouraged by the outcome in a\nsimilar case covering European pasta imports. In that case,\nCanada decided pasta imports, which take about ten p [...]
+'FIRST MISSISSIPPI CORP &lt;FRM> SETS PAYOUT Qtly div six cts vs six cts prior\n    Pay April 28\n    Record March 31\n Reuter\n&#3;',0
+'ROTTERDAM PORT UNION AND EMPLOYERS TO MEET Dutch port and transport union, FNV,\nagreed to an employers\' request to reconvene abandoned peace\ntalks tonight to try to end strikes that have disrupted\nRotterdam\'s general cargo sector for the past six weeks, a\nunion spokesman said.\n    Talks broke down Thursday when the union walked out after\nemployers tabled their final offer to end the strikes which\nstarted January 19 in protest at planned redundancies of 800\nfrom the sector\'s 4 [...]
+'FED SETS 1.5 BILLION DLR CUSTOMER REPURCHASE, FED SAYS\n ',0
+'JIM WALTER CORP &lt;JWC> SETS PAYOUT Qtly div 35 cts vs 35 cts prior\n    Pay April One\n    Record March 14\n Reuter\n&#3;',0
+'FED ADDS RESERVES VIA CUSTOMER REPURCHASES The Federal Reserve entered the U.S.\nGovernment securities market to arrange 1.5 billion dlrs of\ncustomer repurchase agreements, a Fed spokesman said.\n    Dealers said Federal funds were trading at 6-3/16 pct when\nthe Fed began its temporary and indirect supply of reserves to\nthe banking system.\n Reuter\n&#3;',0
+'JAPAN\'S NTT FORECASTS PROFITS FALL IN 1987/88 &lt;Nippon Telegraph and Telephone Corp>\n(NTT) expects its profits to fall to 328 billion yen in the\nyear ending March 31, 1988 from a projected 348 billion this\nyear, the company said.\n    Total sales for the same period are expected to rise to\n5,506 billion yen from a projected 5,328 billion this year, NTT\nsaid in a business operations plan submitted to the Post and\nTelecommunications Ministry.\n    NTT said it plans to make capita [...]
+'EC COMMISSION GIVEN PLAN TO SAVE STEEL INDUSTRY European Community steelmakers\npresented the Executive Commission with a controversial plan\nfor the future of the industry which diplomats say it may be\nforced reluctantly to accept.\n    Under the plan steel output would remain subject to\nrestrictive quotas and imports would be firmly controlled for\nyears to come while steel firms undertook a massive\nslimming-down operation to adjust capacity to lower demand.\n    Industry Commissio [...]
+'DURO-TEST CORP &lt;DUR> 2ND QTR JAN 31 NET Shr 10 cts vs 14 cts\n    Net 531,896 vs 727,781\n    Revs 16.0 mln 16.8 mln\n    Six mths\n    Shr 30 cts vs 39 cts\n    Net 1,532,431 vs 2,000,732\n    Revs 32.7 mln vs 34.5 mln\n Reuter\n&#3;',0
+'&lt;FRANKLIN UTILITIES FUND> SETS PAYOUT Qtly div 14 cts vs 14 cts prior\n    Pay March 13\n    Record March Two\n Reuter\n&#3;',0
+'GELCO CORP &lt;GEL> 2ND QTR JAN 31 NET Shr 67 cts vs 23 cts\n    Net 5,220,000 vs 3,143,000\n    Revs 236.1 mln vs 256.2 mln\n    Avg shrs 7.8 mln vs 13.7 mln\n    Six Mths\n    Shr 85 cts vs 59 cs\n    Net 8,919,000 vs 8,158,000\n    Revs 483.8 mln vs 515.5 mln\n    Avg shrs 10.4 mln vs 13.7 mln\n    NOTE: Fiscal 1987 second quarter and first half earnings\ninclude a gain of 3.4 mln dlrs and exclude preferred dividend\nrequirements of five mln dlrs in the quarter and 5.6 mln dlrs\nin t [...]
+'INTERNCHANGE FINANCIAL SERVICES &lt;ISBJ> PAYOUT UP Qtly div 10 cts vs 8-1/3 cts prior\n    Pay April 21\n    Record March 20\n    NOTE: Interchange Financial Services Corp.\n Reuter\n&#3;',0
+'KAPOK CORP &lt;KPK> IN TECHNICAL DEFAULT Kapok Corp said it is in\ntechical default of its loans from Southeast Banking Corp &lt;STB>\nand Murray Steinfeld but is negotiating with the lenders.\n    It said neither has declared the loans due.\n    The company said it has agreed to sell the Peter Pan\nRestaurant in Urbana, Md., for 1,100,000 dlrs, or one mln dlrs\nafter the payment of expenses.\n Reuter\n&#3;',0
+'NEWPORT CORP &lt;NESP> 2ND QTR JAN 31 NET Shr 11 cts vs 13 cts\n    Net 1,037,690 vs 1,270,460\n    Sales 10.1 mln vs 9,215,836\n    Six Mths\n    Shr 25 cts vs 31 cts\n    Net 2,319,376 vs 2,930,507\n    Sales 21.2 mln vs 18.9 mln\n Reuter\n&#3;',0
+'KAPOK CORP &lt;KPK> 1ST QTR DEC 31 LOSS Shr loss 14 cts vs loss 21 cts\n    Net loss 353,000 vs loss 541,000\n    Revs 2,668,000 vs 2,525,000\n    Avg shrs 2,452,3000 vs 2,552,300\n Reuter\n&#3;',0
+'PREFERRED HEALTHCARE LTD &lt;PHCC> 4TH QTR NET Shr six cts vs four cts\n    Net 383,189 vs 241,857\n    Revs 1,506,756 vs 793,459\n    12 mths\n    Shr 24 cts vs 15 cts\n    Net 1,520,797 vs 929,017\n    Revs 5,268,486 vs 2,617,995\n Reuter\n&#3;',0
+'TRANZONIC COS &lt;TNZ> SETS QUARTERLY Qtly div 11 cts vs 11 cts prior\n    Pay April 17\n    Record March 20\n Reuter\n&#3;',0
+'CRONUS INDUSTRIES INC &lt;CRNS> 4TH QTR LOSS Oper Shr loss 40 cts vs loss 10 cts\n    Oper net loss 2,136,000 vs loss 467,000\n    Revs 21.9 mln vs 12.9 mln\n    12 mths\n    Oper shr loss 63 cts vs loss 30 cts\n    Oper net loss 3,499,000 vs loss 1,756,000\n    Revs 82.0 mln vs 54.5 mln\n    NOTE: Excludes income from discontinued operations of\n1,478,000 vs 952,000 for qtr, and 31.2 mln vs 6,500,000 for\nyear.\n    Excludes extraordinary charge of 2,503,000 for current qtr,\nand 4,744 [...]
+'MERCURY ENTERTAINMENT CORP &lt;MCRY> YEAR NOV 30 Shr loss four cts vs loss one ct\n    Net loss 413,021 vs loss 163,932\n    Revs 600,971 vs 665,800\n Reuter\n&#3;',0
+'BENGUET CORP &lt;BE> CALENDAR 1986 Net income 154.7 mln pesos vs 127.5 mln\n    Operating revenues 4.42 billion vs 3.3 billion\n    Operating profit 621.2 mln vs 203.4 mln\n    Earnings per share 4.80 vs 3.95\n    NOTE: Company statement said gold operations contributed 74\npct of consolidated earnings.\n Reuter\n&#3;',0
+'UNOCAL &lt;UCL> UNIT CUTS CRUDE OIL POSTED PRICES Unocal Corp\'s Union Oil Co said it\nlowered its posted prices for crude oil one to 1.50 dlrs a\nbarrel in the eastern region of the U.S., effective Feb 26.\n    Union said a 1.50 dlrs cut brings its posted price for the\nU.S. benchmark grade, West Texas Intermediate, to 16 dlrs.\nLouisiana Sweet also was lowered 1.50 dlrs to 16.35 dlrs, the\ncompany said.\n    No changes were made in Union\'s posted prices for West\nCoast grades of crud [...]
+'PANHANDLE\'S &lt;PEL> TRUNKLINE REDUCES GAS RATES Panhandle Eastern Corp\'s Trunkline Gas\nCo pipeline subsidiary said it is reducing the commodity\ncomponent of its wholesale natural gas rate four pct, effective\nimmediately.\n    In a filing with the Federal Energy Regulatory Commission,\nTrunkline said, it is reducing its commodity rate -- the\nportion of the total rate based on the price of gas -- to 2.58\ndlrs per mln Btu from 2.69 dlrs per mln Btu.\n    The company said the lower  [...]
+'INVESTOR GROUP HAS TALKS WITH PESCH ON AMI &lt;AMI> WEDGE Group Inc, a Houston investment\nfirm with a 5.5 pct stake in American Medical International\nInc, said it has had talks with Pesch and Co, which is seeking\ncontrol of the company.\n    In a filing with the Securities and Exchange Commission,\nWEDGE, which is owned by Issam Fares, a Lebanese citizen living\nin Switzerland, also said it discussed the possibility of\njoining with others in its own bid to seek control of AMI.\n     [...]
+'I.M.S. INTERNATIONAL INC &lt;IMSI> SETS QUARTERLY Qtly div four cts vs four cts prior\n    Pay March 27\n    Record March 13\n Reuter\n&#3;',0
+'BANNER &lt;BNR> COMPLETES TENDER FOR REXNORD &lt;REX> Banner Industries Inc said 19.8 mln of\nthe outstanding 20 mln shares in Rexnord Inc were tendered\npursuant to its 26.25 dlr a share offer that closed at midnight\nEST Feb 27.\n    Together with the five mln Rexnard shares it already owns,\nthe company said it now holds a 97 pct stake in the company.\n    It said the completion of the deal is subject to approval\nby Rexnard holders and to other closing conditions. It expects\nthe de [...]
+'MUTUAL OF OMAHA INTEREST SHARES &lt;MUO> QTLY DIV Qtly div 36 cts vs 36 cts prior\n    Pay April one\n    Record March 13\n Reuter\n&#3;',0
+'CORRECTED - BANKAMERICA NEGOTIATING UNITS SALE Bank of America NT and SA\'s &lt;BAC.N>\nWest German branch said it is negotiating the sale of Bankhaus\nCentrale Credit AG, a small local West German bank it acquired\nin 1965, and of its West German Visa credit card operation.\n    Michael Seibel, Bank of America vice-president and regional\nmanager, said the negotiations were proceeding well. He\ndeclined to give further details.\n    Bank of America\'s West German branch lost some 32 ml [...]
+'OSR &lt;OSRC> TO MAKE ACQUISITION OSR Corp said it has agreed\nto acquire the properties and assets of Telcom International\nGroup for 10.5 mln common shares, which would give former\nTelcom owners an 84 pct interest in the combined company.\n    Telcom is an international film and television distributor.\n The assets being acquired consist mostly of distribution\nrights to films valued at over one mln dlrs, the company said.\n    OSR said as part of the acquisition agreement is is\nreq [...]
+'MERCURY ENTERTAINMENT &lt;MCRY> SEES BETTER RESULTS Mercury Entertainment Corp said it\nexpects improved results in 1987.\n    The company today reported a loss for the year ended\nNovember 30 of 413,021 dlrs on revenues of 600,971 dlrs,\ncompared with a loss of 163,932 dlrs on revenues of 665,800\ndlrs a year before.\n Reuter\n&#3;',0
+'CRONUS INDUSTRIES INC &lt;CRNS> SELLS UNIT Cronus Industries Inc said it agreed to\nsell its heat transfer equipment business, Southwestern\nEngineering Co, for a slight premium over book value, plus a\nrelease of Cronus from liability on approximately three mln\ndlrs of subsidiary indebtedness.\n    The company said the sale to a subsidiary of Senior\nEngineering Group PLC, a British company, will take place this\nmonth.\n Reuter\n&#3;',0
+'UNISYS CORP &lt;UIS> SETS QUARTERLY Qtly div 65 cts vs 65 cts prior\n    Pay May Seven\n    Record April Seven\n Reuter\n&#3;',0
+'JACOBSON &lt;JCBS> VOTES SPLIT, INCREASES PAYOUT Jacobson Stores Inc said its\nboard voted a three-for-two stock split, payble March 30,\nrecord March 13.\n    In other action, Jacobson\'s directors approved an increase\nin its quarterly dividend to 11 cts on a post split basis\npayable April 14, record March 30.\n    The new dividend rate represents a 32 pct increase over the\n12-1/2 cts paid quarterly on a pre-split basis.\n Reuter\n&#3;',0
+'HARLEY-DAVIDSON INC &lt;HDI> 4TH QTR NET Oper shr 18 cts vs 51 cts\n    Oper net 1,048,000 vs 1,870,000\n    Revs 72.2 mln vs 73.5 mln\n    Avg shrs 5,910,000 vs 3,680,000\n    Year\n    Oper shr 82 cts vs 72 cts\n    Oper net 4,307,000 vs 2,637,000\n    Revs 295.3 mln vs 287.5 mln\n    Avg shrs 5,235,000 vs 3,680,000\n    NOTE: Results exclude one-time gains of 223,000 or four cts\nand 564,000 or 11 cts for 1986 qtr and year vs gains of\n6,359,000 or 1.73 dlrs and 7,318,000 or 1.99 dlr [...]
+'&lt;HOECHST AG> COMPLETES CELANESE &lt;CZ> ACQUISITION Hoechst AG of West Germany said\nit has completed the acquisition of Celanese Corp.\n    Hoechst acquired a majority of Celanese shares in a recent\ntender offer at 245 dlrs per common share.\n Reuter\n&#3;',0
+'AMERICUS TRUST &lt;HPU> EXTENDS DEADLINE Americus Trust for American Home\nProducts Shares said it extended its deadline for accepting\ntendered shares until November 26, an extension of nine months.\n    The trust, which will accept up to 7.5 mln shares of\nAmerican Home Products &lt;AHP>, said it has already received\ntenders for about four mln shares.\n    The trust is managed by Alex. Brown and Sons Inc &lt;ABSB> and\nwas formed November 26, 1986.\n Reuter\n&#3;',0
+'MORSE SHOE INC &lt;MRS> 4TH QTR NET Shr 59 cts vs 48 cts\n    Net 3,244,000 vs 2,584,000\n    Revs 169.3 mln vs 156.0 mln\n    12 mths\n    Shr 1.78 dlrs vs 1.32 dlrs\n    Net 9,733,000 vs 7,164,000\n    Revs 585.6 mln vs 541.0\n Reuter\n&#3;',0
+'ICO QUOTA TALKS CONTINUE, OUTCOME HARD TO GAUGE Talks at the extended special meeting of\nthe International Coffee Organization (ICO) on the\nreintroduction of export quotas continued, but chances of\nsuccess were still almost impossible to gauge, delegates said.\n    Producer delegates were meeting to examine a Colombian\nproposal to resume historical quotas from April 1 to September,\nwith a promise to define specific new criteria by which a new\nquota system would be calculated in Se [...]
+'VERSATILE TO BUILD POLAR ICE BREAKER Versatile Corp\'s shipbuilding subsidiary\nhas a letter of intent to build a 320 mln dlr polar icebreaker\nfor the Canadian coast guard, Transport Minister John Crosbie\nsaid.\n    In a Vancouver address, Crosbie said Versatile Pacific\nShipyards Inc was the low bidder to build the Arctic Class 8\nicebreaker, but the company must meet certain financial and\nengineering conditions before the contract is awarded.\n    The government also announced it w [...]
+'&lt;PANTRY INC> INB TALKS ON BEING ACQUIRED Privately-held Pantry Inc, which\noperates 477 convenience stores in five Southeastern states,\nsaid it has engaged Alex. Brown and Sons Inc &lt;ABSB> to explore\na possbile sale of the company.\n    It said it expects to start talks with prospective\nacquirers shortly. The company said it has been approached by a\nnumber of parties in recent months.\n Reuter\n&#3;',0
+'CONGRESS VIDEO GROUP INC &lt;CVGI> 3RD QTR NET Qtr ends Dec 31\n    Shr profit three cts vs loss three cts\n    Net profit 129,000 vs loss 85,000\n    Revs 4,001,000 vs 4,347,000\n    Avg shrs 3,994,347 vs 3,769,347\n    Nine mths\n    Shr loss 75 cts vs profit 39 cts\n    Net loss 2,900,000 vs profit 1,753,000\n    Revs 7,472,000 vs 15.3 mln\n    Avg shrs 3,845,438 vs 4,470,275\n    NOTE: net 1986 includes tax gain carryforward from\ndiscontinued operations of Master\'s Merchandise Gro [...]
+'&lt;RENOUF CORP> TO PROCEED WITH BENEQUITY &lt;BH> BID Renouf Corp of New Zealand said it\nhas decided to proceed with its offer for all outstanding units\nof Benequity Holdings at 31 dlrs per unit.\n    The company had been required to redice by March Two\nwhether to proceed with the offer or terminate it, based on its\nability to obtain financing and on its review of Benequity\noperations.  The offer is to expire March 13.\n Reuter\n&#3;',0
+'CUBA TELLS TRADERS SUGAR EXPORTS MAY BE DELAYED Cuba has told international sugar\noperators who have bought its sugar for shipment in March that\nthese contracts will take second place to Cuba\'s direct\nshipments to its export markets, dealers here said.\n    Some traders who have received telexes from Cuba said the\nlanguage of the message was not totally clear and some believed\nshipments would be honoured if the traders declare the Soviet\nUnion as the destination of their contract [...]
+'GOODRICH &lt;GR> TO PHASE OUT SOME BUSINESSES B.F. Goodrich Co said it will phase\nout the production of aircraft tires, missile and marine\nproducts and molded rubber products in Akron, Ohio, by the end\nof 1987, laying off about 790 salaried, production, maintenance\nand support services employees.\n    The company said layoffs will start within the next few\nweeks.\n    Goodrich said it will continue to make chemicals and\nadhesives in Akron, employing about 356.  Another 5000 salari [...]
+'THUNANDER CORP &lt;THDR> YEAR NET Shr 73 cts vs 58 cts\n    Net 1,101,000 vs 901,000\n    Sales 32.9 mln vs 29.1 mln\n    Note: Results include operations of BMD of New England Inc,\nacquired Sept. 1, 1986.\n Reuter\n&#3;',0
+'FINAL TRUST FOR THRIFT INSTITUTIONS PAYOUT SET &lt;Massachusetts Financial Services Co>\nsaid it has set the final income and capital gain distributions\nfor &lt;Trust for Thrift Institutions High Yield Series> of 1.069\ndlrs and 7.645 dlrs, respectively, payable today.\n Reuter\n&#3;',0
+'(RPT) U.S. SAYS TIN DISPOSALS WILL NOT AFFECT ACCORD U.S. tin disposals should have little\neffect on an agreement reached last weekend by tin producing\ncountries to limit group exports to 96,000 tonnes in the year\nstarted March 1, a government official said.\n    The agreement by the seven-member Association of Tin\nProducing Countries (ATPC) aimed to cut the world surplus and\nboost prices. Following the accord, ATPC Chairman Subroto\nappealed to the United States to restrict its ti [...]
+'ROSPATCH TO RESPOND TO DIAGNOSTIC BID\n ',0
+'FRANKLIN INSURED TAX-FREE SETS PAYOUT Mthly div 7.1 cts vs 7.1 cts prior\n    Pay March 31\n    Record March 16\n    NOTE: Franklin Insured Tax-Free Income Fund.\n Reuter\n&#3;',0
+'FRANKLIN MINNESOTA INSURED SETS PAYOUT Mthly div 6.6 cts vs 6.6 cts prior\n    Pay March 31\n    Record March 16\n    NOTE: Franklin Minneosta Insured Tax-Free Income Fund.\n Reuter\n&#3;',0
+'FRANKLIN MICHIGAN INSURED SETS PAYOUT Mthly div 6.9 cts vs 6.9 cts prior\n    Pay March 31\n    Record March 16\n    NOTE: Franklin Michigan Insured Tax-Free Income Fund.\n Reuter\n&#3;',0
+'FRANKLIN MASSACHUSETTS INSURED CUTS PAYOUT Mthly div 6.5 cts vs 6.8 cts prior\n    Pay March 31\n    Record March 16\n    NOTE: Franklin Massachusetts Insured Tax-Free Income Fund.\n Reuter\n&#3;',0
+'U.S. EXPORT INSPECTIONS, IN THOUS BUSHELS  SOYBEANS 20,349 WHEAT 14,070 CORN 21,989\n ',1
+'FRANKLIN CALIFORNIA TAX-FREE SETS PAYOUT Mthly div 6.5 cts vs 6.5 cts prior\n    Pay March 31\n    Record March 16\n    NOTE: Franklin California Insured Tax-Free Income Fund.\n Reuter\n&#3;',0
+'DIAGNOSTIC PRODUCTS &lt;DPCZ> SEES EARNINGS GROWTH Diagnostic Products Corp president and\nchief executive officer Sigi Ziering said he expects to\nmaintain the same compound average annal net income growth in\n1987 as the company has for the past five years.\n    \"We expect the same performance in net income over the next\nfive years as we have had in the past,\" Ziering said.\n    Over the past five years Ziering said the company has had\naverage compound net income growth of 32 pct  [...]
+'CURRENCIES COULD INFLUENCE BULLION AGAIN-MONTAGU Currency fluctuations may reassert their\ninfluence on the bullion market in the near future, bullion\nbankers Samuel Montagu and Co Ltd said in a market report.\n    But the firm said silver may lag behind gold in any\nreactions to movements on foreign exchanges.\n    \"OPEC\'s failure to address the recent decline in oil prices\nremains a worrying factor however, and on balance it appears\nthat the market should be approached cautiously [...]
+'DUNKIN\' DONUTS INC &lt;DUNK> 1ST QTR JAN 24 NET Shr 46 cts vs 42 cts\n    Net 3,418,000 vs 3,129,000\n    Revs 24.7 mln vs 26.2 mln\n Reuter\n&#3;',0
+'CCR VIDEO CORP &lt;CCCR> 1ST QTR NOV 30 NET Shr profit two cts vs loss 12 cts\n    Net profit 156,726 vs loss 776,000\n    Revs 1,157,883 vs 890,138\n Reuter\n&#3;',0
+'FRANKLIN PUERTO RICO TAX-FREE SETS PAYOUT Mthly div 7.1 cts vs 7.1 cts prior\n    Pay March 31\n    Record March 16\n    NOTE: Franklin Puerto Rico Tax-Free Income Fund.\n Reuter\n&#3;',0
+'FRANKLIN OHIO INSURED TAX-FREE SETS PAYOUT Mthly div 6.1 cts vs 6.1 cts prior\n    Pay March 31\n    Record March 16\n    NOTE: Franklin Ohio Insured Tax-Free Income Fund.\n Reuter\n&#3;',0
+'FRANKLIN HIGH-YIELD TAX-FREE SETS PAYOUT Mthly div 7.1 cts vs 7.1 cts prior\n    Pay March 31\n    Record March 16\n    NOTE: Franklin High-Yield Insured Tax-Free Income Fund.\n Reuter\n&#3;',0
+'CONVERGENT TECHNOLOGIES &lt;CVGT> TO BUY OAKLEAF Convergent Technologies Inc\nsaid it has reached an agreement in principle to buy Oakleaf\nCorp, which supplies finance, insurance and leasing computers\nto auto dealers.\n    The transaction will involve an exchange of Oakleaf stock\nfor cash and debt and is subject to a definitive agreement, the\ncompanys said. No other terms were disclosed.\n    Oakleaf had 1986 sales of about 26 mln dlrs.\n Reuter\n&#3;',0
+'NYMEX WILL EXPAND OFF-HOUR TRADING APRIL ONE The New York Mercantile Exchange set\nApril one for the debut of a new procedure in the energy\ncomplex that will increase the use of energy futures worldwide.\n     On April one, NYMEX will allow oil traders that do not\nhold a futures position to initiate, after the exchange closes,\na transaction that can subsequently be hedged in the futures\nmarket, according to an exchange spokeswoman.\n    \"This will change the way oil is transacted i [...]
+'ROSPATCH &lt;RPCH> TO RESPOND TO DIAGNOSTIC &lt;DRS> Rospatch Corp said it will\nhave a news release later in response to today\'s acquisition\nbid by Diagnostic Retrieval Systems Inc for 22 dlrs a share.\n    Rospatch earlier requested its stock be halted in over the\ncounter trading, last trade 24-1/8.\n    Diagnostic said its bid was for a total 53 mln dlrs through\na cash tender offer for all, but not less than 51 pct of\nRosptach outstanding common.\n    For its fourth-quarter ende [...]
+'GREEN TREE ACCEPTANCE INC &lt;GNT> SETS DIVIDEND Qtly dividend 12-1/2 cts vs 12-1/2 cts\n    Pay March 31\n    Record March 16\n Reuter\n&#3;',0
+'ARGENTINE OIL PRODUCTION DOWN IN JANUARY 1987 Argentine crude oil production was\ndown 10.8 pct in January 1987 to 12.32 mln barrels, from 13.81\nmln barrels in January 1986, Yacimientos Petroliferos Fiscales\nsaid.\n    January 1987 natural gas output totalled 1.15 billion cubic\nmetrers, 3.6 pct higher than 1.11 billion cubic metres produced\nin January 1986, Yacimientos Petroliferos Fiscales added.\n Reuter\n&#3;',0
+'ROSPATCH CORP REJECTS OFFER FROM DIAGNOSTIC RETRIEVAL SYSTEMS INC\n ',0
+'NORTH AMERICAN GROUP &lt;NAMG> BUYS GEORGIA FIRM North American Group Ltd\'s North\nAmerican Acquisition Corp said it has a definitive agreement to\nbuy 100 pct of Pioneer Business Group Inc of Atlanta.\n    Terms of the acquisition were not disclosed. Closing of the\nacquisition is scheduled for April.\n    North American Acquisition said the agreement is subject to\ndue diligence and a satisfactory review of Pioneer\'s operation.\nPioneer makes business forms.\n Reuter\n&#3;',0
+'TALKING POINT/VIACOM INTERNATIONAL &lt;VIA> A bidding war for Viacom International\nInc, one of the largest U.S. entertainment companies, pitted a\nmanagement group and other investors against National\nAmusements Inc, a closely held theater operator.\n    Both sides raised their bids over the weekend. A source\nclose to the management side insisted that timing was on his\nside. He said if outside directors approve the management\nproposal, a merger plan could be put to a vote of shareh [...]
+'UP-RIGHT INC &lt;UPRI> 4TH QTR OPER NET Oper shr five cts vs 29 cts\n    Oper net 151,000 vs 867,000\n    Revs 12.7 mln vs 14.1 mln\n    Year\n    Oper shr 87 cts vs 52 cts\n    Oper net 2,650,000 vs 1,565,000\n    Revs 54.7 mln vs 49.1 mln\n    Note: oper data does not include 4th qtr 1986 extraordinary\ncredit of 14,000 dlrs or 4th qtr 1985 extraordinary loss of\n139,000 dlrs, or five cts per shr. For year, does not include\nextraordinary credit of 92,000 dlrs, or three cts per shr, i [...]
+'TALKS SHOW NEW CANADIAN CONFIDENCE, GROUP SAYS Canada\'s decision to raise the issue\nof a free trade pact with the U.S. was a sign of what many see\nas a new spirit of Canadian self-confidence, a public policy\nstudy group said \n    \"It suggests the Canada of the immediate post-war period,\nwhen it was a major player in the process of building a postwar\nworld,\" the Washington-based Atlantic Council said.\n    U.S. and Canadian negotiators opened talks last summer\naimed at dismantl [...]
+'ALBERTSON\'S INC &lt;ABS> RAISES QTLY DIVIDEND Shr 24 cts vs 21 cts\n    Pay May 25\n    Record May eight\n Reuter\n&#3;',0
+'WAVEHILL INTERNATIONAL TO MAKE ACQUISITION &lt;Wavehill International Ventures Inc>\nsaid it has agreed to acquire Personal Computer Rental Corp of\nCoral Gables, Fla., in a transaction in which shareholders of\nPersonal Computer will receive shares respresenting about a 25\npct interest in the combined company.\n    The company said it will have about two mln shares\noutstanding on a fully-diluted basis after the transaction. It\nsaid after the acquisition it will infuse Perconal compu [...]
+'SECURITY PACIFIC &lt;SPC> COMPLETES MERGER Security Pacific Corp said it\ncompleted its planned merger with Diablo Bank following the\napproval of the comptroller of the currency.\n    Security Pacific announced its intention to merge with\nDiablo Bank, headquartered in Danville, Calif., in September\n1986 as part of its plan to expand its retail network in\nNorthern California.\n    Diablo has a bank offices in Danville, San Ramon and Alamo,\nCalif., Security Pacific also said.\n Reute [...]
+'U.S. INTEC INC &lt;INTK> 4TH QTR NET Shr six cts vs five cts\n    Net 188,000 vs 130,000\n    Revs 12.2 mln vs 10.1 mln\n    Avg shrs 3,029,930 vs 2,764,544\n    12 mths\n    Shr 81 cts vs 1.45 dlrs\n    Net 2,463,000 vs 3,718,000\n    Revs 52.4 mln vs 47.5 mln\n    Avg shrs 3,029,930 vs 2,566,680\n    NOTE: net for 1985 includes 500,000, or 20 cts per share,\nfor proceeds of a life insurance policy.\n    includes tax benefit for prior qtr of approximately 150,000\nof which 140,000 rela [...]
+'ICI &lt;ICI> SEEKS GAINS IN SPECIALTY BUSINESSES Imperial Chemical Industries PLC, the\nlargest chemical company in the United Kingdom, will expand its\nspecialty chemicals and drug businesses this year, and better\nits 1986 results, said chairman-elect Denys Henderson.\n    \"We expect to shift our company toward higher value-added\nbusinesses and continue to broaden our base,\" Henderson told\nreporters at an informal meeting here.\n    ICI today announced the formation of a new U.S.\ [...]
+'INT\'L HYDRON CORP &lt;HYD> 4TH QTR OPER NET Oper shr profit six cts vs loss 20 cts\n    Oper net profit 734,000 vs loss 2,312,000\n    Revs 16.8 mln vs 13.9 mln\n    Year\n    Oper shr profit 30 cts vs profit three cts\n    Oper net profit 3,342,0000 vs profit 318,000\n    Revs 67.5 mln vs 52.6 mln\n    NOTE: Excludes loss of 41,000 dlrs or nil vs gain 7,000\ndlrs or nil in qtr and gain 247,000 dlrs or two cts vs gain\n88,000 dlrs or one ct in year from net operating loss\ncarryforward [...]
+'ALBERTSON\'S &lt;ABS> ADOPTS STOCKHOLDER RIGHTS PLAN Albertson\'s Inc said its board has\nadopted a stockholder rights plan intended to protect them in\nthe event of any proposed takeover of the company.\n    Under the plan, stockholders will receive a dividend\ndistribution of one right for each share of common stock held\non March 23.\n    The rights are exercisable ten days after a person or group\nacquires 20 pct or more of Alberston\'s common stock or\nannounces a tender offer for  [...]
+'ROSPATCH &lt;RPCH> REJECTS DIAGNOSTIC &lt;DRS> BID Rospatch Corp said it\nrejected a proposal by Diagnostic Retrieval Systems Inc to\nacquire its stock at 22 dlrs a share.\n    Rospatch\'s board believes that the long term interests of\nits shareholders will be best served by continuing as an\nindependent public company at this time, the company said in\nresponse to an unsolicited offer from Diagnostic Retrieval.\n    Rospatch said Diagnostic\'s offer of February 27 is a\nvariation of a [...]
+'SYNTECH INTERENATIONAL INC &lt;SYNE> 4TH QTR NET Shr profit six cts vs loss 4.51 dlrs\n    Net profit 815,167 vs loss 12,955,562\n    Revs 7,981,022 vs 2,954,488\n    Year\n    Shr profit 16 cts vs loss 7.22 dlrs\n    Net profit 2,446,100 vs loss 19,175,931\n    Revs 23.6 mln vs 14.6 mln\n Reuter\n&#3;',0
+'INT\'L MINERALS &lt;IGL> BUYS ANIMAL PRODUCTS UNIT International Minerals and\nChemical Corp said it completed its acquisition of Johnson and\nJohnson Co\'s Pitman-Moore unit, a producer of animal health\nproducts.\n    Terms of the acquisition were not disclosed. International\nMinerals and Chemical said annual sales of the unit are about\n45 mln dlrs.\n    Pitman-Moore makes health products for pets and for farm\nand feedstock animals.\n Reuter\n&#3;',0
+'JWT &lt;JWT> NOT APPROACHED BY GROUP SEEKING SHARES JWT Group Inc has not been approached\nby former Ted Bates Worldwide Chairman Robert Jacoby about the\npossibility of a syndicate buying a 35 pct stake in JWT Group\non a friendly basis, a company spokesman said.\n    He said JWT would have no comment on an Advertising Age\nreport that Jacoby is considering heading up a venture capital\nsyndicate to purchase a 35 pct stake in JWT group.\n    Jacoby was not immediately available for com [...]
+'COEUR D\'ALENE MINES CORP &lt;COUR> 4TH QTR LOSS Shr loss 18 cts vs loss one ct\n    Net loss 1,343,000 vs loss 49,000\n    Revs 6,778,000 vs 1,976,000\n    Year\n    Shr loss 67 cts vs loss ten cts\n    Net loss 4,693,000 vs loss 672,000\n    Revs 14.0 mln vs 7,034,000\n    Note: 1986 loss included one-time loss of 3,624,000 dlrs on\nwrite-off of certain silver, oil and gas interests.\n Reuter\n&#3;',0
+'FOOTE MINERAL &lt;FTE> SELLS CAMBRIDGE PLANT Foote Mineral Co said it signed a\nletter of intent with Shieldalloy Corp, a wholly-owned\nsubsidiary of &lt;Metallurg Inc>, for the sale of its Cambridge,\nOhio, business.\n    The company said the sale, which will be explained in\ngreater detail after the definitive agreement has been signed,\nis part of Foote\'s previously-announced plan to sell the entire\ncompany.\n\n Reuter\n&#3;',0
+'U.S. WHEAT GROUPS CALL FOR GLOBAL ACTION All major grain producing countries\nmust do their part to help reduce global surpluses and the\nrecent Australian farm policy proposals are flawed, two U.S.\nwheat organizations said.\n    The recent Australian proposals were a good starting point\nfor discussions, \"but we do not want the Australians to feel\nthey are alone in developing an agenda for discussions\" on world\ngrain trade, the president of the National Association of Wheat\nGrowe [...]
+'GELCO &lt;GEL> SEES FLAT 1987 PRETAX OPERATING NET Gelco Corp said that,\nexcluding the effects of a restructuring plan, it expects\npre-tax operating earnings for the year to end July 31, 1987,\nto be about the same as those of last year.\n    For the year ended July 31, 1986, Gelco reported pre-tax\noperating earnings of 14.8 mln dlrs, or 1.08 dlrs a share.\n    However, final results will be affected by certain charges\nincluding legal and investment advisors fees, preferred stock\nd [...]
+'UTILICORP &lt;UCU> ACQUIRES DOMINION &lt;D> SUBSIDIARY UtiliCorp United Inc said it\nhas closed the previously announced acquisition of West\nVirginia Power from Dominion Resources Inc for about 21 mln\ndlrs.\n Reuter\n&#3;',0
+'PESCH SEES SHAREHOLDER SUPPORT IN AMI &lt;AMI> BID Chicago physician LeRoy Pesch said he\nhas had discussions with several American Medical International\nInc shareholders and sees support for a restructuring of the\ncompany.\n    Pesch said he has discussed his sweetened, 1.91 billion dlr\ntakeover bid for American Medical with several large\nshareholders, including the biggest investor, the Bass family\nof Texas. However, the Bass family has not indicated support\none way or the other [...]
+'SENIOR DELEGATES PESSIMISTIC ON ICO TALKS Efforts to break an impasse between\ncoffee exporting and importing countries over regulating the\nworld coffee market in the face of falling prices appear to\nhave failed, senior delegates said after a contact group\nmeeting. The full ICO council is due to meet this evening.\n    President of the Brazilian Coffee Institute (IBC) Jorio\nDauster told Reuters after the contact group meeting there had\nbeen no agreement on quotas as consumers had t [...]
+'GLAMIS GOLD LTD &lt;GLGVF> SIX MTHS DEC 31 NET Shr 16 cts vs 22 cts\n    Net 1,226,597 vs 1,327,016\n    Revs 6,598,580 vs 5,921,828\n Reuter\n&#3;',0
+'U.S. APPROVES BUYOUT OF COASTAL BANCORP &lt;CSBK> Coastal Bancorp said the U.S.\nFederal Reserve Board approved the acquisition of Coastal by\nSuffield Financial Corp &lt;SSBK>.\n    The acquisition still requires approval from the Banking\nDepartment in Maine, the company noted.\n Reuter\n&#3;',0
+'LITTLE PRINCE PRODUCTIONS LTD&lt;LTLP>1ST QTR LOSS Qtr ended Dec 31\n    Shr profit nil vs loss nil\n    Net profit 858 vs loss 3,957\n    Revs 7,372 vs 1,500\n Reuter\n&#3;',0
+'AMCA &lt;AIL> TO SELL SOME DOMINION BRIDGE ASSETS AMCA International Ltd said it finalized\nagreement to sell certain assets and inventories of its\nDominion Bridge steel service center operations to &lt;Federal\nIndustries Ltd>\'s Russelsteel Inc unit. Terms were undisclosed.\n    It said the sale involved assets and operations of the\ngeneral line of steel service centers in Toronto and Edmonton,\nAlberta and steel from inventories of closed AMCA branches.\n    The company said the sa [...]
+'SCOTT\'S HOSPITALITY ACQUIRES CAPITAL FOOD &lt;Scott\'s Hospitality Inc> said it\nacquired Capital Food Services Ltd, Ottawa\'s largest catering\nand food service company, for undisclosed terms.\n    Scott\'s said it would operate Capital Food as a separate\nunit under Capital\'s current name and management.\n Reuter\n&#3;',0
+'UNION NATIONAL &lt;UNBC> SIGNS DEFINITIVE PACT Union National Corp said it\nsigned a definitive agreement under which its First National\nBank and Trust Co of Washington unit will merge with &lt;Second\nNational Bank of Masontown>.\n    Under a previously announced merger agreement, each share\nof Second National\'s common stock will be converted into 25\nshares of Union National common.\n Reuter\n&#3;',0
+'ANALYSTS SEE NO OTHER BIDDER FOR PUROLATOR&lt;PCC> Several analysts said they do not\nbelieve another suitor will top the 265 mln dlr bid for\nPurolator Courier Corp by E.F. Hutton LBO Inc and a management\ngroup from Purolator\'s courier division.\n    There had been speculation another offer might be\nforthcoming, but analysts mostly believe the 35 dlrs per share\nprice being paid by Hutton and the managers\' PC Acquisition Inc\nis fully valued.\n    Analysts and some Wall Street sour [...]
+'WHITEHALL CORP &lt;WHT> 4TH QTR NET Shr 15 cts vs 55 cts\n    Net 557,000 vs 2,020,000\n    Revs 8,872,000 vs 13,908,000\n    Year\n    Shr 60 cts vs 2.52 dlrs\n    Net 2,198,000 vs 9,313,000\n    Revs 36.9 mln vs 55.7 mln\n Reuter\n&#3;',0
+'SERVICE CORP INTERNATIONAL &lt;SRV> 3RD QTR NET Qtr ended Jan 31\n    Shr 33 cts vs 29 cts\n    Net 14.8 mln vs 11 mln\n    Revs 108.6 mln vs 70.0 mln\n    Avg shrs 45.2 mln vs 37.6 mln\n    Nine mths\n    Shr 88 cts vs 76 cts\n    Net 36.7 mln vs 28.7 mln\n    Revs 260.4 mln vs 193.0 mln\n    Avg shrs 41.9 mln vs 37.8 mln\n    Note: Net for nine mths includes gains from dispositions of\n1,783,000 dlrs or four cts a share vs 900,000 dlrs or two cts a\nshare.\n    Avg shrs and shr data r [...]
+'PEOPLES BANCORPORATION &lt;PEOP> QUARTERLY DIVIDEND Qtly div 25 cts vs 25 cts\n    Pay April 24\n    Record March 31\n Reuter\n&#3;',0
+'CPL REIT &lt;CNTRS> 4TH QTR NET Shr 24 cts\n    Net 412,737\n    Revs 605,321\n    Year\n    Shr 93 cts\n    Net 1,577,892\n    Revs 2,345,261\n    NOTE: Full name CPL Real Estate Investment Trust.\n    Company was formed Dec 30, 1985.\n Reuter\n&#3;',0
+'REPUBLIC AUTOMOTIVE PARTS &lt;RAUT> 4TH QTR LOSS Shr loss 85 cts vs loss 88 cts\n    Net loss 2,410,000 vs loss 2,466,0000\n    Revs 24.0 mln vs 23.9 mln\n    Year\n    Shr loss 1.18 dlrs vs loss 81 cts\n    Net loss 3,338,000 vs loss 2,275,000\n    Revs 101.4 mln vs 112.3 mln\n Reuter\n&#3;',0
+'REALMERICA CO &lt;RACO> YEAR NOV 30 NET Shr profit four cts vs loss 16 cts\n    Net profit 155,383 vs loss 577,336\n    Note: Net includes tax credit of 51,226 dlrs or one ct per\nshare.\n Reuter\n&#3;',0
+'S-K-I LTD &lt;SKII> 2ND QTR JAN 25 NET Shr 81 cts vs 57 cts\n    Net 3,660,273 vs 2,437,914\n    Revs 28.5 mln vs 23.1 mln\n    Six mths\n    Shr 29 cts vs 12 cts\n    Net 1,325,755 vs 483,559\n    Revs 31.7 mln vs 26.4 mln\n Reuter\n&#3;',0
+'FERRO CORP &lt;FOE> SETS JOINT VENTURE Ferro Corp said it has formed a\njoint venture with Paris-based Alsthom Inudstrial Group to\nexport U.S. epxertise in specialty composite materials to the\nEuropean market.\n    Ferro said although the airframe and aerospace industries\nare the prime users of composite materials today, it plans to\ndevelop applications for the ground transportation and\nindustrial markets in the near future.\n    Ferro also announced it has agreed to purchase Compo [...]
+'NYMEX RULE CHANGE SEEN BOOSTING ENERGY TRADE The New York Mercantile Exchange said\nit will introduce exchanges for physicals (EFPS) to its energy\nfutures markets April one.\n    An exchange spokeswoman said the change will allow oil\ntraders that do not hold a futures position to initiate, after\nthe exchange closes, a transaction that can subsequently be\nhedged in the futures market.\n    EFPs, already in effect for platinum futures on NYMEX, are\nexpected to increase the open inter [...]
+'U.S. REFINERY COPPER STOCKS FALL IN JANUARY Refined copper stocks held by U.S.\nrefineries fell to 109,200 short tons at the end of January\nfrom 145,400 short tons at the end of December, the American\nBureau of Metal Statistics reported.\n    Commodity Exchange (Comex) copper stocks climbed to 103,000\ntons in January from 93,300 tons in December. Combined refinery\nand Comex stocks eased to 212,200 tons in January\nfrom 238,700 tons in December.\n    U.S. refined production declined  [...]
+'CCL UNIT ACQUIRES NESTLE CANADA CAN OPERATIONS &lt;CCL Industries Inc>\'s Continental Can\nCanada Inc unit said it acquired the Wallaceburg, Ontario,\nmetal can making operations of Nestle Enterprises Ltd, wholly\nowned by &lt;Nestle SA>, of Switzerland. Terms were undisclosed.\n    Continental Can said it would supply Nestle\'s equivalent\ncan requirements under a long-term agreement.\n    Nestle said it decided to stop manufacturing cans \"in order\nto be in a better position to take  [...]
+'AMERICAN PORK CONGRESS KICKS OFF TOMORROW The American Pork Congress kicks off\ntomorrow, March 3, in Indianapolis with 160 of the nations pork\nproducers from 44 member states determining industry positions\non a number of issues, according to the National Pork Producers\nCouncil, NPPC.\n    Delegates to the three day Congress will be considering 26\nresolutions concerning various issues, including the future\ndirection of farm policy and the tax law as it applies to the\nagriculture s [...]
+'COPPER STOCKS OUTSIDE U.S. INCREASE IN DECEMBER Refined copper stocks held by\nrefineries outside the U.S. increased to a preliminary 277,500\nshort tons at the end of December from a preliminary 270,000\nshort tons (revised higher) at the end of November, the\nAmerican Bureau of Metal Statistics said.\n    London Metal Exchange stocks fell to 193,100 tons in\nDecember from 194,400 tons in November. Combined refinery and\nLME stocks rose to a preliminary 470,600 tons from 464,400 tons\n [...]
+'MFS MANAGED MUNCIPAL BOND TRUST SETS PAYOUT &lt;MFS Managed Muncipal Trust Bond>\nsaid it declared a monthly payout income distribution of 5.7\ncts a share compared with 5.6 cts for the previous month.\n    It said the distribution is payable March 20 to\nshareholders of record March two.\n Reuter\n&#3;',0
+'U.S. BRASS MILL COPPER STOCKS LOWER IN JANUARY U.S. brass mill copper stocks fell to\n185,400 short tons (copper content) at the end of January from\n191,200 short tons at the end of December, according to the\nAmerican Bureau of Metal Statistics.\n    Consumption by brass mills increased to 60,700 short tons\nin January from 48,900 short tons in December.\n    Mills consumed 29,600 tons of refinery shapes in January\nversus 24,000 tons in December. Scrap consumption increased to\n31,10 [...]
+'MFS MUNICIPAL INCOME TRUST &lt;MFM> SETS PAYOUT MFS Municipal Income Trust said it\ndeclared a monthly income distribution of 5.7 cts a share\ncompared with 5.5 cts a share paid in the previous month.\n    It said the distribution is payable March 27 to\nshareholders of record March 13.\n Reuter\n&#3;',0
+'PITTWAY CORP &lt;PRY> 4TH QTR NET Shr 1.35 dlrs vs two dlrs\n    Net 6,195,000 vs 9,202,000\n    Sales 157.5 mln vs 151.6 mln\n    Year\n    Shr 6.02 dlrs vs 6.78 dlrs\n    Net 27,608,000 vs 31,117,000\n    Sales 585.7 mln vs 541.3 mln\n Reuter\n&#3;',0
+'ARMTEK &lt;ARM> TO SELL INDUSTRIAL TIRE UNIT Armtek Corp, previously the\nArmstrong Rubber Co, said it agreed to sell its industrial tire\nand assembly division to a Dyneer Corp &lt;DYR> for an undisclosed\nsum.\n    It said the agreement covers the division\'s tire production\nfacility in Clinton, Tenn., and its plants serving original\nequipment and replacement markets. Armstrong Tire Co, an Armtek\nunit, will continue to sell replacement industrial tires, the\ncompany said.\n    Fina [...]
+'PETROLITE CORP &lt;PLIT> SETS PAYOUT Qtly dividend 28 cts vs 28 cts\n    Pay April 24\n    Record April 10\n Reuter\n&#3;',0
+'NYMEX TO SUBMIT PROPANE PROPOSAL TO CFTC The New York Mercantile Exchange expects\nto submit a propane futures contract for federal regulatory\napproval within a few days, according to an exchange\nspokeswoman.\n    As previously announced, the Board of Governors of the\nexchange approved the contract last month. The exchange will\nnow submit the contract to the Commodity Futures Trading\nCommission, according to the spokeswoman.\n    Contract specifications will resemble those of heati [...]
+'australian annual broad money supply growth 10.3 pct in January\n ',0
+'YEUTTER BLASTS PROPOSED EC OILS AND FATS TAX U.S. trade representative Clayton\nYeutter today said that if the European Community\'s Council of\nMinisters approves a tax on vegetable oils and fats, another\nmajor transatlantic trade row will erupt over agriculture.\n    In a statement issued by the trade representative\'s office\nfollowing a speech to the American Soybean Association\'s board\nof directors, Yeutter said the proposed tax would have a severe\nimpact on American soybean fa [...]
+'EXXON &lt;XON> CUTS HEATING OIL BARGE PRICE Oil traders in New York said Exxon\nCorp\'s Exxon U.S.A. unit reduced the price it charges contract\nbarge customers for heating oil in New York harbor 0.75 cent a\ngallon, effective today.\n    They said the reduction brings Exxon\'s contract barge price\nto 43.25 cts. The price decrease follows sharp declines in\nheating oil prices on spot and futures markets, traders said.\n Reuter\n&#3;',0
+'GREECE SAYS IT HAS RIGHT ON AEGEAN OIL DRILLING Greece, responding to a warning by Turkey\nagainst conducting oil activities in the Aegean Sea, said today\nit had the right to decide where and how to do research or\ndrilling work in the area.\n    A government spokesman said the Greek position was made\nclear to Turkey\'s ambassador Nazmi Akiman when he met Greek\nForeign Affairs Undersecretary Yannis Kapsis last week.\n    Acting Turkish Prime Minister Kaya Erdem said earlier today\nGr [...]
+'LEUCADIA &lt;LUK> HAS 7.2 PCT OF MINSTAR &lt;MNST> Leucadia National Corp said two of\nits subsidiaries have acquired a 7.2 pct stake in Minstar Inc,\na corporation controlled by corporate raider Irwin Jacobs and\nused by him in his forays to acquire stock in companies.\n    In a filing with the Securities and Exchange Commission,\nLeucadia said its LNC Investments Inc, a Newark, Del.,\ninvestment firm, and Charter National Life Insurance Co, a St.\nLouis joint stock life insurance comp [...]
+'BASIX CORP &lt;BAS> 4TH QTR LOSS Oper shr loss eight cts vs profit 20 cts\n    Oper net loss 768,000 vs profit 1,962,000\n    Revs 49.0 mln vs 43.6 mln\n    12 mths\n    Oper shr loss 1.41 dlrs vs profit 96 cts\n    Oper net loss 13.6 mln vs profit 9,305,000\n    Revs 175.3 mln vs 140.7 mln\n    Note: Oper excludes loss from discontinued operations of\n4,676,000 dlrs or 48 cts a share for year-ago qtr and 7,571,000\ndlrs or 78 cts a share for year-ago 12 mths.\n    Oper includes charge  [...]
+'AUSTRALIAN JANUARY ANNUAL BROAD MONEY UP 10.3 PCT Australia\'s broad money supply rose 10.3\npct in the year ended January, up from a revised 9.6 pct in\nDecember, the Reserve Bank said.\n    This compares with the previous January\'s 13.9 pct.\n    In January broad money growth slowed to 0.7 pct from\nDecember\'s 1.5 pct and compared with nil growth in January\n1986.\n    Within the broad money total, non-bank financial\nintermediaries rose by 0.2 pct from a revised decline of 0.2 \nin [...]
+'MICROBIO &lt;MRC> PLANS ACQUISITION, FINANCING Microbiological Research Corp\nsaid it entered into a letter of intent for a proposed business\ncombination with privately owned &lt;DataGene Scientific\nLaboratories Inc>, and &lt;Milex Corp> a newly formed company,\nthrough a stock swap.\n    It also said it received 100,000 dlrs from the sale of a\nconvertible note to Ventana Growth Fund as part of an overall\n1,100,000 equity financing plan with Ventana. Under that plan,\na minimum of 4 [...]
+'ICO COUNCIL ENDS IN FAILURE TO AGREE QUOTAS A special meeting of the International\nCoffee Organization (ICO) council failed to agree on how to set\ncoffee export quotas, ICO delegates said.\n    Producers and consumers could not find common ground on the\nissue of quota distribution in eight days of arduous, often\nheated talks, delegates said.\n    Export quotas -- the major device of the International\nCoffee Agreement to stabilise prices -- were suspended a year\nago after coffee pr [...]
+'FRANCE HAS LITTLE ROOM FOR MANOEUVRE, OECD SAYS French industry is failing to produce the\ngoods its markets need and its loss of competitiveness has left\nthe government little room for manoeuvre to reflate the\neconomy, the Organisation for Economic Cooperation and\nDevelopment said.\n    With gross domestic product likely to grow only 2.1 pct\nthis year, the same rate as last year, unemployment could climb\nto 11.5 pct of the workforce by mid-1988, from its present 10.9\npct, it said [...]
+'PAINEWEBBER&lt;PWJ> UNIT UPS SHAER SHOE &lt;SHS> STAKE Mitchell Hutchins Asset Management\nInc, a New York investment firm and subsidiary of PaineWebber\nGroup Inc, said it raised its voting stake in Shaer Shoe Corp\nto 76,000 shares, or 7.5 pct, from 52,100 shares, or 5.1 pct.\n    In a filing with the Securities and Exchange Commission,\nMitchell Hutchins said it bought 11,900 shares between Jan 8\nand Feb 24 at prices ranging from 12.125 to 12.75 dlrs a share\nand obtained voting con [...]
+'TELECREDIT INC &lt;TCRD> 3RD QTR JAN 31 NET Shr 32 cts vs 22 cts\n    Net 3,454,000 vs 2,224,000\n    Revs 33.2 mln vs 28.1 mln\n    Nine mths\n    Shr 64 cts vs 38 cts\n    Net 6,935,000 vs 3,877,000\n    Revs 86.8 mln vs 70.9 mln\n Reuter\n&#3;',0
+'LASER PRECISION CORP &lt;LASR> 4TH QTR NET Shr profit 14 cts vs profit two cts\n    Net profit 452,723 vs profit 50,581\n    Revs 5,065,543 vs 2,898,363\n    Year\n    Shr profit 45 cts vs loss 15 cts\n    Net profit 1,276,472 vs loss 340,081\n    Revs 16.0 mln vs 9,304,466\n Reuter\n&#3;',0
+'REXNORD &lt;REX> TO REDEEM RIGHTS Rexnord Inc said it will redeem\nall of its preferred stock purchase rights for 10 cts a right\neffective today.\n    Rexnord said the rights will be redeemed because it is\nexpected its shares will be tendered under a January 30\ntakeover offer from Banner Acquisition Corp. The rights trade\nin tandem with Rexnord\'s common stock.\n Reuter\n&#3;',0
+'CANTREX UNIT TO MERGE WITH ONTARIO GROUP (Groupe Cantrex Inc) said it plans to\nmerge a new wholly-owned subsidiary a merger agreement with\n(CAP Appliance Purchasers Inc), of Woodstock, Ontario, a group\nof about 400 appliance and electronics retailers.\n    It said CAP shareholders will receive 140,700 first\npreferred Groupe Cantrex shares entitling the holders to\nreceive 6.05 dlrs per share or the equivilant in class A\nsubordinate voting Cantrex shares.\n    The merger is effectiv [...]
+'INVESTMENT FIRM BOOSTS LDBRINKMAN &lt;DBC> STAKE Two affiliated investment firms and\nthe investment funds they control said they raised their\ncombined stake in LDBrinkman Corp to 653,600 shares, or 10.9\npct of the total outstanding from 585,600 shares, or 9.7 pct.\n    In a filing with the Securities and Exchange Commission,\nFidelity International Ltd, a Bermuda-based firm, said its\nfunds bought 68,000 LDBrinkman common shares between Jan 5 and\nFeb 19 at prices ranging from 5.30 t [...]
+'ITT\'S &lt;ITT> HARTFORD UNIT POSTS 4TH QTR GAIN Hartford Insurance Group, a unit\nof New York-based ITT Corp, said higher worldwide premiums help\nboost net income for the 1986 fourth quarter to 88.6 mln dlrs,\nfrom net income of 36.7 mln dlrs for the 1985 quarter.\n   For the full year, Hartford said it earned 329 mln dlrs, up\nfrom 151.4 mln dlrs in 1985.\n    Hartford said results for the year were aided by a gain of\n46.5 mln dlrs on the sale of its remaining 52 pct stake in\nAbbey [...]
+'SEC PROBES 1986 TRE &lt;TRE> TAKEOVER ATTEMPT The federal Securities and Exchange\nCommission (SEC) is looking for possible securities laws\nviolations in connection with an unsuccessful 1986 bid by\nHollywood producer Burt Sugarman to take over TRE Corp,\nattorneys contacted by SEC investigators said.\n    During the takeeover attempt, a unit of Sugarman\'s Giant\nGroup Ltd at one point held a 9.9 pct stake in TRE.\n    It had help in that effort from Jefferies Group Inc, a Los\nAngele [...]
+'CBT FEBRUARY VOLUME DOWN 14 PCT FROM YEAR AGO February volume at the Chicago Board of\nTrade, CBT, declined 14 pct from the year-ago month to\n8,191,266 contracts, the exchange said.\n    A relatively steady interest rate climate reduced volume in\nthe most active contract, Treasury bond futures, by 17.5 pct\nfrom a year ago to 4,307,645 contracts.\n    However, trading in most agricultural futures contracts\nincreased last month, led by oats and corn futures.\n    Oats volume tripled t [...]
+'USSR WHEAT BONUS RUMORS PERSIST DESPITE DENIALS Grain trade representatives continued\nto speculate that the Reagan administration will offer\nsubsidized wheat to the Soviet Union, while U.S. Agriculture\nDepartment officials said there was no substance to the\nreports.\n    \"It\'s pure fiction,\" said one senior official at USDA\'s\nForeign Agricultural Service, referring to the rumor that the\nadministration would make an export enhancement offer to Moscow\nin the next two to three w [...]
+'CANADIAN SEAFARERS THREATEN STRIKE Canadian seafarers are almost certain\nto go on strike this spring in a refusal to meet rollbacks in\nwages and benefits asked for by their employers, Seafarers\'\nInternational Union official Roman Gralewicz said.\n    \"It\'s 99.9 percent--I guarantee you a strike,\" Gralewicz\nsaid in an interview.\n    The union represents about 2,300 workers on the Great Lakes\nand Canada\'s East and West coasts. Contract talks broke off in\nJanuary and a concilia [...]
+'DALLAS CORP &lt;DLS> 4TH QTR LOSS Oper shr loss 22 cts vs profit 10 cts\n    Oper net loss 1,626,000 vs pofit 702,000\n    Revs 98.3 mln vs 105.1 mln\n    12 mths\n    Oper shr profit 18 cts vs profit 82 cts\n    Oper net profit 1,293,000 vs profit 5,940,000\n    Revs 396.2 mln vs 396.7 mln\n    Note: Oper net excludes loss from discontinued operations\nof 2,112,000 dlrs or 39 cts a share for year-ago qtr and\n2,036,000 dlrs or 1.10 dlrs a share for year-ago 12 mths.\n Reuter\n&#3;',0
+'DILLARD DEPARTMENT STORES INC &lt;DDS> 4TH QTR NET Qtr ended Jan 31\n    Shr 1.16 dlrs vs 1.15 dlrs\n    Net 32.4 mln vs 33.5 mln\n    Revs 629.0 mln vs 538.6 mln\n    Avg shrs 32.1 mln vs 29.2 mln\n    12 mths\n    Shr 2.35 dlrs vs 2.29 dlrs\n    Net 74.5 mln vs 66.9 mln\n    Revs 1.85 billion vs 1.60 billion\n    Avg shrs 31.7 mln vs 29.2 mln\n    Note: Shr/avg shrs data show 2-for-1 split in Nov. 1985.\n Reuter\n&#3;',0
+'KENTUCKY CENTRAL LIFE &lt;KENCA> SETS PAYOUT Kentucky Central Life Insurance\nCo said it declared a semi-annual dividend of 55 cts per share,\npayable March 31 to shareholders or record March 19.\n    The dividend is equal to the company\'s previous semi-annual\npayout.\n Reuter\n&#3;',0
+'BANK OF NEW ENGLAND CORP &lt;BKNE> QTLY DIVIDEND Qtly div 28 cts vs 28 cts prior\n    Pay April 20\n    Record March 31\n Reuter\n&#3;',0
+'JAPAN UNEMPLOYMNENT RISES TO RECORD IN JANUARY Japan\'s seasonally adjusted unemployment\nrate rose to a record 3.0 pct in January, the worst since the\nGovernment started compiling unemployment statistics under its\ncurrent system in 1953, up from the previous record 2.9 pct in\nDecember, the government\'s Management and Coordination Agency\nsaid.\n    Unemployment was up from 2.8 pct a year earlier.\n    Unadjusted January unemployment totalled 1.82 mln people,\nup from 1.61 mln in De [...]
+'FORD &lt;F> EUROPE EARNINGS UP 71 PCT LAST YEAR Ford Europe\'s net earnings soared by 71\nper cent last year to 559 mln dlrs, Kenneth Whipple, chairman\nof Ford Europe, said.\n    Whipple, here to attend the Geneva Auto Show which opens on\nThursday, said that the Ford Motor Co unit had sold a record\n1.5 million vehicles in Europe in 1986.\n    Net earnings were 326 mln dlrs in 1985.\n    Sales in 1986 represented 11.8 per cent of the European\nmarket share, Whipple said. Ford will inv [...]
+'SOUTH KOREA\'S LEADING INDICATORS FALL IN DECEMBER South Korea\'s index of leading indicators\nfell 0.1 pct to 164.1 (base 1980) in December after a 0.1 pct\nrise in November, representing a 16.1 pct year-on-year gain\nfrom December 1985, Economic Planning Board provisional figures\nshow.\n    The index is based on 10 indicators which include export\nvalues, letters of credit received, warehouse stocks, M-1 and\nM-3 money supply figures and the composite stock exchange\nindex.\n REUTER\ [...]
+'JAPANESE ECONOMIST SEES STABLE YEN/DOLLAR RATES The yen should stabilize at around\n152 to 153 to the U.S. Dollar for about a year, the Bank of\nTokyo\'s economic adviser Koei Narusawa said.\n    \"Both sides are showing clear interest to secure stability\nof the currencies. The major target of the Japanese government\nis to maintain the yen at above 150, at least for the rest of\nthe year,\" he told reporters during a brief visit to Malaysia.\n    Narusawa said the U.S. Is unlikely to  [...]
+'OPEC WITHIN OUTPUT CEILING, SUBROTO SAYS Opec remains within its agreed output\nceiling of 15.8 mln barrels a day, and had expected current\nfluctuations in the spot market of one or two dlrs, Indonesian\nEnergy Minister Subroto said.\n    He told reporters after meeting with President Suharto that\npresent weakness in the spot oil market was the result of\nwarmer weather in the U.S. And Europe which reduced demand for\noil.\n    Prices had also been forced down because refineries were\ [...]
+'OFFICIAL INQUIRY SET FOR AUSTRALIAN WHEAT INDUSTRY The government\'s industry aid and\nprotection review body, the Industries Assistance Commission\n(IAC), will hold a 12-month inquiry into the Australian wheat\nindustry, Primary Industry Minister John Kerin said.\n    The IAC has been asked to report on the need for assistance\nto the industry and the nature, duration and extent of any aid,\nhe said in a statement.\n    He said the inquiry will be the first step in setting\nmarketing a [...]
+'COFFEE TRADERS EXPECT SELLOFF AFTER ICO TALKS FAIL The failure of the International Coffee\nOrganization (ICO) to reach agreement on coffee export quotas\ncould trigger a massive selloff in London coffee futures of at\nleast 100 stg per tonne today, coffee trade sources said.\n    Prices could easily drop to as low as 1.00 dlr or even 80\ncents a lb this year from around 1.25 dlrs now, they said.\n    A special meeting between importing and exporting countries\nended in a deadlock late  [...]
+'CRA Ltd 1986 net profit 138.2 mln dlrs vs 87.8 mln\n ',0
+'N.Z. QUARTERLY CURRENT ACCOUNT DEFICIT NARROWS New Zealand\'s current account deficit\nfor the quarter ended December 31, 1986 narrowed to 567 mln\ndlrs from 738 mln, revised down from 742 mln, for the September\nquarter and from 733 mln a year earlier, the statistics\ndepartment said.\n    The deficit for the year ended December narrowed to 2.75\nbillion dlrs from 2.91 billion dlrs, revised down from 2.92\nbillion, for the year ended September. The deficit for calendar\n1985 was 2.61 b [...]
+'TRANSAMERICA SELLS OCCIDENTAL LIFE AUSTRALIA Equity investment company &lt;Battery\nGroup Ltd> said it had agreed to buy &lt;Occidental Life Insurance\nCo of Australia Ltd> from TransAmerica Corp &lt;TA> of the U.S.\nFor 105 mln Australian dlrs.\n    The acquisition has been made possible by the efforts of\nits major shareholder, &lt;Pratt and Co Financial Services Pty\nLtd>, Battery Group said in a statement.\n    The purchase will be partly funded by the issue of eight\nmln shares at  [...]
+'CRA LTD &lt;CRAA.S> 1986 NET Net 138.20 mln dlrs vs 87.80 mln.\n    Shr 24.8 cents vs 17.8\n    Final div to announced after July 1, vs final 10 cents\nmaking 15.\n    Sales revenue 4.81 billion vs 4.69 billion\n    Investment income 116.93 mln vs 60.61 mln\n    Shrs 494.35 mln vs 494.22 mln.\n    NOTE - Net is after tax 171.03 mln dlrs vs 188.52 mln,\ninterest 337.39 mln vs 308.68 mln, depreciation 352.32 mln vs\n333.05 mln but before net extraordinary loss 250.28 mln vs\nprofit 28.03  [...]
+'MALAYSIA RE-IMPOSES EXPORT DUTIES ON RUBBER The Malaysian government said it\nhas re-imposed export duties on rubber at 3/8 cent per kilo\nafter the gazetted price moved above the threshold price of 210\ncents per kilo.\n    The gazetted price, effective March 1, rose to 213-1/2\ncents per kilo from February\'s 207.\n    The duty for research remains at 3.85 cents per kilo and\nthe replanting duty is also unchanged at 9.92 cents.\n REUTER\n&#3;',0
+'MALAYSIA RAISES DUTY ON PROCESSED PALM OIL The government said it raised the\nexport duty on processed palm oil (PPO) to 64.06 ringgit per\ntonne from 40.96 ringgit, effective from March 1.\n    Export duty on crude palm oil (CPO) was unchanged at 16.06\nringgit per tonne.\n    The gazetted price of PPO rose to 796.8604 ringgit per\ntonne from 719.8286. That of CPO remained at 617.8238 ringgit.\n    The export duty and gazetted price of palm kernel were left\nunchanged at 191.15 and 955 [...]
+'comalco ltd 1986 net profit 57.1 mln dlrs vs loss 69.1 mln\n ',0
+'COMALCO LTD &lt;CMAC.S> 1986 NET Net profit 57.1 mln dlrs vs loss 69.1 mln.\n    Net is equity accounted\n    Pre-equity accounted net 39.90 mln dlrs vs loss 49.11 mln\n    Pre-equity shr profit 7.1 cents vs loss 8.7\n    Final div to be announced after July 1 vs first and final\n1.0 cent.\n    Sales 1.88 billion vs 1.78 billion\n    Other income 52.75 mln vs 15.22 mln\n    Shrs 560.61 mln vs same.\n    NOTE - Net is after tax paid 46.85 mln dlrs vs credit 5.02\nmln, interest 127.68 mln [...]
+'JAPAN\'S UNEMPLOYMENT RATE SEEN RISING TO 3.5 PCT Japan\'s unemployment rate is expected to\ncontinue to climb to about 3.5 pct within the next year from\nJanuary\'s three pct record, senior economists, including Susumu\nTaketomi of Industrial Bank of Japan, said.\n    December\'s 2.9 pct was the previous worst level since the\ngovernment\'s Management and Coordination Agency began compiling\nstatistics under its current system in 1953.\n    \"There is a general fear that we will become [...]
+'SOUTH KOREAN TRADE SURPLUS NARROWS IN FEBRUARY South Korea\'s customs-cleared trade\nsurplus narrowed to 110 mln dlrs in February from 525 mln in\nJanuary, provisional trade ministry figures show.\n    In February 1986 there was a deficit of 264 mln dlrs.\n    February exports rose to 2.87 billion dlrs, fob, from 2.83\nbillion in January and 2.30 billion in February 1986. CIF\nimports were 2.76 billion against 2.31 billion in January and\n2.57 billion in February last year.\n REUTER\n&#3;',0
+'JAPAN MOVES TO TIGHTEN CHIP-EXPORT CURBS The Ministry of International Trade and\nIndustry (MITI) acted to tighten restrictions on microchip\nexports to countries other than the U.S. To preserve a\nU.S.-Japan pact on semiconductor trade, but major Japanese\nchipmakers doubt its usefulness.\n    A MITI spokesman said his ministry had asked chipmakers to\nissue certificates to specified trading houses stating they are\nauthorised exporters.\n    Trading houses applying for a MITI export l [...]
+'FINNISH UNEMPLOYMENT AT 6.7 PCT IN DECEMBER Finnish unemployment was 6.7 pct in\nDecember last year compared with 6.8 pct in November and 6.1\npct in December 1985, the Central Statistical Office said.\n    It said 173,000 people were unemployed in December 1986,\n174,000 in November and 157,000 in December 1985.\n REUTER\n&#3;',0
+'BANKERS SEE SHARP RISE IN THAI FOREIGN RESERVES Thailand\'s improving economy will likely\ncause foreign reserves to increase to at least five billion\ndlrs by end-1987 from a record of nearly 4.2 billion at\nend-February, private bankers said.\n    Bank of Thailand statistics show foreign reserves rose to\n3.95 billion at end-January from 3.03 billion a year earlier.\n    Nimit Nonthapanthawat, chief economist at the &lt;Bangkok Bank\nLtd>, said Thailand\'s strong export performance, i [...]
+'SWEDEN HAS CURRENT PAYMENTS SURPLUS IN 1986 Sweden had a 1986 current balance of\npayments surplus of 7.6 billion crowns compared with a deficit\nof 10.1 billion the preceding year, according to preliminary\nfigures from the central bank.\n    The December current account had a 100 mln crowns deficit\nagainst a yearago 200 mln deficit.December trade balance was\n2.3 billion surplus against yearago two billion.\n    The trade balance showed a 1986 surplus of 33.2 billion\ncrowns compared [...]
+'FISONS PLC &lt;FISN.L> YEAR TO END-1986 Shr 27.5p vs 24.3p\n    Div 3.95p vs 3.34p making 6.5p vs 5.5p\n    Pre-tax profit 85.1 mln stg vs 72.3 mln\n    Turnover 702.6 mln vs 646.7 mln\n    Tax 18.4 mln vs 15.2 mln\n    Finance charges 4.1 mln vs 5.4 mln\n    Minority interest 0.1 mln vs 0.5 mln\n    Extraordinary debit, being closure and restructuring costs\n4.9 mln vs 3.7 mln\n    Operating profit includes -\n    Pharmaceutical 49.8 mln vs 39.0 mln\n    Scientific equipment 23.2 mln v [...]
+' MAJOR SWISS BANKS RAISE CUSTOMER TIME DEPOSIT RATES 1/4 POINT TO THREE PCT - CREDIT SUISSE\n ',0
+' CORRECTED - MAJOR SWISS BANKS RAISE CUSTOMER TIME DEPOSIT RATES 1/4 POINT TO 3-1/4 PCT - CREDIT SUISSE\n ',0
+'PHILIPPINE PLANNING CHIEF URGES PESO DEVALUATION The Philippines must devalue the peso if\nit wants its exports to remain competitive, Economic Planning\nSecretary Solita Monsod told Reuters.\n    \"The peso/dollar rate has to be undercut to make our exports\nmore competitive,\" Monsod said an interview. \"No question about\nit. I\'m saying you cannot argue with success. Taiwan, South\nKorea, West Germany, Japan, all those miracle economies\ndeliberately undervalued their currencies.\"\ [...]
+'U.K. CLEARS CONS GOLD U.S. PURCHASE The U.K. Trade Department said it would\nnot refer Consolidated Goldfields Plc\'s &lt;CGLD.L> purchase of\n&lt;American Aggregates Corp> to the Monopolies Commission.\n    Cons Gold said last month that its &lt;ARC America Corp> unit\nhad agreed to buy the Ohio-based company for 30.625 dlrs a\nshare cash, or 242 mln dlrs, in a deal recommended by the\nAggregates board.\n REUTER\n&#3;',0
+'ZAIRE ACCEPTS TIN-EXPORT QUOTA, ATPC SAYS Zaire agreed to limit its tin\nexports to 1,736 tonnes for 12 months from March 1 in line with\nan Association of Tin Producing Countries (ATPC) plan to curb\nexports, the ATPC said.\n    ATPC Executive Director Victor Siaahan told Reuters he\nreceived a telex from Zaire indicating its willingess to take\npart in the plan to limit total ATPC exports to 96,000 tonnes\nfor a year from March 1.\n    Siaahan said Zaire is expected to produce 1,900 t [...]
+'U.K. MONEY MARKET DEFICIT FORECAST AT 350 MLN STG The Bank of England said it forecast a\nshortage of around 350 mln stg in the money market today.\n    Among the main factors affecting liquidity, bills maturing\nin official hands and the take-up of treasury bills will drain\nsome 525 mln stg while bankers\' balnces below target will take\nout around 175 mln stg.\n    Partly offsetting these outflows, exchequer transactions\nand a fall in note circulation will add some 300 mln stg and 4 [...]
+'SAUDI RIYAL DEPOSIT RATES EASE Saudi riyal interbank deposit rates\neased across the board in a dull market which was long in\nday-to-day funds, dealers said.\n    Today\'s quiet market continued a lull of several days in\nwhich traders were said to be waiting on the sidelines ahead of\nfurther clues to the direction of oil prices and the Saudi\neconomy.\n    Dealers cited some borrowing interest in two, three, and\nsix-month deposits but said activity focused on short dates and\none-mo [...]
+'PEMEX SIGNS 500 MLN DLR JAPAN LOAN FOR PIPELINE Mexican state oil firm Petroleos Mexicanos\n(Pemex) signed for a 500 mln dlr&#127;untied loan from the\nExport-Import Bank of Japan to finance its Pacific Petroleum\nProject, Pemex Japan representative Tito Ayal said.\n    No further details on the loan were immediately available.\n    Ayala told an oil seminar the project, due for completion\nin 1988, is aimed at improving distribution of oil products in\nthe domestic market, mainly along [...]
+'STC PLC &lt;STCL.L> YEAR TO END-1986 Shr profit 15.9p vs 2.25p loss\n    Div 3p making 4.5p vs nil\n    Turnover 1.93 billion stg vs 1.99 billion\n    Pretax profit 134.2 mln vs 11.4 mln loss\n    Tax 47.2 mln vs nil\n    Operating profit 163.0 mln vs 92.7 mln\n    Interest less investment income 13.8 mln vs 37.2 mln\n    Exceptional debit 15.0 mln vs 66.9 mln\n    Minorities 0.3 mln vs 0.4 mln\n    Extraordinary credit 16.4 mln vs 42.0 mln debit\n    Operating profit includes -\n    In [...]
+'COMALCO SAYS LOWER COSTS HELPED RETURN TO PROFITS Comalco Ltd &lt;CMAC.S> said its return\nto profit reflected reduced costs, improved primary aluminium\nprices and its withdrawal from a Japanese smelter venture.\n    It said the earlier reported 57.1 mln dlr profit for the\nyear ended December 31 against a 69.13 mln dlr loss in 1985 was\nalso aided by lower interest rates on U.S. Dollar debt and\ngreater sales of bauxite and aluminium.\n    Comalco said it expected to pay at least a fo [...]
+'CRA EXPECTS TO PAY FINAL DIVIDEND OF 10 CENTS CRA Ltd &lt;CRAA.S> said it expected to\npay a final 1986 dividend of not less than 10 cents a share\nafter July 1, making 13 cents for&#127;the year against 15 in 1985.\n    The mining and smelting group earlier reported 1986 net\nearnings rose to 138.2 mln dlrs from 87.8 mln in 1985, against\nanalysts\' forecasts yesterday of 125 mln to&#127;160 mln.\n    CRA said it was deferring consideration of a dividend until\nlater this year to provi [...]
+'SWISS CAPITAL EXPORTS RISE IN JANUARY Swiss capital exports rose to 4.64\nbillion francs in January after 2.54 billion in December and a\nyear earlier 3.64 billion, the Swiss National Bank said.\n    New bond issues accounted for 4.12 billion of the total\nafter December\'s 2.15 billion, and credits 525.1 mln after\n389.9 mln.\n    In January 1985, before the National Bank ended the\ndistinction between notes and bonds, bond issues totalled 1.66\nbillion francs, notes 1.39 billion and c [...]
+'CHINA CALLS FOR BETTER TRADE DEAL WITH U.S. China called on the United States to\nremove curbs on its exports, to give it favourable trading\nstatus and ease restrictions on exports of high technology.\n    But the U.S. Embassy replied that Chinese figures showing\n13 years of trade deficits with the U.S. Out of the last 15 are\ninaccurate and said Peking itself would have to persuade\nCongress to change laws which limit its exports.\n     The official International Business newspaper t [...]
+'NO BUNDESBANK POLICY CHANGES EXPECTED THURSDAY The Bundesbank is unlikely to change\nits credit policies at its central bank council meeting on\nThursday, as exchange rates and short-term interest rates have\nstabilized over the past few weeks, money market dealers said.\n    Attention in the money market is focused on tomorrow\'s\ntender for a securities repurchase pact, from which funds will\nbe credited on Thursday, when an earlier pact expires, draining\n16 billion marks from the sy [...]
+'ITALY CONSUMER PRICES RISE 0.4 PCT IN FEBRUARY Italy\'s consumer price index rose 0.4 pct\nin February compared with January after rising 0.6 pct in\nJanuary over December, the national statistics institute\n(Istat) said.\n    The year-on-year rise in February was 4.2 pct down from 4.5\npct in January and compared with 7.6 pct in February 1986.\n    Istat said its consumer prices index for the families of\nworkers and employees (base 1985) was 109.1 in February against\n108.7 in January [...]
+'MOBIL PLAN TO OPEN PEKING OFFICE, CHINA DAILY SAYS Mobil Corp &lt;MOB.N> of the U.S. Plans to\nopen an office in Peking to develop oil exploration\nopportunities in China, the China Daily said.\n    It quoted Mobil president Richard Tucker, currently in\nPeking, as saying he is optimistic about investment prospects\nin China and that Peking will continue to encourage foreign\nprivate businesses to invest here.\n    It said Mobil bought 73 mln dlrs of crude oil and oil\nproducts from Chi [...]
+'KLM TO TAKE 15 PCT STAKE IN AIR UK KLM Royal Dutch Airlines &lt;KLM.A> said\nit agreed to take a 15 pct stake in Air U.K. Ltd, a subsidiary\nof British and Commonwealth Shipping Plc &lt;BCOM.L>, in a\ntransaction worth around two mln stg.\n   A KLM spokesman said KLM already cooperated closely with Air\nUK, which runs 111 flights a week to Amsterdam\'s Schipol\nairport from nine UK cities.\n   British and Commonwealth Shipping said last week it held\npreliminary talks about a KLM minori [...]
+' &#2;\nZIMBABWE MAIZE HARVEST LOWER AFTER BUMPER CROPS HARARE, March 3\n- Zimbabwe\'s maize crop in 1986/87 (April/ March) is likely to\nbe slightly over 1.6 mln tonnes, against 1.83 mln in 1985/86,\nGrain Marketing Board figures show.\n    Maize exports for 1986/87 to January 31, 1987 totalled\n315,000 tonnes, with about a further 40,000 tonnes expected to\nbe exported in February and March, against 285,000 tonnes in\n1985/86. Domestic usage is estimated at 650,000-900,000 tonnes,\ndep [...]
+'U.K. RESERVES SHOW UNDERLYING RISE IN FEBRUARY Britain\'s gold and currency reserves\nshowed an underlying rise of 287 mln dlrs in February, after a\n72 mln dlrs rise in January, the Treasury said.\n    The underlying trend, which is a guide to Bank of England\noperations to support the pound on foreign exchanges, is net of\nborrowings and repayments.\n    This was above market expectations for a 100 mln dlrs rise.\n    The Treasury said the Bank of England used the opportunity\nof stro [...]
+'COMALCO SAYS LOWER COSTS HELP RETURN TO PROFITS Comalco Ltd said its return to profit\nreflected reduced costs, improved primary aluminium prices and\nits withdrawal from a Japanese smelter venture.\n    It said the earlier reported 57.1 mln dlr profit for the\nyear ended December 31 against a 69.13 mln dlr loss in 1985 was\nalso aided by lower interest rates on U.S. Dollar debt and\ngreater sales of bauxite and aluminium.\n    Comalco said it expected to pay at least a four cents per\n [...]
+'ULTRAMAR SELLS U.K. MARKETING UNITS FOR 50 MLN STG Ultramar Plc &lt;UMAR.L> said it had reached\nagreement in principle to sell its wholly owned U.K. Marketing\ncompanies to Kuwait Petroleum Corp for around 50 mln stg.\n    Ultramar\'s marketing units include &lt;Ultramar Golden Eagle\nLtd> which in 1985 made a profit of around 1.4 mln stg before\nfinancing and group administration charges. A small loss was\nrecorded for the first nine months of 1986.\n    The sale is due to take place  [...]
+'HONG KONG M3 RISES 2.2 PCT IN JANUARY Hong Kong\'s broadly defined M3 money\nsupply rose 2.2 pct to 607.17 billion H.K. Dlrs in January,\nafter a 3.1 pct rise in December, for a year-on-year rise of\n23.3 pct, the government said in a statement.\n    Local currency M3 rose 3.6 pct to 280.36 billion dlrs from\nDecember when it was up 3.4 pct from November, for a rise of\n16.3 pct on the year.\n    Total M2 rose 3.3 pct to 535.26 billion dlrs in January\nfrom December when it rose 3.5 pct [...]
+'WOOLWORTH, UNDERWOODS FAIL TO AGREE ON BID &lt;Underwoods Plc> said it had not been\npossible to agree terms on a bid to be made by Woolworth\nHoldings Plc &lt;WLUK.L> during talks.\n    The two companies had been holding exploratory discussions.\nNo spokesman for either company was immediately available to\nsay why terms could not be agreed, nor whether the possibility\nof a bid was now being abandoned.\n    Last week, Underwoods shares rose 49p to 237p ahead of any\nannouncement of th [...]
+'NO BUNDESBANK POLICY CHANGES EXPECTED THURSDAY The Bundesbank is unlikely to change\nits credit policies at its central bank council meeting on\nThursday, as exchange rates and short-term interest rates have\nstabilized over the past few weeks, money market dealers said.\n    Attention in the money market is focused on tomorrow\'s\ntender for a securities repurchase pact, from which funds will\nbe credited on Thursday, when an earlier pact expires, draining\n16 billion marks from the sy [...]
+'U.K. MONEY MARKET SHORTAGE FORECAST REVISED UP The Bank of England said it revised up\nits forecast of the shortage in the money market today to\naround 500 mln stg from its initial estimate of 350 mln.\n REUTER\n&#3;',0
+'PAKISTAN TO RETENDER FOR RBD PALM OIL TOMORROW Pakistan will retender for 6,000 tonnes\nof refined bleached deodorised palm oil for second half March\nshipment tomorrow, after failing to take up offers today, palm\noil traders said.\n REUTER\n&#3;',0
+'MOBIL PLANS TO OPEN OFFICE IN PEKING Mobil Oil Corp of U.S. Plans to open an\noffice in Peking to develop oil exploration opportunities in\nChina, the China Daily said.\n     It quoted Mobil president Richard Tucker, currently in\nPeking, as saying he is optimistic about investment prospects\nin China and that Peking will continue to encourage foreign\nprivate businesses to invest here.\n     It said Mobil bought 73 mln dlrs of crude oil and oil\nproducts from China in 1986 and sold it  [...]
+'Unilever Plc and Nv combined 1986 pre-tax profit 1.14 billion stg vs 953 mln.\n ',0
+'OPEC WITHIN OUTPUT CEILING, SUBROTO SAYS Opec remains within its agreed output\nceiling of 15.8 mln barrels a day, and had expected current\nfluctuations in the spot market of one or two dlrs, Indonesian\nEnergy Minister Subroto said.\n    He told reporters after meeting with President Suharto that\npresent weakness in the spot oil market was the result of\nwarmer weather in the U.S. And Europe which reduced demand for\noil.\n    Prices had also been forced down because refineries were\ [...]
+'U.K. MONEY MARKET GIVEN 24 MLN STG ASSISTANCE The Bank of England said it provided 24\nmln stg help to the money market in the morning session.\n    This compares with the bank\'s upward revised shortage\nforecast of around 500 mln stg.\n    The central bank purchased bank bills outright comprising\ntwo mln stg in band one at 10-7/8 pct and 22 mln stg in band\ntwo at 10-13/16 pct.\n REUTER\n&#3;',0
+'JAPAN\'S UNEMPLOYMENT RATE SEEN RISING TO 3.5 PCT Japan\'s unemployment rate is expected to\ncontinue to climb to about 3.5 pct within the next year from\nJanuary\'s three pct record, senior economists, including Susumu\nTaketomi of Industrial Bank of Japan, said.\n    December\'s 2.9 pct was the previous worst level since the\ngovernment\'s Management and Coordination Agency began compiling\nstatistics under its current system in 1953.\n    \"There is a general fear that we will become [...]
+' &#2;\nUNILEVER PLC AND NV 1986 4TH QTR TO DEC 31\n    LONDON, March 3\n    Unilever Plc share 49.57p vs 44.19p, making 177.55p vs\n137.96p for full year.\n    Unilever NV share 10.69 guilders vs 11.82 guilders, making\n38.22 guilders vs 36.79 guilders.\n    Unilever Plc final div 35.18p, making 50.17p vs 38.62p.\n    Unilever NV final div 10.67 guilders, making 15.33 guilders\nvs 14.82 guilders.\n    Combined pre-tax profit 276 mln stg vs same, making 1.14\nbillion stg vs 953 mln.\n    [...]
+'HK HOTELS SOARS ON TAKEOVER SPECULATION The price of Hongkong and Shanghai\nHotels Ltd &lt;SHLH.HK>\'s stock soared on speculation of a\ntakeover battle between major shareholders the Kadoorie family\nand the Evergo Industrial Enterprise Ltd &lt;EVGH.HK> group, stock\nbrokers said.\n    They noted heavy buying in Hk Hotel shares after an\nannouncement by Evergo\'s &lt;China Entertainment and Land\nInvestment Co Ltd> unit that it bought about 20 pct of Hk\nHotels from the firm\'s deputy  [...]
+'BRYSON PAYS 5.4 MLN DLRS FOR CENERGY CORP STAKE &lt;Bryson Oil and Gas Plc> said it paid a\ncash consideration of around 5.4 mln dlrs for about 8.6 pct of\n&lt;Cenergy Corp>, a U.S. Oil and gas exploration and production\ncompany.\n    Bryson said its board has been considering a number of\npossible investments to expand the company\'s interests and\nbelieves the opportunity to acquire an investment in Cenergy\nprovides a suitable extension to its existing U.S. Interests.\n    Cenergy r [...]
+'ASHTON-TATE &lt;TATE> 4TH QTR NET Shr 43 cts vs 30 cts\n    Net 10.6 mln vs 5,967,000\n    Revs 62.9 mln vs 41.5 mln\n    Avg shrs 200.7 mln vs 20.2 mln\n    Year\n    Shr 1.26 dlrs vs 85 cts\n    Net 30.1 mln vs 16.6 mln\n    Revs 210.8 mln vs 121.6 mln\n    Avg shrs 23.9 mln vs 19.4 mln\n    NOTE: Share adjusted for January 1987 two-for-one split.\n Reuter\n&#3;',0
+'NEITHER SIDE OPTIMISTIC ON ROTTERDAM PORT ISSUES Employers and the port union, FNV, are\nto meet again this afternoon to attempt a settlement of the\nsix-week-old dispute in Rotterdam\'s general cargo sector, but\nneither side is optimistic, spokesmen for both sides told\nReuters.\n    Little progress was made in last night\'s three hours of\ntalks, with both sides largely reiterating their positions.\n    \"There is still a very large gap between the employers and\nthe FNV, and I can\' [...]
+'UNILEVER IMPROVES IN MOST SECTORS DURING 1986 The Unilever Plc and NV &lt;UN.A> group saw\nimproved performance in almost all sectors during 1986, the\nAnglo-Dutch group said in its results statement.\n    Very good progress was made last year, while the recent\nacquisition of Chesebrough-Pond\'s Inc &lt;CBM.N> was a significant\naddition which will greatly benefit the group in the years to\ncome.\n    Earlier, Unilever reported combined fourth quarter pre-tax\nprofit of 276 mln stg, le [...]
+'U.S. LEADING INDICATORS FELL 1.0 PCT IN JAN AFTER REVISED 2.3 PCT DEC RISE\n ',0
+'U.S. LEADING INDEX FELL 1.0 PCT IN JANUARY The U.S. index of leading indicators\nfell a seasonally adjusted 1.0 pct in January after a revised\n2.3 pct December gain, the Commerce Department said.\n    The department previously said the index rose 2.1 pct in\nDecember.\n    The decline in January was the biggest for any month since\nJuly, 1984, when the index fell 1.7 pct.\n    The January decrease left the index at 183.8 over its 1967\nbase of 100, and was led by a fall in contracts an [...]
+'BURLINGTON COAT FACTORY WAREHOUSE CORP &lt;BCF> NET Jan 31 end\n    Shr 1.40 dlrs vs 1.10 dlrs\n    Net 16.4 mln vs 12.9 mln\n    Revs 196.2 mln vs 157.5 mln\n Reuter\n&#3;',0
+'COFFEE PRICE FALL SHORT TERM - DUTCH ROASTERS This morning\'s sharp decline in coffee\nprices, following the breakdown late last night of negotiations\nin London to reintroduce International Coffee Organization,\nICO, quotas, will be short-lived, Dutch roasters said.\n    \"The fall is a technical and emotional reaction to the\nfailure to agree on reintroduction of ICO export quotas, but it\nwill not be long before reality reasserts itself and prices\nrise again,\" a spokesman for one o [...]
+'GREENWOOD RESOURCES &lt;GRRL> SELLS COMPANY STAKE Greenwood Resources Inc said it has sold\nits 4,300,000 common share majority holding in &lt;New London Oil\nLtd> of London to an affiliate of &lt;Guinness Peat Group PLC> of\nLondon and an affiliate of &lt;Sidro SA> of Belgium for a total of\n1,700,0000 dlrs in cash.\n    The company said it will apply the proceeds of the sale to\nsupport its line of credit and as part of a proposed debt\nrestructuring with Colorado National Bancshares  [...]
+'F.W. WOOLWORTH CO 4TH QTR SHR 1.78 DLRS VS 1.64 DLRS\n ',0
+'HEINZ INTERESTED IN BUYING GUINNESS BREWING H.J. Heinz &lt;HNZ.N> chairman Tony O\'Reilly\nwould be interested in buying Guinness PLC &lt;GUIN.L>\'s brewery\ndivision if it were for sale, a spokesman said.\n    The spokesman, reacting to Irish and British press reports,\nsaid \"He continues to be interested were the group to offer the\nbrewery side of Guinness for sale. But he has not put together\na consortium, nor has he been buying shares.\"\n    He was quoted by the Irish magazine B [...]
+'EQUATORIAL COMMUNICATIONS &lt;EQUA> TO HAVE LOSSES Equatorial Communications\nCo said it expects to report losses of about 57 mln dlrs for\nthe fourth quarter and 68 mln dlrs for the full year 1986 on\nrevenues of about 10 mln dlrs for the quarter and 52 mln dlrs\nfor the year.\n    Equatorial said the losses will include a charge of about\n45 mln dlrs from costs associated with the restructuring of its\nbusiness, including adjustments to reflect the market value of\ntransponders owned  [...]
+'TRANSAMERICA &lt;TA> TO HAVE AUSTRALIAN SALE GAIN Transamerica Corp said it will have\nan after-tax gain of about 10 mln U.S. dlrs on the sale of its\nOccidental Life Insurance Co of Australia Ltd affiliate to\n&lt;Pratt and Co Financial Services Pty Ltd> of Melbourne for 105\nmln Australian dlrs.\n    The sale was announced earlier today in Australia. Proceeds\nwill be used to enhance the growth of North American operations\nof its Transamerica Occidental Life subsidiary, the company\n [...]
+'VIACOM INTERNATIONAL INC GETS ANOTHER NEW NATIONAL AMUSEMENTS BID\n ',0
+'F.W. WOOLWORTH CO &lt;Z> 4TH QTR JAN 31 NET Shr 1.78 dlrs vs 1.64 dlrs\n    Net 117 mln vs 106 mln\n    Sales 2.02 billion vs 1.85 billion\n    Avg shrs 65.6 mln vs 63.9 mln\n    Year\n    Shr 3.25 dlrs vs 2.75 dlrs\n    Net 214 mln vs 177 mln\n    Sales 6.50 billion vs 5.96 billion\n    Avg shrs 65.6 mln vs 63.9 mln\n    NOTE: Share data restated to reflect two for one stock\nsplit in May 1986\n Reuter\n&#3;',0
+'BP OIL RAISES OPERATING PROFIT &lt;BP Oil Ltd>, the U.K. Marketing and\nrefining arm of British Petroleum Co Plc &lt;BP.L>, raised its\npretax operating profit on a replacement cost basis to 182 mln\nstg in calendar 1986, compared with 66 mln stg in 1985.\n    Sales and operating revenue fell to 3.1 billion stg from\n4.2 billion on a replacement cost basis. Historical cost\noperating profit was 61 mln stg, up from 16 mln.\n    BP Oil said 1985 profits had been depressed by exceptional\n [...]
+'U.S. ASKS JAPAN END AGRICULTURE IMPORT CONTROLS The U.S. Wants Japan to eliminate import\ncontrols on agricultural products within three years, visiting\nU.S. Under-Secretary of State for Economic Affairs Allen Wallis\ntold Eishiro Saito, Chairman of the Federation of Economic\nOrganisations (Keidanren), a spokesman for Keidanren said.\n    The spokesman quoted Wallis as saying drastic measures\nwould be needed to stave off protectionist legislation by\nCongress.\n    Wallis, who is att [...]
+'FIRSTCORP &lt;FCR> SEES GAIN ON CONDEMNATION Firstcorp Inc said it weill report\nan after-tax gain of 1,827,000 dlrs or 56 cts per share primary\nand 42 cts fully diluted from the proposed condemnation and\nacquisition of a parking deck it operates by Wake County.\n    The company said if it reinvested proceeds in a similar\nproperty within 24 months, the gain on the sale would be\ndeferred for tax purposes.\n Reuter\n&#3;',0
+'&lt;NATIONAL SEA PRODUCTS LTD> 4TH QTR NET Oper shr 43 cts vs 21 cts\n    Oper net 6,846,000 vs 3,386,000\n    Revs 137.1 mln vs 107.6 mln\n    Year\n    Oper shr 1.36 dlrs vs 42 cts\n    Oper net 21,764,000 vs 7,239,000\n    Revs 516.4 mln vs 454.7 mln\n    Note: 1986 qtr excludes extraordinary gain of 784,000 dlrs\nor five cts share, versus extraordinary loss of 110,000 dlrs or\nshr nil in 1985 qtr\n    Note continued: 1986 year excludes extraordinary gain of\n14,360,000 dlrs or 94 ct [...]
+'U.K. MONEY MARKET SHORTAGE FORECAST REVISED DOWN The Bank of England said it had revised\nits forecast of the shortage in the money market down to 450\nmln stg before taking account of its morning operations. At\nnoon the bank had estimated the shortfall at 500 mln stg.\n REUTER\n&#3;',0
+'NATIONAL AMUSEMENTS AGAIN UPS VIACOM &lt;VIA> BID Viacom International Inc said &lt;National\nAmusements Inc> has again raised the value of its offer for\nViacom\'s publicly held stock.\n    The company said the special committee of its board plans\nto meet later today to consider this offer and the one\nsubmitted March one by &lt;MCV Holdings Inc>.\n    A spokeswoman was unable to say if the committee met as\nplanned yesterday.\n    Viacom said National Amusements\' Arsenal Holdings In [...]
+'NATIONAL FSI INC &lt;NFSI> 4TH QTR LOSS Shr loss six cts vs profit 19 cts\n    Net loss 166,000 vs profit 580,000\n    Revs 3,772,000 vs 5,545,000\n    Year\n    Shr loss 13 cts vs profit 52 cts\n    Net loss 391,000 vs profit 1,425,000\n    Revs 15.4 mln vs 16.6 mln\n    NOTE: 1985 year figures pro forma for purchase accounting\nadjustments resulting from March 1985 reeacquisition of company\nby its original shareholders before August 1985 initial public\noffering. \n Reuter\n&#3;',0
+'&lt;PRECAMBRIAN SHIELD RESOURCES LTD> YEAR LOSS Shr loss 1.93 dlrs vs profit 16 cts\n    Net loss 53,412,000 vs profit 4,479,000\n    Revs 24.8 mln vs 32.7 mln\n    Note: 1986 shr and net include 51,187,000 dlr writedown on\nU.S. operations, uneconomic coal operations and other mineral\nproperties\n Reuter\n&#3;',0
+'U.K. MONEY MARKET GIVEN FURTHER 437 MLN STG HELP The Bank of England said it had provided the\nmoney market with a further 437 mln stg assistance in the\nafternoon session. This brings the Bank\'s total help so far\ntoday to 461 mln stg and compares with its revised shortage\nforecast of 450 mln stg.\n    The central bank made purchases of bank bills outright\ncomprising 120 mln stg in band one at 10-7/8 pct and 315 mln\nstg in band two at 10-13/16 pct.\n    In addition, it also bought  [...]
+'GREASE MONKEY HOLDING CORP &lt;GMHC> YEAR NOV 30 Shr nil vs nil\n    Net 130,998 vs 30,732\n    Revs 1,568,941 vs 1,0053,234\n Reuter\n&#3;',0
+'ACCEPTANCE INSURANCE HOLDINGS INC &lt;ACPT> YEAR Oper shr profit 1.80 dlrs vs loss 2.28 dlrs\n    Oper net profit 2,048,0000 vs loss 1,318,000\n    Revs 25.4 mln vs 12.3 mln\n    Avg shrs 1,135,000 vs 576,000\n    NOTE: Net excludes realized investment gains of 40,000 dlrs\nvs 13,000 dlrs.\n    1986 net excludes 729,000 dlr tax credit.\n Reuter\n&#3;',0
+'MINSTAR INC &lt;MNST> 4TH QTR NET Oper shr loss 31 cts vs loss 30 cts\n    Oper net loss 5,429,000 vs loss 5,216,000\n    Revs 257.5 mln vs 243.6 mln\n    Avg shrs 17.5 mln vs 13.5 mln\n    Year\n    Oper shr loss eight cts vs profit 28 cts\n    Oper net loss 1,324,000 vs profit 4,067,000\n    Revs 989.5 mln vs 747.9 mln\n    Avg shrs 17.6 mln vs 15.7 mln\n   \n    NOTE: 1986 operating net loss excludes income from\ndiscontinued operations equal to 11 cts in the quarter and 66\ncts in t [...]
+'&lt;MARK RESOURCES INC> YEAR LOSS Shr not given\n    Loss 54.9 mln\n    Revs 27.2 mln\n    Note: Prior year results not given. 1986 results include\naccounts of 89 pct owned &lt;Precambrian Shield Resources Ltd>,\nacquired November 5, 1986\n Reuter\n&#3;',0
+'TRANSFORM LOGIC &lt;TOOG> REVISES RESULTS DOWNWARD Transform Logic Corp said it\nhas revised downward its previously reported fourth quarter and\nyear, ended October 31, results to reflect compensation expense\nfor employee stock options.\n    The company said resolution of this disagreement with its\nauditors came as a result of Securities and Exchange Commission\ninvolvement. The company will amend its option-granting\nprocedure to conform to the SEC decision which will eliminate\nfut [...]
+'AMERICAN STORES &lt;ASC> SEES LOWER YEAR NET American Stores Co said it\nexpects to report earnings per share of 3.70 to 3.85 dlrs per\nshare on sales of slightly over 14 billion dlrs for the year\nended January 31.\n    The supermarket chain earned 4.11 dlrs per share on sales\nof 13.89 billion dlrs last year.\n    The company did not elaborate.\n Reuter\n&#3;',0
+'KASLER CORP &lt;KASL> 1ST QTR JAN 31 NET Shr profit three cts vs loss seven cts\n    Net profit 161,000 vs loss 367,000\n    Revs 24.3 mln vs 26.5 mln\n Reuter\n&#3;',0
+'UNILEVER HAS IMPROVED MARGINS, VOLUMES IN 1986 Unilever Plc &lt;UN.A> and NV group reported\nimprovements in margins and underlying sales volume growth of\nfive pct in 1986 after stripping out the effects of falling\nprices, disposals and currency movements, Unilever Plc chairman\nMichael Angus said.\n    He told reporters that volumes in North America increased\nsome 10.5 pct while European consumer goods rose about 2.5 pct\nafter being flat for some years.\n    Much of the disposal st [...]
+'SARA LEE &lt;SLE> TO BUY 34 PCT OF DIM Sara Lee Corp said it agreed to buy a 34\npct interest in Paris-based DIM S.A., a subsidiary of BIC S.A.,\nat a cost of about 84 mln dlrs.\n    DIM S.A., a hosiery manufacturer, had 1985 sales of about\n260 mln dlrs.\n    The investment includes the purchase of 360,537 newly\nissued DIM shares valued at about 51 mln dlrs and a loan of\nabout 33 mln dlrs, it said. The loan is convertible into an\nadditional 229,463 DIM shares, it noted.\n    The pro [...]
+'CHINA CALLS FOR BETTER TRADE DEAL WITH U.S. China called on the United States to\nremove curbs on its exports, to give it favourable trading\nstatus and ease restrictions on exports of high technology.\n    But the U.S. Embassy replied that Chinese figures showing\n13 years of trade deficits with the U.S. Out of the last 15 are\ninaccurate and said Peking itself would have to persuade\nCongress to change laws which limit its exports.\n    The official International Business newspaper to [...]
+'U.S. COMMERCE SECRETARY SAYS EXPORT RISE NEEDED Commerce Secretary Malcolm Baldrige\nsaid after the release of a sharply lower January leading\nindicator index that a pickup in exports is needed.\n    \"The best tonic for the economy now would be a pickup in net\nexports,\" he said in a statement after the department reported\nthe index fell 1.0 pct in January from December, the sharpest\ndrop since a 1.7 pct fall in July, 1984.\n    The main reasons for the January decline after a 2.3  [...]
+'PRECAMBRIAN SHIELD TAKES 51 MLN DLR WRITEDOWN &lt;Precambrian Shield Resources\nLtd>, earlier reporting a large loss against year-ago profit,\nsaid the 1986 loss was mainly due to a 51,187,000 dlr writedown\non its U.S. operations, uneconomic coal and other mineral\nproperties.\n    Precambrian, which is 89 pct owned by &lt;Mark Resources Inc>,\nsaid it took the writedown in accordance with new Canadian\nInsititute of Chartered Accountants guidelines for full cost\nmethod accounting by  [...]
+'KENYAN ECONOMY FACES PROBLEMS, PRESIDENT SAYS The Kenyan economy is heading for\ndifficult times after a boom last year, and the country must\ntighten its belt to prevent the balance of payments swinging\ntoo far into deficit, President Daniel Arap Moi said.\n    In a speech at the state opening of parliament, Moi said\nhigh coffee prices and cheap oil in 1986 led to economic growth\nof five pct, compared with 4.1 pct in 1985.\n    The same factors produced a two billion shilling balanc [...]
+'SCOTT\'S HOSPITALITY ACQUIRES CAPITAL FOOD &lt;Scott\'s Hospitality Inc> said it\nacquired all issued shares of Capital Food Services Ltd, of\nOttawa. Terms were not disclosed.\n    Scott\'s said Capital Food had 1986 sales of more than 20\nmln dlrs and will continue to operate under its present name\nwith existing management.\n    Capital Food provides food services to several Ottawa\ninstitutions, the company said.\n Reuter\n&#3;',0
+'ZIMBABWE COFFEE OUTPUT SET TO RISE Zimbabwean coffee output will reach\n13,000 tonnes this year, up on just over 11,000 tonnes produced\nin 1986, the Commercial Coffee Growers Association said.\n    Administrative Executive Robin Taylor told the domestic\nnews agency ZIANA that Zimbabwe earned the equivalent of 33 mln\nU.S. Dlrs from coffee exports last year. He would not say how\nmuch the country would earn in 1987.\n    Taylor said the 173 commercial coffee growers under his\nassociat [...]
+'VIDEO DISPLAY &lt;VIDE> TO SELL CABLE TV UNIT Video Display Corfp said it has reached\na tentiative agreement to sell its existing cable television\nbusiness for undisclosed terms and expects to report a gain on\nthe transaction.  The buyer was not named.\n    The company said it will redeploy its service assets into\nmanufacturing and distribution.\n    It said the operations being sold accounted for about five\npct of revenues for the year ended February 28 and lost money.\n Reuter\n&#3;',0
+'INTEK DIVERSIFIED CORP &lt;IDCC> 4TH QTR NET Shr three cts vs three cts\n    Net 98,20000 vs 91,898\n    Revs 2,843,520 vs 2,372,457\n    Year\n    Shr 13 cts vs 21 cts\n    Net 401,179 vs 681,374\n    Revs 10.5 mln vs 9,699,535\n Reuter\n&#3;',0
+'U.S. SINGLE-FAMILY HOME SALES FELL 6.8 PCT IN JAN AFTER REVISED 12.1 PCT DEC GAIN\n ',0
+'U.S. HOME SALES FELL 6.8 PCT IN JANUARY Sales of new single-family homes in\nthe United States fell 6.8 pct in January from December to a\nseasonally adjusted annual rate of 716,000 units, the Commerce\nDepartment said.\n    The department revised downward December\'s sales to a 12.1\npct rise to 768,000 units from the previously reported 12.7 pct\nincrease.\n    The January decline in sales was the largest since last\nOctober when sales fell 9.3 pct.\n    Before seasonal adjustment, th [...]
+'COMMUNITY BANK &lt;CBSI> TO MAKE ACQUISITION Community Bank System Inc said it\nhas entered into a definitive agreement to acquire Nichols\nCommunity Bank for 2,800,000 dlrs in common stock.\n    It said subject to approval by Nichols shareholders and\nregulatory authorities, the transaction is expected to be\ncompleted later this year.\n Reuter\n&#3;',0
+'BELGIAN UNEMPLOYMENT FALLS IN FEBRUARY Belgian unemployment, based on the\nnumber of jobless drawing unemployment benefit, fell to 12.1\npct of the working population at the end of February from 12.6\npct at the end of January, the National Statistics Office said.\n    The rate compares with 12.4 pct at the end of February\n1986.\n    The total number of jobless stood at 508,392, compared with\n530,587 at the end of January and 521,219 at the end of\nFebruary 1986, the Statistics Office [...]
+'PHARMACIA AB &lt;PHAB ST>  1986 YEAR Sales 3.65 billion crowns vs 3.40\nbillion.\n     Profit  after financial items 821.2 mln crowns vs 740.2\nmln.\n    The 1986 results include a once-off writedown of 520 mln\ncrowns for intangible assets, mainly the know-how paid for in\nthe takeover of a number of high-tech companies by the group,\nPharmacia said.\n    Earnings per share after real tax including the writedown:\n1.94 crowns vs 12.05 crowns.\n    Earnings per share after real tax (not [...]
+'PHARMACIA FORECASTS HIGHER 1987 EARNINGS Pharmacia AB &lt;PHAB ST> forecast\nearnings after financial items of one billion crowns in 1987 vs\n821.2 mln last year on condition that exchange rates remained\nat their present parities.\n    Sales would in such circumstances go up to six billion\ncrowns from 3.65 billion in 1986, it said.\n    A weakening Dollar was mainly responsible for a five pct\nnegative impact on sales during 1986 which the company blamed\non currency movements.\n    L [...]
+'CANADA REAL 4TH QTR GDP ROSE 1.1 PCT, AFTER 3RD QTR 1.1 PCT RISE - OFFICIAL\n ',0
+'CANADA 4TH QTR CURRENT ACCOUNT DEFICIT 2.3 BILLION DLRS VS 3RD QTR 1.9 BILLION DEFICIT - OFFICIAL\n ',0
+'MCLEAN INDUSTRIES &lt;MII> UNIT TRANSERS SERVICE McLean Industries Inc said its\nshipping subsidiary, United States Lines Inc, reached an\nagreement in principle to transfer its South American service\nto American Transport Lines Inc, a subsidiary of &lt;Crowley\nMaritime Corp>.\n    Under the terms of the agreement, United States Lines will\nlease five vessels to American Transport for 15 months with an\noption to extend the period up to 10 years, the company said.\n    In return, U.S. [...]
+'SMALL QUANTITY OF UK WHEAT SOLD TO HOME MARKET A total of 2,435 tonnes of British\nintervention feed wheat were sold at today\'s tender for the\nhome market out of requests for 3,435 tonnes, the Home Grown\nCereals Authority, HGCA, said.\n    Price details were not reported.\n    No bids were submitted for intervention barley.\n Reuter\n&#3;',1
+'CANADA DECEMBER GDP UP 1.2 PCT AFTER NOVEMBER\'S 0.2 PCT FALL - OFFICIAL\n ',0
+'FIRST FEDERAL SAVINGS &lt;FFKZ> YEAR NET Shr 78 cts vs one dlr\n    Net 1,413,000 vs 1,776,000\n    Assets 705.3 mln vs 597.3 mln\n    Deposits 495.6 mln vs 493.9 mln\n    Loans 260.0 mln vs 379.7 mln\n    Qtly div six cts vs six cts prior qtr\n    Pay April 1 \n    Record March 6\n    NOTE: 1986 net includes charges from accounting changes,\nfrom one-time expenses associated with a proxy contest and an\nincrease in loan reserves.\n    First Federal Savings and Loan Association of Kalam [...]
+'TOLL BROTHERS INC &lt;TOL> 1ST QTR JAN 31 NET Shr 22 cts vs 12 cts\n    Net 3,243,000 vs 1,656,000\n    Revs 28.4 mln vs 21.5 mln\n    NOTE: All amts reflect 3-for-2 stock split of company\'s\ncommon in form of 50 pct stock dividend paid Feb 26, 1987.\n Reuter\n&#3;',0
+'PILLSBURY CO &lt;PSY> VOTES QUARTERLY DIVIDEND Qtly div 25 cts vs 25 cts prior qtr\n    Pay 31 May\n    Record 1 May\n Reuter\n&#3;',0
+'BERKSHIRE GAS CO &lt;BGAS> PAYS REGULAR QTLRY DIV Qtrly div 28.5 cts vs 28.5 cts\n    Pay April 15\n    Record March 31\n Reuter\n&#3;',0
+'U.K. WHEAT AND BARLEY EXPORTS ADJUSTED UPWARDS The U.K. Exported 535,460 tonnes of wheat\nand 336,750 tonnes of barley in January, the Home Grown Cereals\nAuthority (HGCA) said, quoting adjusted Customs and Excise\nfigures.\n    Based on the previous January figures issued on February 9,\nwheat exports increased by nearly 64,000 tonnes and barley by\nabout 7,000 tonnes.\n    The new figures bring cumulative wheat exports for the\nperiod July 1/February 13 to 2.99 mln tonnes, and barley  [...]
+'CANADA GDP RISES 3.1 PCT IN 1986 Canada\'s real gross domestic product,\nseasonally adjusted, rose 1.1 pct in the fourth quarter of\n1986, the same as the growth as in the previous quarter,\nStatistics Canada said.\n    That left growth for the full year at 3.1 pct, which is\ndown from 1985\'s four pct increase.\n    The rise was also slightly below the 3.3 pct growth rate\nFinance Minister Michael Wilson predicted for 1986 in\nFebruary\'s budget. He also forecast GDP would rise 2.8 pct [...]
+'EAST EUROPE WHEAT WINTERKILL POSSIBLE, ACCU SAYS Winter wheat crops in the\nwestern Soviet Union, Poland and eastern Czechoslovakia through\nnorthern Romania may suffer some winterkill over the next two\nnights, private forecaster Accu-Weather Inc said.\n    Western USSR winter wheat areas have had only light and\nspotty snow and winterkill is possible tonight and tomorrow\nnight as temperatures drop to minus 10 to 0 degrees F.\n    Snow cover is scant in Poland, with only about 50 pct  [...]
+'CHARMING SHOPPES INC &lt;CHRS> 4TH QTR JAN 31 NET Shr 28 cts vs 22 cts\n    Net 14 mln vs 10.6 mln\n    Revs 163.8 mln vs 127.3 mln\n    Year\n    Shr 81 cts vs 59 cts\n    Net 40.5 mln vs 28.7 mln\n    Revs 521.2 mln vs 391.6 mln\n Reuter\n&#3;',0
+'PANSOPHIC SYSTEMS &lt;PNS> SPLITS STOCK 2-FOR-1 Pansophic Systems Inc said it\nwill split its stock two-for-one effective April two to\nshareholders of record March 13.\n    It also said it will pay a six cts per share dividend on\nthe pre-split shares, a regular quarterly dividend, on April\ntwo to shareholders of record March 13.\n Reuter\n&#3;',0
+'LAC &lt;LAC> INTERSECTS MORE GOLD AT DOYON MINE Lac Minerals Ltd and &lt;Cambior Inc> said\nthey completed a second hole at their jointly owned Doyon mine\nin Quebec, which showed two significant gold intersections.\n    One intersection graded 0.33 ounce gold a short ton over 44\nfeet at depth of 1,411 feet, while the other graded 0.22 ounce\ngold a ton over 23 feet at 2,064 feet, the companies said. The\nhole is 460 feet east of the previously reported first hole.\n    They said they  [...]
+'CALMAR &lt;CLMI> SEEKS TO BE ACQUIRED BY &lt;KEBO AB> Calmar Inc said KEBOO Ab of\nSweden, which now owns about 64 pct of Calmark, has approved\nthe acquisition of remaining Calmar shares at 25.375 dlrs in\ncash at the request of the Calmar board.\n    Calmar said a special meeting of its board will be held\nMarch Nine to form a special committee of directors not\naffiliated with KEBO to evaluate the transaction.\n    KEBO is in turn 60 pct owned by &lt;Investment AB Beijar> of\nSweden. [...]
+'ITALY\'S BNL NEGOTIATING PURCHASE OF GERMAN BANK Italy\'s state-owned &lt;Banca Nazionale Del\nLavoro-BNL> said it is negotiating to buy a West German bank as\npart of its foreign expansion policy.\n    BNL president Nerio Nesi told a news conference the Italian\nbank was currently involved in talks but declined to name the\nGerman institution.\n    He said the takeover move could be seen as BNL\'s reply to\nDeutsche Bank AG &lt;DBKG.F>, which entered the Italian market in\nDecember 198 [...]
+'THREE KILLED IN SOUTH AFRICA ZINC REFINERY CLASH Three black workers were killed and\nseven injured in fighting at a South African zinc refinery last\nnight, Gold Fields of South Africa Ltd said.\n    The company said two groups of workers began attacking each\nother at about 1000 local time with machetes, knives and sticks\nat a hostel at the Zincor plant, some 40 kms east of\nJohannesburg.\n    It said the fighting was \"quelled\" after 25 minutes by its\nown security staff. Police we [...]
+'FED EXPECTED TO ADD TEMPORARY RESERVES The Federal Reserve is expected to\nenter the U.S. Government securities market to add temporary\nreserves, economists said.\n    They expect it to supply the reserves indirectly by\narranging 1.5 to two billion dlrs of customer repurchase\nagreements. The Fed may add the reserves directly instead via\nSystem repurchases.\n    Federal funds, which averaged 6.18 pct yesterday, opened at\n6-3/16 pct and stayed there in early trading. Analysts said th [...]
+'EC INDUSTRY OUTPUT GROWTH SLOWS IN 1986 European Community industrial output\nincreased by an average of around two pct last year, compared\nwith 3.3 pct growth recorded in 1985 against a year earlier,\nthe EC statistics office Eurostat said.\n    Growth was highest in Portugal at five pct, while in Greece\noutput contracted by 0.3 pct, Eurostat said in a statement.\n    Eurostat noted output growth also fell in the U.S. And\nJapan. U.S. Production increased 1.1 pct after 2.0 pct in 198 [...]
+'LSB INDUSTRIES INC &lt;LSB> 4TH QTR NET Shr profit five cts vs loss 2.11 dlrs\n    Net profit 375,061 vs loss 10.4 mln\n    Revs 39.9 mln vs 37.8 mln\n    Avg shrs 6,536,008 vs 4,939,895\n    12 mths\n    Shr profit 47 cts vs loss 3.37 dlrs\n    Net profit 2,837,288 vs loss 16.6 mln\n    Revs 169.1 mln vs 149.4 mln\n    Avg shrs 6,037,640 vs 4,937,378\n    NOTE: primary earnings per share are based on the weighted\naverage number of common and dilutive common equivalent shares\noutstand [...]
+'MORE GOLD DETECTED AT DOYON MINE Lac Minerals Ltd and Cambior Inc said\nthey completed a second hole at their jointly owned Doyon mine\nin Quebec, which showed two significant gold intersections.\n    One intersection graded 0.33 ounce gold per short ton over\n44 feet at depth of 1,411 feet, while the other graded 0.22\nounce gold per ton over 23 feet at 2,064 feet, the companies\nsaid. The hole is 460 feet east of the previously reported\nfirst hole.\n    Another hole is being drilled  [...]
+'GULF RESOURCES AND CHEMICAL CORP &lt;GRE> 4TH QTR Oper shr profit 34 cts vs loss 53 cts\n    Oper net profit 3,337,000 vs 4,881,000\n    Revs 32.7 mln vs 49.6 mln\n    Year\n    Oper shr profit 20 cts vs loss 90 cts\n    Oper net profit 2,374,000 vs loss 9,381,000\n    Revs 126.9 mln vs 160.5 mln\n    NOTES: Operating net excludes loss 6,050,000 dlrs, or 64\ncts a share, vs loss 24,839,000 dlrs, or 2.61 dlrs a share, in\nquarter and loss 6,050,000 dlrs, or 64 cts a share, vs profit\n64, [...]
+'COFFEE TALKS COLLAPSE EASES NEED FOR U.S. BILL The collapse of International Coffee\nOrganization, ICO, talks on export quotas yesterday removes the\nimmediate need to reinstate U.S. legislation allowing the\ncustoms service to monitor coffee imports, analysts here said.\n    The Reagan administration proposed in trade legislation\noffered Congress last month that authority to monitor coffee\nimports be resumed. That authority lapsed in September 1986. A\nbill also was introduced by Rep [...]
+'PANSOPHIC SYSTEMS INC &lt;PNS> 3RD QTR JAN 31 NET Shr 70 cts vs 56 cts\n    Net 6,197,000 vs 4,880,000\n    Revs 24.1 mln vs 17.1 mln\n    Nine mths\n    Shr 1.38 dlrs vs 1.20 dlrs\n    Net 12.1 mln vs 10.4 mln\n    Revs 52.5 mln vs 41.8 mln\n Reuter\n&#3;',0
+'FORMER TREASURY OFFICIAL URGES CURRENCY REFORMS Former Treasury official C. Fred\nBergsten said a new exchange rate system is needed to replace\nthe fixed and flexible exchange rate systems which he said had\nnot worked.\n    \"I prefer a move to \'target zones\' in which the major\ncountries would determine ranges of 15-20 pct within which they\nwould pledge to hold their exchange rates by direct\nintervention and, as necessary, by changes in monetary and\nother policies,\" Bergsten, n [...]
+'KNUTSON MORTGAGE CORP &lt;KNMC> SETS QUARTERLY Qtly div 10 cts vs 10 cts prior\n    Pay April 13\n    Record March 13\n Reuter\n&#3;',0
+'FORD MOTOR CO OF CANADA LTD 4TH QTR SHR 8.17 DLRS VS 55 CTS\n ',0
+'YUGOSLAVIA WHEAT FREE OF WINTERKILL - USDA There was no evidence of winterkill\nin Yugoslavian winter wheat during field travel along a line\nrunning northwest from Belgrade to near Maribor, the U.S.\nAgriculture Department\'s counselor in Belgrade said in a field\nreport.\n    The report, dated February 26, said there is evidence of\ndelayed germination in most areas due to late seeding last fall\nbecause of dry conditions.\n    However warm temperatures over the past three weeks have\ [...]
+'AUSIMONT COMPO NV &lt;AUS> 4TH QTR NET Shr 42 cts vs 39 cts\n    Net 12.3 mln vs 9,382,000\n    Sales 172.0 mln vs 146.00 mln\n    Avg shrs 29.5 mln vs 24.3 mln\n    Year\n    Shr 1.63 dlrs vs 1.35 dlrs\n    Net 45.7 mln vs 30.0 mln\n    Sales 665.5 mln vs 446.2 mln\n    Avg shrs 28.0 mln vs 22.3 mln\n    NOTE: translated at 1,339 Italian lire to dollar.\n Reuter\n&#3;',0
+'NORTON &lt;NRT> TO SELL SOUTH AFRICAN OPERATIONS Norton co said it has agreed to\nsell its remaining South African business, Norton co Pty Ltd,\nto &lt;Global Mining and Industrial Corp> of South africa for\nundisclosed terms.\n    The company said the unit accounts for less than two pct of\nNorton revenues and is being sold because \"Growing societal\npressures in the United States and the unsettled situation in\nsouth Africa had required a disproportionate amount of\nmanagement tiome  [...]
+'CANADA CURRENT ACCOUNT DEFICIT UP IN QUARTER Canada\'s current account deficit widened\nto a seasonally adjusted 2.27 billion dlrs in the fourth\nquarter from a deficit of 1.94 billion dlrs in the third,\nStatistics Canada said.\n    The shortfall for the full year rose to 8.81 billion dlrs\nfrom 1985\'s 584 mln dlr deficit, the federal agency said.\n    The agency said the rise in the merchandise surplus, to\n2.77 billion dlrs from 2.20 billion dlrs in the third quarter,\nwas more than [...]
+'HOME FEDERAL OF THE ROCKIES &lt;HROK> 4TH QTR LOSS Shr loss 2.07 dlrs vs profit 36 cts\n    Net loss 1,088,000 vs profit 187,000\n    Year\n    Shr loss 12.23 dlrs vs profit 17 cts\n    Net loss 645,000 vs profit 89,000\n    NOTE: Home Federal Savings and Loan Association of the\nRockies.\n    1986 net includes tax credits of 165,000 dlrs in quarter\nand 189,000 dlrs in year.\n    Net includes pretax loan loss provisions of 1,439,000 dlrs\nvs 127,000 dlrs in quarter and 1,701,000 dlrs v [...]
+'CANADA DECEMBER GDP GAINS 1.2 PCT Canada\'s gross domestic product, by\nindustry, rose a seasonally adjusted 1.2 pct in December, the\nlargest monthly gain since April, 1986, Statistics Canada said.\n    GDP, which fell 0.2 pct in November, was 2.1 pct above the\nDecember, 1985 level, the federal agency said.\n    Output of goods producing industries rose 1.6 pct in the\nmonth, with virtually all the growth occurring in manufacturing\nand mining. Services producing industries expanded 1 [...]
+'SAATCHI AND SAATCHI BUYS CLEVELAND CONSULTING Advertising agents Saatchi and Saatchi Co\nPlc &lt;SACHY> said it was buying &lt;Cleveland Consulting Associates\nInc> for an initial consideration of 2.0 mln dlrs.\n    Additional payments may be made annually through the year\nending March 31, 1991 to bring the total consideration up to\n9.5 pct of Cleveland\'s average post-tax profits in the last two\nyears of the period.\n    The purchase of Cleveland is a further step in Saatchi and\nSa [...]
+'UNILEVER\'S &lt;UN> CHESEBROUGH OFFERS TO SELL BASS Chesebrough-Pond\'s Inc, recently\nacquired by a unit of Unilever N.V., said it is offering to\nsell its Bass shoe division, as a result of an\nongoing evaluation of the long-term direction of its\nbusinesses.\n    The diversified maker of health and beauty aids, said it\nacquired Falmouth, Maine-based G.H. Bass and Co in 1978, when\nthe company reported annual sales of 59 mln dlrs. Bass is known\nfor its high-quality casual shoes.\n   [...]
+'CONTINENTAL &lt;GIC> SEES 1987 NET UP FROM TAX LAW Continental Corp said the fresh start\nprovision of the Tax Reform Act of 1986 may add 1.30 to 1.60 to\n1987 earnings per share.\n    The insurance holding company had net earnings of 449.6 mln\ndlrs, or, or 7.42 per share, in 1986.\n    John Loynes, Continental chief financial officer, said the\nfresh start provision allowed the company to discount opening\ntax reserves to January 1, 1987, which released deferred taxes\ninto earnings.\ [...]
+'FORD MOTOR CO OF CANADA LTD &lt;FC> 4TH QTR NET Shr 8.17 dlrs vs 55 cts\n    Net 67.7 mln vs 4.5 mln\n    Revs 3.67 billion vs 3.54 billion\n    Year\n    Shr 12.19 dlrs vs 24.00 dlrs\n    Net 101.1 mln vs 199.0 mln\n    Revs 14.33 billion vs 13.35 billion\n    Note: 90 pct owned by Ford Motor Co &lt;F>\n Reuter\n&#3;',0
+'ROYAL BANK OF CANADA 1ST QTR SHR 88 CTS VS 1.22 DLRS\n ',0
+'BELGIAN MINISTER SEES NEW ACCORD ON EC OILS/FATS Belgian Foreign Trade Minister Herman\nDe Croo said he believed there would be a compromise within the\nEuropean Community, EC, on its proposed tax on vegetable fats\nand oil, averting a pledged tough trade response by the United\nStates.\n    De Croo, in Washington for talks with Administration\nofficials and Congressional leaders, said at a news conference\nthere is a battle within the community on the tax on fats and\noils used in the  [...]
+'ANITEC IMAGE TECHNOLOGY CORP &lt;ANTC> 2ND QTR NET Shr 33 cts vs 28 cts\n    Net 3,722,000 vs 3,103,000\n    Sales 33.0 mln vs 31.8 mln\n    Avg shrs 11.2 mln vs 11.1 mln\n    1st half\n    Shr 68 cts vs 58 cts\n    Net 7,585,000 vs 6,346,000\n    Sales 65.9 mln vs 61.3 mln\n    Avg shrs 11.2 mln vs 11.0 mln\n    NOTE: Share adjusted for three-for-two October 1986 stock\nsplit.\n Reuter\n&#3;',0
+'DUTCH MONEY MARKET DEBT BARELY CHANGED IN WEEK Loans and advances from the Dutch\ncentral bank to the commercial banks were barely changed at\n12.9 billion guilders in the week up to and including March 2,\nthe central bank weekly return showed.\n    The Treasury\'s account with the bank dropped 1.3 billion\nguilders. Dealers said a larger amount of funds in the form of\ninterest and repayments on state loans went out than came in\nthe form of tax payments to the state.\n    Notes in ci [...]
+'DASA CORP &lt;DASA> YEAR NET Shr profit three cts vs loss 11 cts\n    Net profit 507,000 vs loss 1,823,000\n    Revs 11.2 mln vs 204,000\n Reuter\n&#3;',0
+'GROUP TRIMS MATERIAL SCIENCES &lt;MSC> STAKE An investor group led by Central\nNational-Gottesman Inc, a New York investment firm, and its\nexecutive vice president, Edgar Wachenheim, said they cut their\nstake in Material Sciences Corp to less than five pct.\n    In a filing with the Securities and Exchange Commission,\nthe group said it sold 19,500 Material Sciences common shares\nbetween Feb 11 and 19 at prices ranging from 24.00 to 27.648\ndlrs a share, leaving it with 239,500 share [...]
+'FED SETS 1.5 BILLION DLR CUSTOMER REPURCHASE, FED SAYS\n ',0
+'ADC TELECOMMUNICATIONS INC &lt;ADCT> 1ST QTR NET Periods ended Jan 31\n    Shr 28 cts vs 35 cts\n    Net 2,374,000 vs 2,987,000\n    Sales 35.2 mln vs 34 mln\n    Backlog 36.8 mln vs 33.9 mln\n Reuter\n&#3;',0
+'TYLAN CORP &lt;TYLN> TO SELL FURNACE PRODUCT LINE Tylan Corp aid it has retained\nthe investment banking firm Kahn and Harris to sell its furnace\nproduct line.\n    The company said it has already been contacted by several\npotential buyers.\n    In 1986, Tylan\'s furnace product shipments in the U.S.\nrepresented 10.3 mln dlrs of the company\'s total net sales of\n28.4 mln dlrs.\n Reuter\n&#3;',0
+'&lt;ROYAL BANK OF CANADA> 1ST QTR JAN 31 NET Shr basic 88 cts vs 1.22 dlrs\n    Shr diluted 83 cts vs 1.10 dlrs\n    Net 114,108,000 vs 140,389,000\n    Avg shrs 107.5 mln vs 100.5 mln\n    Loans 66.4 billion vs 65.9 billion\n    Deposits 82.8 billion vs 84.4 billion\n    Assets 98.7 billion vs 96.7 billion.\n Reuter\n&#3;',0
+'FED ADDS RESERVES VIA CUSTOMER REPURCHASES The Federal Reserve entered the U.S.\nGovernment securities market to arrange 1.5 billion dlrs of\ncustomer repurchase agreements, a Fed spokesman said.\n    Dealers said Federal funds were trading at 6-1/4 pct when\nthe Fed began its temporary and indirect supply of reserves to\nthe banking system.\n Reuter\n&#3;',0
+'SUPRADUR COS INC &lt;SUPD> YEAR NET Oper shr 1.58 dlrs vs 77 cts\n    Oper net 1,648,000 vs 817,000\n    Sales 25.7 mln vs 20.5 mln\n    NOTE: Net excludes discontinued operations gain 451,000\ndlrs vs loss 4,310,000 dlrs.\n Reuter\n&#3;',0
+'U.S. SETS CORN DEFICIENCY PAYMENT HALF PIK CERTS The upcoming five-month deficiency\npayments to corn and sorghum farmers will be made half in cash\nand half in generic commodity certificates, a senior\nAgriculture Department official told Reuters.\n    Around 300 mln dlrs of the in-kind certificates, or\n\"certs,\" will be mailed out to farmers around March 15 or 16,\nTom von Garlem, Assistant Deputy Administrator for USDA\'s state\nand county operations, said.\n    The decision to mak [...]
+'WALLACE COMPUTER SERVICES INC &lt;WCS> 2ND QTR NET Shr 69 cts vs 64 cts\n    Net 7,046,000 vs 6,492,000\n    Sales 85.7 mln vs 79.6 mln\n    Six Mths\n    Shr 1.28 dlrs vs 1.19 dlrs\n    Net 13,098,000 vs 12,006,000\n    Sales 166.3 mln vs 153.3 mln\n    NOTE: Periods end January 31, 1987 and 1986, respectively.\n Reuter\n&#3;',0
+'AMERICAN VANGUARD CORP &lt;AMGD> YEAR NET Shr 57 cts vs 27 cts\n    Net 1,002,000 vs 470,000\n    Sales 15.9 mln vs 12.0 mln\n    Note: 4th qtr data not available\n Reuter\n&#3;',0
+'NORTH AMERICAN BIOLOGICALS INC &lt;NBIO> 4TH QTR Oper shr one ct vs three cts\n    Oper net 99,000 vs 327,000\n    Revs 12.1 mln vs 8,800,000\n    Avg shrs 15.5 mln vs 11.3 mln\n    Year\n    Oper shr six cts vs 11 cts\n    Oper net 841,000 vs 956,000\n    Revs 44.1 mln vs 34.4 mln\n    Avg shrs 15.3 mln vs 8,519,677\n    NOTE: Net excludes tax credits of 299,000 dlrs vs 29,00000\ndlrs in quarter and 809,000 dlrs vs 71,000 dlrs in year.\n Reuter\n&#3;',0
+'OMNICOM GROUP INC &lt;OMCM> 4TH QTR NET Shr profit 27 cts vs profit 51 cts\n    Net profit 6,600,000 vs profit 12,231,000\n    Revs 211.7 mln vs 193.4 mln\n    12 mths\n    Shr loss 17 cts vs profit 1.27 dlrs\n    Net loss 4,077,000 vs profit 30,142,000\n    Revs 753.5 mln vs 673.4 mln\n    NOTE: in qtr ended 1986 the company recognized expenses of\n5,948,000 for restructing the combined operations of BBDO,\nDoyle Dane Bernbach and Needham Harper Worldwide in August 1986\nbefore tax gai [...]
+' &#2;\nCORRECTION - ASHTON-TATE ITEM\n    In Torrance, Calif., item ASHTON-TATE &lt;TATE> 4TH QTR NET,\nplease read 1986 quarter average shares as 24.7 mln, not 200.7\nmln.     \n Reuter\n&#3;\n\n',0
+'CHILEAN CONSUMER PRICES RISE 1.7 PCT IN FEBRUARY Chile\'s consumer price index rose 1.7\npct in February to 562.01 (December, 1978 equals 100) after\nincreases of 2.0 pct in January and 0.9 pct in February 1986,\nthe government\'s National Statistics Institute said.\n    Inflation as measured by the index rose to 17.5 pct over\nthe 12 months to the end of February, compared with 16.6 pct\nlast month and 24.5 pct to the end of February, 1986.\n    In the first two months of the year, inf [...]
+'COPPER STUDY GROUP CONSIDERED AT GENEVA MEETING Major copper producing and consuming\ncountries are considering a U.S. proposal to set up a study\ngroup to review the world copper market, delegates said.\n    The U.S. initiative was introduced last December at a\nmeeting held here under the auspices of the United Nations\nConference on Trade and Development (UNCTAD).\n    The U.S., the world\'s largest copper consumer and second\nbiggest producer after Chile, has proposed setting up a b [...]
+'JAPAN BUYS 5,000 TONNES CANADIAN RAPESEED Japan bought 5,000 tonnes of Canadian\nrapeseed overnight at an undisclosed price for April shipment,\ntrade sources said.\n Reuter\n&#3;',0
+'ROYAL BANK/CANADA SEES HIGHER 1987 LOAN LOSSES &lt;Royal Bank of Canada> said it\nestimates 1987 loan losses at one billion dlrs, a 25 mln dlr\nincrease over last year.\n    Royal Bank said it set its provisions \"given the continued\ndebt-servicing problems ... in the North American energy\nindustry and the uncertain outlook for energy prices,\" and also\ncontinued to add to its general provisions for loans to\ntroubled borrower countries.\n    The bank\'s loan loss provision for the f [...]
+'PANTERA &lt;PANT> AND PIZZA &lt;PZA> AGREE TO MERGE Pantera\'s Corp said it agreed in\nprinciple to acquire Pizza Inn Inc in a cash and stock\ntransaction.\n    Under terms of the proposed transaction, each Pizza Inn\nshare can be exchanged for either three dlrs in cash plus the\nlesser of 1.4 shares of Pantera\'s common stock or 11.50 dlrs\nmarket value of Pantera\'s stock, or four dlrs in cash plus a\nunit consisting of one share of Pantera\'s stock and a\nnon-transferrable right to r [...]
+'SWISS MONEY MARKET PAPER YIELDS 3.286 PCT The Swiss Federal Government\'s new series\nof six-month money market certificates raised 177.5 mln Swiss\nfrancs at an issue price of 98.401 pct to give an average\nannual yield of 3.286 pct, the National Bank said.\n    Payment date is March 5.\n    The last series of six-month paper issued in January raised\n159.6 mln francs at 98.392 pct to give an average yield of\n3.251 pct.\n REUTER\n&#3;',0
+'NIGERIA, GUINEA SET UP IRON ORE FIRM WITH LIBERIA Nigeria and Guinea agreed to set up a new\ncompany with Liberia to carry out the 14-year-old\nMifergui-Nimba iron ore project, an official communique said.\n    The communique was issued after two days of talks here\nbetween Guinean natural resources minister Ousmane Sylla and\nNigerian minister of mines and power Bunu Sheriff Musa.\n    Originally, Guinea held 50 pct in the project and Nigeria\n16.2 pct with firms from several other cou [...]
+'DISTRIBUTED LOGIC CORP &lt;DLOG> 1ST QTR LOSS Qtr ended Jan 31\n    Shr loss nine cts vs profit 13 cts\n    Net loss 231,256 vs profit 341,730\n    Revs 2,793,677 vs 3,676,296\n Reuter\n&#3;',0
+'CANADA INDUSTRIAL PRODUCTION UP 2.53 PCT Canadian industrial production rose 2.53\npct in December after falling 0.51 pct in November, Statistics\nCanada said.\n    The federal agency said year-over-year production was off\n0.65 pct in December, compared with a decline of 1.65 pct in\nNovember.\n Reuter\n&#3;',0
+'LIFETIME &lt;LFT> TO BUY SHARES OF NIPPON LACE Lifetime Corp said it agreed to buy\nfive mln shares, or 16 pct, of &lt;Nippon Lace Co Ltd> for 3.28\ndlrs a share, or 16.5 mln dlrs.\n    It said it plans to enter the health care business in\nJapan.\n    In addition, it said &lt;Koba Electronics Co Ltd>, an\naffiliate of Lifetime, will buy four mln unissued shares, or a\n12 pct stake, of Nippon for 20 mln dlrs or five dlrs a share.\n    The company said Ohta Shoji, chief executive officer [...]
+'INTERMEDICS INC &lt;ITM> 1ST QTR NET Oper shr 26 cts vs 18 cts\n    Oper net 2,877,000 vs 1,363,000\n    Revs 44.3 mln vs 40.8 mln\n    Avg shrs 10.9 mln vs 10.5 mln\n    NOTE: prior qtr excludes loss 475,000, or five cts per\nshare, for discontinued operations for the sale of subsidiaries\nIntermedics Intraocular Inc, Electronics Inc, and Intermedics\nInfusaid Inc.\n    Excludes 1987 qtr 1,694,000 operating loss carryforwards vs\n78,000 qtr prior.\n Reuter\n&#3;',0
+'BENEFICIAL CORP TO SELL INSURANCE UNIT, REMOVING COMPANY FROM INSURANCE BUSINESS\n ',0
+'FORD CANADA CUTS ANNUAL DIVIDEND BY SIX DLRS TO SIX DLRS CASH A SHARE\n ',0
+'PAINE WEBBER RESIDENTIAL REALTY INC &lt;PWM> DIV Qtrly 25 cts vs 16 cts\n    Pay March 30\n    Record March 13\n    NOTE: Prior qtr is for two months operation, October and\nNovember and represents a parital dividend.\n Reuter\n&#3;',0
+'OMNICOM GROUP &lt;OMCM> SETS REGULAR PAYOUT Qtlry div 24.5 cts vs 24.5 cts\n    Pay April 6\n    Record March 16\n Reuter\n&#3;',0
+'KNUTSON MORTGAGE &lt;KNMC> SEES STRONG SECOND QTR Knutson Mortgage Corp said it\nexpects strong earnings performance for its initial fiscal\nsecond quarter earnings ending March 31 since going public in\nSeptember 1986.\n    Albert Holderson, Knutson chairman, said he expects\nearnings of about 40 cts per share for the quarter as a result\nof a strong mortgage business during the quarter.\n    Knutson earlier declared a quarterly dividend of 10 cts a\nshare, versus 10 cts a share prior, [...]
+'DANISH RESERVES RISE IN FEBRUARY Denmark\'s net official reserves rose\nto 36.34 billion crowns in February from 28.00 billion in\nJanuary, against a revised 45.85 billion in February 1986, the\ncentral bank said in its monthly balance sheet report.\n    Total net reserves, including reserves held by commercial\nand major savings banks, rose to 38.26 billion crowns from\n30.11 billion in January compared with a revised 35.99 billion\nin February last year.\n    The bank said provisional [...]
+'INTERMEDICS INC &lt;ITM> 1ST QTR FEB ONE NET Oper shr 26 cts vs 18 cts\n    Oper net 2,877,000 vs 1,838,000\n    Revs 44.3 mln vs 40.8 mln\n    NOTE: Current 1st qtr oper net excludes operating loss\ncarryforward of 1,694,000 or 16 cts per share. 1986 1st qtr\noper net excludes loss carryforward of 78,000 dlrs or one ct\nper share and loss from discontinued operations of 475,000\ndlrs.\n Reuter\n&#3;',0
+'CARME INC &lt;CAME> 2ND QTR JAN 31 NET Shr nine cts vs one ct\n    Net 247,489 vs 27,301\n    Sales 1,933,107 vs 796,613\n    Six mths\n    Shr 21 cts vs five cts\n    Net 565,106 vs 121,997\n    Sales 3,781,970 vs 1,778,110\n Reuter\n&#3;',0
+'WILLCOX AND GIBBS INC &lt;WG> 4TH QTR NET Shr 42 cts vs 76 cts\n    Net 2.3 mln vs 3.3 mln\n    Revs 72.3 mln vs 59.8 mln\n    Year\n    Shr 1.48 dlrs vs 2.59 dlrs\n    Net 7.6 mln vs 11.1 mln\n    Revs 261.7 mln vs 224.7 mln\n    NOTE: 1985 net includes extraordinary gain of 1.5 mln dlrs\nor 35 cts per share in 4th qtr and 5.1 mln or 1.19 dlrs for the\nyear.\n   \n Reuter\n&#3;',0
+'OMNICOM GROUP INC &lt;OMCM> 4TH QTR NET Shr profit 27 cts vs profit 51 cts\n    Net profit 6,600,000 vs profit 12.2 mln\n    Revs 211.7 mln vs 193.4 mln\n    Qtly div 24.5 cts vs 24.5 cts\n    Avg shrs 24.2 mln vs 23.8 mln\n    Year\n    Shr loss 17 cts vs profit 1.27 dlrs\n    Net loss 4,077,000 vs profit 30.1 mln\n    Revs 753.5 mln vs 673.4 mln\n    Avg shrs 24.4 mln vs 23.7 mln\n    NOTE: Qtly div payable April six to holders of record March\n16.\n    1986 4th qtr and year net inclu [...]
+'FORD MOTOR CO OF CANADA LTD&lt;FC> CUTS ANNUAL DIV Annual div six dlrs vs 12 dlrs prior\n    Pay March 19\n    Record March 13\n    Note: 1986 payout includes two dlrs a share extra dividend\n    1985 payout includes four dlrs a share extra dividend\n Reuter\n&#3;',0
+'TOTAL U.S. COPPER STOCKS LOWER IN JANUARY Total copper stocks held by U.S. rod\nmills and refiners (including wirebars, cathodes, scrap, rod\nand in-process material) dropped to 155,467,000 lbs at the end\nof January from 203,513,000 lbs at the end of December, the\nAmerican Bureau of Metal Statistics said.\n    Rod stocks held by refiners and rod mills decreased to\n61,384,000 lbs in January from 69,986,000 lbs in December.\n    Cathode inventories at rod mills fell to 86,456,000 lbs i [...]
+'ONE OFFER FOR SRW WHEAT ON CALL SESSION, NO MILO One offer but no bid was posted for SRW\nwheat on the call session at the St Louis Merchants Exchange\ntoday. There were no bids or offers for milo.\n    June 15-July 15 bill of lading for wheat was offered at 17\nover July, no comparison, no bid.\n Reuter\n&#3;',1
+'UNITED HEALTHCARE CORP &lt;UNIH> 4TH QTR NET Shr 10 cts vs 13 cts\n    Net 1,553,000 vs 1,541,000\n    Revs 73.1 mln vs 32.1 mln\n    Avg shrs 15,474,000 vs 12,316,000\n    Year\n    Shr 47 cts vs 24 cts\n    Net 7,241,000 vs 2,835,000\n    Revs 216.2 mln vs 101.2 mln\n    Avg shrs 15,492,000 vs 11,921,000\n    Note: Net income includes extraordinary profit from\nrecognition of tax loss carryforward of 920,000 dlrs, or six\ncts a share, in 1986 year, and of 785,000 dlrs, or seven cts a\ [...]
+'RAYTECH CORP &lt;RAY> 4TH QTR DEC 28 NET Shr profit 78 cts vs loss 1.05 dlrs\n    Net profit 2,336,000 vs loss 3,002,000\n    Revs 26.0 mln vs 26.7 mln\n    Year\n    Shr profit 1.59 dlrs vs loss 6.35 dlrs\n    Net profit 4,688,000 vs loss 18.2 mln\n    Revs 113.5 mln vs 112.4 mln\n    NOTE: 1986 4th qtr and yr includes loss carryfoward of\n534,000 dlrs and 1,662,000 dlrs, respectively.\n Reuter\n&#3;',0
+'DATAMAG INC &lt;DMAG> 1ST QTR DEC 31 LOSS Net loss 92,623 vs profit 11,209\n    Sales 93,483 vs 189,388\n    Note: per share data not available, as company went public\nin January, 1987.\n Reuter\n&#3;',0
+'ROYAL BANK SEES IMPROVED RESULTS &lt;Royal Bank of Canada>, in reporting a\n19 pct drop in first quarter earnings, said it expects to\nreport improved results in future earnings periods.\n    \"Healthy consumer credit growth, record fee-based income,\nhighly profitable securities and foreign exchange trading, and\na solid capital position...combined with the restraint of\nnon-interest expenses, should lead to improved results in the\nperiods ahead,\" chairman Allan Taylor said in a stat [...]
+'BELGIAN SAYS EC WOULD REACT TO TEXTILE BILL Belgian Foreign Trade Minister Herman\nDe Croo said if Congress passed legislation curbing world\ntextile imports the only way the European Community (EC) could\nreact was to retaliate.\n    De Croo said at a news conference \"if you limit textile\nimports, you will re-orient textiles to Europe.\"\n    And that he said would trigger EC taxes on U.S. goods.\n    Congress passed a textile bill two years ago, but it was\nvetoed by President Reaga [...]
+'KAY CORP &lt;KAY> 4TH QTR NET Oper shr 25 cts vs 1.21 dlrs\n    Oper net 1,366,000 vs 6,287,000\n    Revs 251.3 mln vs 107.1 mln\n    Year\n    Oper shr 1.10 dlrs vs 1.06 dlrs\n    Oper net 5,552,000 vs 4,982,000\n    Revs 827.5 mln vs 434.4 mln\n    NOTE: Oper net excludes results of Kay Jewelers Inc, a\nformer subsidiary. On Dec 31, 1986 company distributed\nremaining 80.4 pct interest in subsidiary to Kay Corp holders.\n    1985 amts restated in connection with company\'s\ndistributi [...]
+'ROSTENKOWSKI SAYS HE WILL OPPOSE PROTECTIONIST TRADE BILL IN U.S. HOUSE\n ',0
+'PANTASOTE INC &lt;PNT> 4TH QTR LOSS Oper shr loss four cts vs loss 33 cts\n    Oper net loss 154,000 vs loss 1,301,000\n    Sales 30.0 mln vs 27.0 mln\n    Year\n    Oper shr profit 60 cts vs loss 16 cts\n    Oper net profit 2,364,000 vs loss 608,000\n    Sales 113.5 mln vs 132.8 mln\n    NOTE: Net excludes extraordinary charges from provision for\nroofing products warranties and costs from sale of\nprinting/laminate division of 320,000 dlrs vs 10.3 mln dlrs in\nquarter and 4,3200,000 d [...]
+'ROSTENKOWSKI OPPOSES PROTECTIONIST TRADE BILL House Ways and Means Committee\nChairman Dan Rostenkowski said Congress must avoid a temptation\nto pass a protectionist trade bill this year.\n    In remarks prepared for delivery before the National Press\nClub, Rostenkowski, D-Ill., predicted major trade legislation\nwill be sent to President Reagan by the end of this year.\n    But he warned that his \"conciliatory message\" on the trade\nbill did not mean he would oppose a proposal that [...]
+'IMTEC &lt;IMTC> GETS MERGER OFFER Imtec Inc said some\nshareholders of Computer Identics Inc &lt;CIDN> have proposed a\nmerger of the two companies.\n    The company said the shareholders had previously expressed\ndissatisfaction with Computer Identics\' management and had\ninformed Computer Identics that the present board no longer had\nthe support of a majority of shares held.\n    It said the shareholders had called for the resignation of\nall but one of Computer Identics\' directors [...]
+'KAY JEWELERS INC &lt;KJI> 4TH QTR NET Shr 1.62 dlrs vs 1.33 dlrs\n    Net 10.3 mln vs 8,459,000\n    Revs 127.5 mln vs 95.7 mln\n    Year\n    Shr 1.52 dlrs vs 1.20 dlrs\n    Net 9,669,000 vs 7,481,000\n    Revs 278.1 mln vs 232.00 mln\n          \n Reuter\n&#3;',0
+'ICO PACT UNLIKELY BY AUTUMN - ITALIAN ADVISER The prospects of the\nInternational Coffee Organization (ICO) reaching an agreement\non coffee export quotas before September appear dim, Alberto\nHesse, former president of the European Coffee Federation,\nsaid.\n    \"There is no real goodwill in certain delegations to go to\nquotas,\" Hesse, who advises the Italian Foreign Affairs Ministry\non coffee issues, told Reuters. He declined to name the\ndelegations.\n    A special meeting betwee [...]
+'WALL STREET STOCKS/ANACOMP INC &lt;AAC> Anacomp Inc, one of the most actively\ntraded NYSE issues, rose today as at least one analyst expected\nearnings to be boosted by its planned acquisition of a\nmicrographics company.\n    Anacomp rose 1/2 to 6-3/4 on volume of 950,000 shares after\ntrading as high as seven earlier.\n    Howard Harlow, analyst at Whale Securities Corp, said\nAnacomp\'s earnings for fiscal 1987 ending September 31 could be\ndoubled to 80 cts a share from the 40 cts  [...]
+'CORRECTED - LIFETIME&lt;LFT> TO BUY NIPPON LACE SAHRES Lifetime Corp said it agreed to buy\nfive mln shares or 16 pct of &lt;Nippon Lace Co Ltd> for 3.28 dlrs\na share, or 16.5 mln dlrs.\n    It said it plans to enter the health care business in\nJapan.\n    In addition, it said &lt;Koba Electronics Co Ltd>, an\naffiliate of Nippon, will buy four mln unissued shares, or a 12\npct stake, of Lifetime for 20 mln dlrs or five dlrs a share. -\nCorrects to show Nippon\'s affiliate Koba buying [...]
+'U.K. EXPORTS BODY GETS NEW EXECUTIVE DIRECTOR Export Credits Guarantee Department has\nnamed Malcolm Stephens, director of export finance at Barclay\'s\nBank Plc and a former career civil servant at ECGD for 17\nyears, to the post of executive director, a department\nspokesman said.\n    Stephens replaces Jack Gill, who is retiring early aged 57.\n    A drop in the ECGD\'s business volume and a rise in its debt\nto the Exchequer have led to criticism in Parliament in recent\nyears.\n    [...]
+'OILS/FATS STOCKS SEEN FALLING SHARPLY IN 1986/87 Visible stocks of 17 oils and fats are\nprobably peaking now and are likely to fall sharply by October\n1 this year, the Oil World newsletter said.\n    Oil World forecast that stocks of oils and fats may be cut\nto only 9.8 mln tonnes at the end of this season, compared with\n10.6 mln a year earlier.\n    Its survey covered  13 oils -- soy, cotton, groundnut, sun,\nrape, sesame, corn, olive, coconut, palmkernel, palm, lin and\ncastor  -- [...]
+'COLOMBIA TRADERS SAY NEW COFFEE STRATEGY VITAL Coffee producing countries must quickly\nmap out a fresh common strategy following the failure of the\nInternational Coffee Organization, ICO, to reach agreement on\nexport quotas, Gilberto Arango, president of Colombia\'s private\ncoffee exporters\' association, said.\n    Arango told Reuters that the most intelligent thing now\nwould be to seek a unifying stand from producers, including\nBrazil, in order to map out a strategy to defend pr [...]
+'TENDER LOVING &lt;TLCI>, STAFF &lt;STAF> EXTEND PACT Tender Loving Care Health Care\nServices Inc said it and Staff Buildiers Inc have extended the\nterm of their merger agreement until May 31.\n    Tender Loving Care also said &lt;Norrell Corp> agreed not to\nacquire any additional Staff Builders shares until September\n30, adding Norrell was paid 750,000 dlrs for the standstill\narrangement. \n    Tender Loving Care said it agreed to buy the 610,000 Staff\nBuilders common held by Norr [...]
+'SOVIET SOYMEAL IMPORTS SEEN RISING IN 1987 Soviet imports of soymeal may reach or\nexceed one mln tonnes between January and September this year,\nthe Oil World newsletter said.\n    Oil World said it was likely the Soviet Union would reduce\nsoybean imports and step up significantly its imports of meal.\n    At least 500,000 tonnes of soymeal may be shipped from the\nEuropean Community and South America in the January/March\nquarter, with additional large quantities likely to be import [...]
+'COLOMBIA TO SELL SUGAR, LONDON TRADERS SAY Colombia is holding a snap selling tender\ntonight for one cargo of world market raw sugar, traders said.\n    The sugar is for March 15/April 15 shipment and bids are\nbeing sought based on the New York May delivery futures\ncontract, they added.\n Reuter\n&#3;',0
+'VARIAN &lt;VAR> IN TALKS WITH PHILIPS ELECTRONICS Varian Associates Inc said it\nis holding discussions with Philips Electronics regarding the\npurchase of Philips\' broadcast transmission unit in the United\nKingdom, Pye TVT Limited.\n    Pye TVT designs and manufactures broadcast transmission\nequimpment, specializing in television frequencies.\n Reuter\n&#3;',0
+'BUTLER &lt;BTLR> TO SELL PART OF UNIT Butler Manufacturing Co said it\nagreed in principal to sell part of its controls division to\nEnercon Data Corp of Minneapolis.\n    Terms of the sale were not disclosed.\n    The transaction, expected to be closed in March, involves\nthe controls division\'s energy management and power line\ncarrier product lines.\n    Butler said costs associated with the sale were included in\nits restructuring charge taken in last year\'s fourth quarter,\nand w [...]
+'FERTILITY AND GENETICS RESEARCH &lt;BABY> 1ST QTR Periods ended December 31\n    Shr loss 10 cts vs loss seven cts\n    Net loss 316,289 vs loss 189,140\n    Revs 61,762 vs 8,934\n Reuter\n&#3;',0
+'ROSTENKOWSKI RELUCTANT TO BACK TAX HIKE House Ways and Means Committee\nChairman Dan Rostenkowski said he would be reluctant to back\nthe tax increase if it did not have President Reagan\'s support.\n    He told a National Press Club luncheon there would be a\nnumber of tax proposals that could be debated if Reagan sought\na tax increase to help balance the budget.\n    However, he said he would prefer to leave the tax rates\nenacted in last year\'s tax reform bill unchanged.\n    There [...]
+'&lt;MAGELLAN CORP> SETS MERGER WITH BALZAC Magellan Corp said it has entered into a\nletter of intent to acquire Balzac Investments Inc in a\ntransaction that will result in former Balzac shareholders\nowning about 83 pct of the combined company.\n    The company said on completion of the merger, the combined\ncompany wopuld be known as Power-Cell Inc and be engaged in the\ndevelopment of Balzac technology related to its Quick Charge\nproduct for charging auto batteries.\n    The transa [...]
+'UNITED COS FINANCIAL CORP &lt;UNCF> 4TH QTR NET Shr 68 cts vs 78 cts\n    Net 2,432,179 vs 2,236,471\n    Revs 50.8 mln vs 35.1 mln\n    Avg shrs 3,600,000 vs 2,850,000\n    Year\n    Shr 2.82 dlrs vs 3.35 dlrs\n    Net 10.0 mln vs 9,554,658\n    Revs 177.5 mln vs 138.1 mln\n    Avg shrs 3,567,123 vs 2,850,000\n Reuter\n&#3;',0
+'BRISTOL-MYERS CO &lt;BMY> SETS QUARTERLY Qtly div 70 cts vs 70 cts prior\n    Pay May One\n    Record April Three\n Reuter\n&#3;',0
+'AMERICAN AIRCRAFT CORP BUYS PRIVATE FIRM &lt;American Aircraft Corp> said it\nhas acquired a 51 pct interest in privately-held &lt;Hunter\nHelicopter of Nevada, Inc>.\n    The purchase was made for an undisclosed amount of American\nAircraft stock, the company said.\n    It said the acquisition will increase shareholder equity in\nAmerican Aircraft to 45 cts per share from 18 cts per share.\n    Hunter Helicopter builds two-passenger helicopters that\nretail for about 50,000 dlrs.\n Reu [...]
+'AID CORP &lt;AIDC> RAISES QUARTERLY DIVIDEND Qtly div nine cts vs eight cts in prior qtr\n    Payable March 31\n    Record March 13\n Reuter\n&#3;',0
+'INTERNATIONAL TECHNOLOGY &lt;ITX> MAKES ACQUISITION International Technology Corp\nsaid it has purchased &lt;Western Emergency Services Inc> in a\npooling-of-interests transaction.\n    International Technology, a hazardous materials management\ncompany, said it purchased Western Emergency, an environmental\nservices firm, to offer a broader range of environmental\nservices to the Gulf Coast area.\n Reuter\n&#3;',0
+'&lt;D.H. HOWDEN AND CO LTD> INCREASES DIVIDEND Semi-annual 30 cts vs 25 cts prior\n    Pay June 30\n    Record June 15\n Reuter\n&#3;',0
+'&lt;CO-STEEL INC> 4TH QTR NET Oper shr 25 cts vs 25 cts\n    Oper net 6,322,000 vs 4,660,000\n    Revs 189.1 mln vs 174.7 mln\n    Avg shrs 23.5 mn vs 17.1 mln\n    Year\n    Oper shr 1.04 dlrs vs 14 cts\n    Oper net 21,929,000 vs 3,629,000\n    Revs 760.2 mln vs 674.8 mln\n    Avg shrs 20.5 mln vs 17.1 mln\n    Note: Qtr shr and net exclude tax gain of 4,573,000 dlrs or\n17 cts share, versus gain of 17,259,000 dlrs or 1.02 dlrs share\n    Year shr and net exclude tax gain of 15,992,00 [...]
+'PERU COFFEE CROP UNAFFECTED BY RAINS Recent heavy rains have not affected the\nPeru coffee crop and producers are looking forward to a record\nharvest, the president of one of Peru\'s four coffee cooperative\ngroups said.\n    Justo Marin Ludena, president of the Cafe Peru group of\ncooperatives which accounts for about 20 pct of Peru\'s exports,\ntold Reuters a harvest of up to 1,800,000 quintales (46 kilos)\nwas expected this year. He said Peru exported 1,616,101\nquintales in the yea [...]
+'WILLCOX AND GIBBS INC &lt;WG> 4TH QTR NET Oper shr 42 cts vs 41 cts\n    Oper net 2,322,000 vs 1,785,000\n    Sales 72.3 mln vs 59.8 mln\n    Avg shrs 5,527,000 vs 4,355,000\n    Year\n    Oper shr 1.48 dlrs vs 1.40 dlrs\n    Oper net 7,637,000 vs 5,973,000\n    Sales 261.7 mln vs 224.7 mln\n    Avg shrs 5,165,000 vs 4,277,000\n    NOTE: 1985 operating net excludes gains of 1,523,000 dlrs,\nor 35 cts a share, in quarter and 5,090,000 dlrs, or 1.19 dlrs\na share, in year from tax carryfo [...]
+'GE &lt;GE> PROFIT OUTLOOK AIDED BY ENGINE ORDER One of General Electric Co\'s biggest\nbusinesses, aircraft engines, will ride a wave of increasing\nprofits into 1991 because of a new contract worth 650 mln dlrs,\nWall Street analysts said.\n    Previously, it was expected the business would peak and\ndecline at some point in the next five years. The improved\noutlook results from AMR Corp\'s &lt;AMR> decision to order 40 new\nplanes powered by CF6-80C2 GE engines.\n    \"Creative finan [...]
+'FRENCH EXPORTERS SEE HIGHER WHEAT SALES TO CHINA French exporters estimated that around\n600,000 tonnes of French soft wheat has been sold to China for\ndelivery in the 1986/87 (July/June) year.\n    Around 300,000 tonnes were exported to China between July\n1986 and February this year.\n    Another 100,000 to 150,000 tonnes will be shipped during\nthis month and around the same amount in April, they said.\n    France sold around 250,000 tonnes of soft wheat to China in\n1985/86, accord [...]
+'BUCKHORN INC &lt;BKN> 4TH QTR LOSS Oper shr loss 1.24 dlrs vs profit 19 cts\n    Oper net loss 1,965,000 vs profit 646,000\n    Revs 10.5 mln vs 11.6 mln\n    Avg shrs 1,741,000 vs 3,581,000\n    12 mths\n    Oper shr loss 1.55 dlrs vs profit 42 cts\n    Oper net loss vs profit 2,051,000 vs 1,492,000\n    Revs 42.9 mln vs 45.5 mln\n    Avg shrs 1,816,000 vs 3,581,000\n    NOTE: prior qtr excludes loss 229,000, or seven cts per\nshare, for discontinued operations.\n    1986 qtr excludes  [...]
+'BUCKHORN INC &lt;BKN> SEES HIGHER PROFITS IN 1987 Buckhorn Inc said itd nine\nmillion dlr backlog for orders and a less expensive operating\nenvironment should yield significant levels of operating\nprofits for 1987.\n    Buckhorn, a manufacturer of reusable plastic shipping and\nstorage containers, recorded 2,051,000, or 1.55 dlrs per share,\noperating net loss for 1986.\n    Buckhorn said the year\'s results included a 4,250,000\nnon-recurring expense incurred to complete major restru [...]
+'ALCAN, BERTONE MAKE ALUMINUM STRUCTURE CAR Alcan Aluminium Ltd said it joined with\nCarrozzeria Bertone S.P.A. to exhibit Alcan\'s technology in\naluminum structured vehicles at Geneva\'s international auto\nsalon.\n    Alcan said it and Bertone have built several Bertone X1/9\nsports cars with structures of adhesively bonded sheet\naluminum. It said the bodies were made on presses used for\nBertone\'s steel-structured sports cars.\n    Alcan said two of the cars are currently being tes [...]
+'CCR VIDEO 1ST QTR NOV 30 NET Shr 2-1/5 cts vs nil\n    Net 156,726 vs 11,989\n    Sales 1,157,883 vs 890,138\n\n Reuter\n&#3;',0
+'DEL E. WEBB INVESTMENT &lt;DWPA> 4TH QTR NET Shr eight cts vs 16 cts\n    Net 188,000 vs 354,000\n    Revs 538,000 vs 594,000\n    Year\n    Shr 31 cts vs 28 cts\n    Net 692,000 vs 617,000\n    Revs 2,640,000 vs 906,000\n    (Del E. Webb Investment Properties Inc)\n Reuter\n&#3;',0
+'U.S. EXPORTERS REPORT 104,000 TONNES OF  CORN SOLD TO UNKNOWN DESTINATIONS FOR 1986/87\n ',1
+'F.W. WOOLWORTH\'S &lt;Z> 1986 PROFITS RISE 21 PCT The specialty retailing area continues\nto pay off for F.W. Woolworth Co, once known only as a five and\ndime store chain, which said its 1986 income rose 21 pct.\n    It was the fourth consecutive year of profit increases for\nthe New York-based retailer which was founded over 100 years\nago.\n    Woolworth\'s 1986 income rose to 214 mln dlrs or 3.25 dlrs\nper share compared with 1985\'s profit of 177 mln or 2.75 dlrs\nper share. Revenu [...]
+'ROYAL RESOURCES CORP &lt;RRCO> 2ND QTR DEC 31 LOSS Shr loss 72 cts vs loss 1.48 dlrs\n    Net loss 4,466,006 vs loss 9,091,688\n    Revs 608,181 vs 1,280,727\n    Six Mths\n    Shr loss 77 cts vs loss 1.51 dlrs\n    Net loss 4,752,455 vs loss 9,265,457\n    Revs 1,444,149 vs 2,791,188\n   \n Reuter\n&#3;',0
+'CANADA ECONOMY EXPECTED TO GROW MODERATELY Canadian economic growth is expected to\nslow further in 1987, but an improved the trade picture should\nkeep the country from recession, economists said.\n    \"The economy is ready for about a 2.0 pct rate of growth\nover the course of 1987,\" said Carl Beigie, Chief Economist at\nDominion Securities Pitfield Ltd.\n    Statistics Canada reported that gross domestic product,\ngrew 3.1 pct in 1986, the fourth year of continuous expansion,\nbut  [...]
+'USDA REPORTS CORN SOLD SOLD TO UNKNOWN The U.S. Agriculture Department said\nprivate U.S. exporters reported sales of 104,000 tonnes of corn\nto unknown destinations for shipment in the 1986/87 marketing\nyear.\n    The marketing year for corn began September 1, it said.\n Reuter\n&#3;',1
+'AMERICAN AIRCRAFT BUYS INTO HELICOPTER BUILDER &lt;American Aircraft Corp> said it\nhas acquired a 51 pct interest in privately-owned &lt;Hunter\nHelicopter of Nevada Inc> for an undisclosed amount of stock.\n    An American Aircraft official said the company has an\noption to acquire the remaining 49 pct.\n    Hunter Helicopter is in the business of building a two\npassenger helicopter retailing for about 50,000 dlrs each which\nis certified by the Federal Aviation Administration. The\ [...]
+'PREMIER INDUSTRIAL CORP &lt;PRE> REGULAR DIVIDEND Qtly div 11 cts vs 11 cts in prior qtr\n    Payable April 10\n    Record March 23\n Reuter\n&#3;',0
+'INTERNATIONAL TECHNOLOGY &lt;ITX> BUYS FIRM International Technology Corp\nsaid it has purchased privately-held Western Emergency Service\nInc in a stock transaction.\n    Western Emergency, an environmental services firm, has\nannual sales of between one and two mln dlrs, compared to\nInternational Technology\'s roughly 240-mln-dlr annual sales, a\nspokesman for International Technology said.\n Reuter\n&#3;',0
+'CONTINENTAL GENERAL INSURANCE &lt;CGIC> 4TH QTR NET Shr 20 cts vs 21 cts\n    Net 783,564 vs 806,278\n    Year\n    Shr 89 cts vs 86 cts\n    Net 3,443,392 vs 3,242,588\n    Note:Full company name is Continental General Insurance Co\n    Net includes profit from sale of securities of 155,410\ndlrs, or four cts a share, and 192,896 dlrs, or five cts a\nshare, respectively, in 1986 qtr and year, and of 12,879 dlrs,\nor nil per share, in 1985 qtr. Net for 1985 year includes loss\nfrom sale [...]
+'MARGAUX CONTROLS INC &lt;MARGX> 3RD QTR LOSS Shr loss 1.60 dlrs vs loss 45 cts\n    Net loss 9,883,000 vs loss 2,744,000\n    Revs 1,309,000 vs 3,289,000\n    Nine mths\n    Shr loss 2.29 dlrs vs loss 98 cts\n    Net loss 14.1 mln vs loss 6,008,000\n    Revs 4,577,000 vs 11.9 mln\n    NOTE: Current periods include loss of 7.5 mln dlrs from\ndiscontinued operations.\n Reuter\n&#3;',0
+'MERCHANTS GROUP INC &lt;MRCH> 4TH QTR OPER NET Oper shr profit 21 cts vs loss 2.13 dlrs\n    Oper net profit 456,000 vs loss 2,454,000\n    Revs 16.3 mln vs 13.1 mln\n    Year\n    Oper shr 1.39 dlrs vs loss 2.41 dlrs\n    Oper net profit 1,815,000 vs loss 2,779,000\n    Revs 58.0 mln vs 43.8 mln\n    NOTE: 1986 4th qtr and yr oper net exclude realized\ninvestment gains of 279,000 dlrs and 1,013,000 dlrs,\nrespectively, which includes provision for income taxes of\n238,000 dlrs and 863, [...]
+'CONTINENTAL GENERAL &lt;CGIC> SETS STOCK DIVIDEND Continental General Insurance Co\nsaid its board of directors declared a 10 pct stock dividend on\ncommon shares, payable April one to shareholders of record\nMarch 16.\n    The company yesterday paid a quarterly cash dividend of\n2-1/2 cts a share, unchanged from the previous quarter, to\nshareholders of record February 20.\n Reuter\n&#3;',0
+'MARGAUX CONTROLS INC &lt;MARGX> 3RD QTR DEC 28 LOSS Shr loss 1.60 dlrs vs loss 45 cts\n    Net loss 9,883,000 vs loss 2,744,000\n    Revs 1,309,000 vs 3,289,000\n    Nine mths\n    Shr loss 2.29 dlrs vs loss 98 cts\n    Net loss 14.1 mln vs loss 6,008,000\n    Revs 4,577,000 vs 11.9 mln\n    Note: 1986 net losses inlcude 7,507,000-dlr charge from\ndiscontinued operations of building management system sold to\nCetek System Inc on Jan 30, 1987.\n Reuter\n&#3;',0
+'HARRIS CUTS STAKE IN BELL INDUSTRIES &lt;BI> Harris Associates L.P., a Chicago\ninvestment advisory limited partnership, said it lowered its\nstake in Bell Industries Inc to 1,015,800 shares, or 18.7 pct\nof the total outstanding, from 1,083,800 shares, or 20.0 pct.\n    In a filing with the Securities and Exchange Commission,\nHarris said it sold 68,000 Bell common shares between Dec 18\nand Feb 20 at prices ranging from 20.25 to 25.24 dlrs each.\n    Harris said its dealings in Bell s [...]
+'GOODYEAR &lt;GT> CHAIRMAN CRITICIZES CORPORATE RAIDS The chairman of Goodyear Tire and Rubber\nCo, a concern that survived a recent hostile takeover bid,\ncharged that \"terrorists in three-piece suits\" are undermining\nthe nation\'s industrial base.\nIn a speech to a meeting of south Florida business executives,\nGoodyear Chairman Robert Mercer lashed out at corporate raiders\nand takeover specialists, accusing them of causing serious harm\nto the companies they target.\n  \"Their int [...]
+'&lt;TIVERTON PETROLEUMS LTD> NINE MTHS DEC 31 NET Shr six cts vs five cts\n    Net 459,131 vs 289,433\n    Revs 1,808,832 vs 1,680,240\n Reuter\n&#3;',0
+'MORE INTERMEDIATE U.S. WHEAT CREDITS FOR MOROCCO The Commodity Credit Corporation has\napproved an additional 45.0 mln dlrs under its interemdiate\nexport credit guarantee program, GSM-103, for sales of U.S.\nwheat to Morocco, the U.S. Agriculture Department said.\n    The action increases Morocco\'s cumulative fiscal year 1987\nprogram for wheat under GSM-103 to 75.0 mln dlrs.\n    The credit terms extended for exports under the program\nmust be in excess of three years but no more tha [...]
+'MCA INC &lt;MCA> SETS REGULAR QTRLY PAYOUT Qtrly div 17 cts vs 17 cts prior\n    Pay April 13\n    Record March 25\n Reuter\n&#3;',0
+'SOVIET GRAINS SEEN ENTERING SPRING ON SHAKY NOTE Soviet winter grains could be off to\na faulty start this spring after enduring an usually dry fall\nand cold winter, weather and crop analysts said.\n    Prospects for another near-record grain harvest in the\nSoviet Union appear dim at this point, but it is premature to\nforecast any major crop problems, analysts said.\n    But the situation bears careful watching over the next six\nweeks and will ultimately impact the Soviet grain supp [...]
+'ALCAN (AL) TO CLOSE WEST GERMAN SMELTER (Alcan Aluminium Ltd) is closing its\naluminum smelter in Ludwigshafen, West Germany this June due to\nhigh operating costs, an Alcan spokesman said.\n    The smelter, near Frankfurt, had annual capacity of about\n44,000 metric tons but was operating at about half that in\nJanuary, spokesman Fernand Leclerc said.\n    Leclerc said Alcan decided it would cost too much to\nmodernize the plant.\n    He said there is a possibility the company will sel [...]
+'ROYAL RESOURCES CORP &lt;RRCO> 2ND QTR DEC 31 LOSS Shr loss 72 cts vs loss 1.48 dlrs\n    Net loss 4,466,006 vs loss 9,091,688\n    Revs 608,181 vs 1,280,727\n    Avg shrs 6,194,000 vs 6,155,461\n    First half\n    Shr loss 77 cts vs loss 1.51 dlrs\n    Net loss 4,752,455 vs loss 9,265,457\n    Revs 1,444,149 vs 2,791,188\n    Avg shrs 6,174,731 vs 6,155,461\n    NOTE: Losses include charges of 4.0 mln dlrs in both 1986\nperiods vs 14.4 mln dlrs in both 1985 periods for write-down of\n [...]
+'HANSON TRUST &lt;HAN> COMPLETES KAISER PURCHASE Hanson Trust PLC said Kaiser Cement\nshareholders today approved the previously announced merger\nagreement making Kaiser Cement an indirect wholly owned unit of\nHanson Trust.\n    Hanson said that promptly following the filing of the\ncertificate of merger Kaiser Cement common shares will be\ndelisted from the New York Stock Exchange.\n    Hanson also said, in accordance with the merger agreement\nKasier Cement also has redeemed all outs [...]
+'OIL PRICES RISE ON SAUDI EFFORT Crude oil prices rallied today, moving\nover 17.00 dlrs a barrel because of Saudi Arabia\'s determined\neffort to support prices, analysts said.\n    \"The Saudis and other OPEC nations are jawboning the market,\nhoping to restore confidence and prices and to do this without\nanother meeting,\" said Sanford Margoshes, oil analyst with\nShearson Lehman Brothers Inc.\n    \"But OPEC is not out of the woods yet by a longshot due to\nseasonal declines in dema [...]
+'TREASURY BALANCES AT FED ROSE ON FEB 27 Treasury balances at the Federal\nReserve rose on Feb 27 to 3.482 billion dlrs from 1.538 billion\ndlrs the previous business day, the Treasury said in its latest\nbudget statement.\n    Balances in tax and loan note accounts fell to 21.334\nbillion dlrs from 25.164 billion dlrs on the same respective\ndays.\n    The Treasury\'s operating cash balance totaled 24.816\nbillion dlrs on Feb 27 compared with 26.702 billion dlrs on Feb\n26.\n Reuter\n&#3;',0
+'KASLER CORP &lt;KASL> 1ST QTR JAN 31 NET Shr profit three cts vs loss seven cts\n    Net profit 161,000 vs loss 367,000\n    Revs 24.3 mln vs 26.5 mln\n Reuter\n&#3;',0
+'COFFEE MAY FALL MORE BEFORE NEW QUOTA TALKS Coffee prices may have to fall even lower\nto bring exporting and importing countries once more round the\nnegotiating table to discuss export quotas, ICO delegates and\ntraders said.\n    The failure last night of International Coffee\nOrganization, ICO, producing and consuming countries to agree\nexport quotas brought a sharp fall on international coffee\nfutures markets today with the London May price reaching a\n4-1/2 year low at one stage [...]
+'SEAMAN FURNITURE &lt;SEAM> IN STOCK SPLIT Seaman Furniture Co Inc said\nits board declared a two-for-one split of the company\'s\noutstanding stock.\n    It said holders of its common will receive one additional\nshare for each share held as of March 20. It said certificates\nrepresenting additional shares will be distributed as soon as\npossible after April 10.\n Reuter\n&#3;',0
+'&lt;SCOTT\'S HOSPITALITY INC> 3RD QTR JAN 31 NET Oper shr eight cts vs eight cts\n    Oper net 5,219,000 vs 4,377,000\n    Revs 214.9 mln vs 182.5 mln\n    NINE MTHS\n    Oper shr 51 cts vs 51 cts\n    Oper net 29.6 mln vs 27.9 mln\n    Revs 634.5 mln vs 569.3 mln\n    1986 net excludes extraordinary gain of 8,031,000 dlrs or\n15 cts shr.\n    1987 net reflects three-for-one stock split in 2nd qtr and\nissue of 1.5 mln subordinate voting shares in 1st qtr.\n Reuter\n&#3;',0
+'TELXON CORP &lt;TLXN> SEES HIGHER REVENUES Telxon Corp reported it expects\nrevenues for the quarter ending March 31 to be between 26 to 28\nmln dlrs.\n    The company said earnings per share for the period should\nbe between 23 cts to 26 cts.\n    \"The company is making an announcement at this time in\nresponse to analysts fourth quarter revenues and earnings per\nshare estimates of 29 mln to 32 mln and 24 cts to 30 cts,\nrespecivtely,\" said Raymond Meyo, president and chief executiv [...]
+'ROYAL RESOURCES &lt;RRCO> SETS VOTE ON SALE Royal Resources Corp said its board set\nan April 21 a shareholders\' meeting to vote on the sale of its\noil and gas properties for 3,650,000 dlrs, an increase in\nauthorized common to 20 mln shares from 15 mln and the change\nof the company\'s name to Royal Gold Inc.\n    The company has agreed to sell its oil and gas properties\nto &lt;Victoria Exploration N.L.> of Perth, Western Australia.\n    Royal Resources also said the sale of its int [...]
+'AMERICAN VANGUARD CORP &lt;AMGD> YEAR NET Shr 57 cts vs 27 cts\n    Net 1,002,000 vs 470,000\n    Sales 15.9 mln vs 12.0 mln\n    Note: 4th qtr figures not given.\n   \n Reuter\n&#3;',0
+'HARPER INTERNATIONAL INC &lt;HNT> 3RD QTR JAN 31 Shr 12 cts vs 19 cts\n    Net 369,000 vs 358,000\n    Revs 7,076,000 vs 6,712,000\n    Avg shrs 3,050,000 vs 1,850,000\n    Nine mths\n    Shr 53 cts vs 63 cts\n    Net 1,523,000 vs 1,158,000\n    Revs 22.6 mln vs 20.7 mln\n    Avg shrs 2,852,198 vs 1,850,000\n Reuter\n&#3;',0
+'WITCO CORP &lt;WIT> SETS REGULAR QTLY PAYOUT Qtly div 28 cts vs 28 cts prior\n    Pay April one\n    Record March 13\n Reuter\n&#3;',0
+'PANCANADIAN TO SELL NORTH SEA PROPERTIES, UNIT TO WHITEHALL FOR CASH\n ',0
+'&lt;MDS HEALTH GROUP LIMITED> IN QTLY PAYOUT Qtly div six cts vs six cts prior\n    Pay April one\n    Record March 23\n Reuter\n&#3;',0
+'HARPER INTERNATIONAL INC &lt;HNT> 3RD QTR NET Qtr ended Jan 31\n    Shr 12 cts vs 19 cts\n    Net 369,000 vs 358,000\n    Revs 7,076,000 vs 6,712,000\n    Avg shrs 3,050,000 vs 1,850,000\n    Nine mths\n    Shr 53 cts vs 63 cts\n    Net 1,523,000 vs 1,158,000\n    Revs 22.6 mln vs 20.7 mln\n    Avg shrs 2,852,198 vs 1,850,000\n Reuter\n&#3;',0
+'BURST AGRITECH INC &lt;BRZT> YEAR NOV 30 LOSS Net loss 705,496 vs loss 182,766\n    Sales 642,590 vs 1,126,315\n Reuter\n&#3;',0
+'API SAYS DISTILLATE STOCKS OFF 4.4 MLN BBLS, GASOLINE OFF 30,000, CRUDE UP 700,000\n ',0
+'ALCAN TO CLOSE WEST GERMAN SMELTER Alcan Aluminium Ltd is closing its\naluminum smelter in Ludwigshafen, West Germany this June due to\nhigh operating costs, an Alcan spokesman said.\n    The smelter, near Frankfurt, had annual capacity of about\n44,000 tonnes but was operating at about half that in January,\nspokesman Fernand Leclerc said.\n    Leclerc said Alcan decided it would cost too much to\nmodernize the plant.\n    He said there is a possibility the company will sell the\nsmelt [...]
+'PANCANADIAN TO SELL BRITISH INTERESTS &lt;PanCanadian Petroleum Ltd>\nsaid it agreed to sell its working interest in its North Sea\nproperties and its British unit, Canadian Pacific Oil and Gas\nof Canada Ltd, to Whitehall Petroleum Ltd, a private British\ncompany.\n    PanCanadian, 87 pct-owned by Canadian Pacific Ltd &lt;CP>,\nsaid it would receive 1.7 mln British pounds cash (3.5 mln\nCanadian dlrs) at closing, expected in two to three months.\n    It said the deal is subject to appr [...]
+'TELXON &lt;TXLN> SEES SLIGHTLY HIGHER 4TH QTR NET Telxon Corp said it expects\nper-share earnings for its fourth quarter ending March 31 to be\nabout 23 cts to 26 cts on revenues of 26 mln dlrs to 28 mln\ndlrs.\n    For the year-ago quarter, the company earned 22 cts a\nshare, adjusted for a three-for-two stock split, on revenues of\n24.2 mln dlrs.\n    The company said it made the earnings estimate in response\nto analysts\' forecasts, which it said called for per-share\nearnings of 24 [...]
+'REID-ASHMAN &lt;REAS> TO DIVEST TEST PRODUCT UNIT Reid-Ashman Inc said it has\ndecided to divest its test products division, located in Santa\nClara.\n    The company said it will entertain offers through March 30.\nIt also said Steven Reid, a company founder and president of\nthe test division, has made an offer to purchase the unit.\n    The company\'s test division accounted for about ten pct of\ntotal revenues in the year ended Sept 30, 1986 and is currently\nrunning a revenue rate  [...]
+'PACIFIC LIGHTING COPR &lt;PLT> QUARTERLY DIVIDEND Qtly div 87 cts vs 87 cts\n    Pay Feb 17\n    Record Jan 20\n Reuter\n&#3;',0
+'CETEC CORP &lt;CEC> QUARTERLY DIVIDEND Qtly div five cts vs five cts\n    Pay May 22\n    Record May 8\n Reuter\n&#3;',0
+'API SAYS DISTILLATE, GAS STOCKS OFF IN WEEK Distillate fuel stocks held in\nprimary storage fell by 4.4 mln barrels in the week ended Feb\n27 to 127.10 mln barrels from 131.50 mln the previous week, the\nAmerican Petroleum Institute (API) said.\n    In its weekly statistical bulletin, the oil industry trade\ngroup said gasoline stocks fell 30,000 barrels to 252.92 mln\nbarrels from a revised 252.95 mln, while crude oil stocks rose\n700,000 barrels to 329.38 mln from a revised 328.68 mln [...]
+'JONES MEDICAL INDUSTRIES INC &lt;JMED> 4TH QTR NET Shr six cts vs five cts\n    Net 199,037 vs 135,587\n    Sales 1,594,895 vs 1,368,959\n    Avg shrs 3.1 mln vs 2.5 mln\n    Year\n    Shr 25 cts vs 19 cts\n    Net 695,398 vs 446,426\n    Sales 5,785,365 vs 4,520,781\n    Avg shrs 2.8 mln vs 2.4 mln\n Reuter\n&#3;',0
+'MAUI LAND AND PINAPPLE CO INC QUARTERLY DIVIDEND Qtly div 12-1/2 cts vs 12-1/2 cts\n    Pay March 31\n    Record Feb 27\n Reuter\n&#3;',0
+'U.S. WINE EXPORTS ROSE 15 PER CENT LAST YEAR Exports of American wine rose 14.9\nper cent last year to a total of 7.2 million gallons, the Wine\nInstitute said.\n    The San Francisco-based promotional group said 95 per cent\nof the exported wine was from California and the top three\nmarkets were Canada, Japan and Britain.\n    Japan, which edged out Britain as the leading importer of\nAmerican wines in 1985, continued in second place.\n    Canadian imports rose 3.2 per cent to 2.6 mil [...]
+'USDA TO REDUCE CITRUS ESTIMATING PROGRAM the U.S. Agriculture Department\'s\nNational Agricultural Statistics Services (NASS) said it will\nchange its citrus estimate program for California and Arizona,\nstarting in 1988.\n    NASS said it will discontinue California forecasts for\nlemons during December, February, March, May and June and for\ngrapefruit and tangerines for those months plus November.\n    Forecasts for lemons will be issued in October, November,\nJanuary, April and July [...]
+'&lt;TRIMAC LTD> YEAR NET Shr nine cts vs six cts\n    Net 3,500,000 vs 2,500,000\n    Revs 294.0 mln vs 351.5 mln\n    Note: 1986 year includes tax gain of 1,700,000 dlrs\n Reuter\n&#3;',0
+'OPPENHEIMER UPS VIACOM &lt;VIA> STAKE TO 7.7 PCT Oppenheimer and Co, a New York\nbrokerage firm, said it raised its stake in Viacom\nInternational Inc to the equivalent of 2,709,600 shares, or 7.7\npct of the total, from 2,232,400 shares, or 6.3 pct.\n    In a filing with the Securities and Exchange Commission,\nOppenheimer said it bought a net 477,200 Viacom common shares\nbetween Jan 19 and March 3 at prices ranging from 40.50 to an\naverage of 49.31 dlrs each. Part of its stake is in [...]
+'EMPI INC &lt;EMPI> 4TH QTR LOSS Shr loss 25 cts vs profit 11 cts\n    Net loss 446,005 vs profit 185,325\n    Sales 2.4 mln vs 2.5 mln\n    12 mths\n    Shr loss 16 cts vs profit 41 cts\n    Net loss 282,305 vs profit 709,787\n    Sales 10.1 mln vs nine mln\n Reuter\n&#3;',0
+'U.S. SENATE PANEL COULD CONSIDER TRADE MEASURE The U.S. Senate Agriculture Committee\nmay take up a bill tomorrow that would strengthen the\nactivities of U.S. agricultural trade teams in selected\ndeveloping countries, committee staff said.\n    The measure, sponsored by committee Chairman Patrick Leahy\n(D-Vt.) and Sen. John Melcher (D-Mont.), would establish trade\nteams of between six and nine persons drawn from federal\nagencies and private voluntary organizations, staff said.\n    [...]
+'FLORIDA PUBLIC &lt;FPUT> SPLITS STOCK, UPS DIV Florida Public Utilities Co\nsaid its board declared a three-for-two stock split on its\ncommon stock.\n    It said holders of record April 15 will receive one\nadditional share May one for each two shares held.\n    The company also said it raised the dividend on its common\nstock by two cts to 33 cts a share on a pre-split basis.\n    The dividend is payable April one to holders of record\nMarch 18.\n Reuter\n&#3;',0
+'CITY INVESTING TRUST &lt;CNVLZ> SETS CASH PAYOUT City Investing Co Liquidating Trust\nsaid it declared a cash distribution of 25 cts a unit, payable\nApril 10 to unit-holders of record April one.\n    The trust last paid a stock distribution of General\nDevelopment Corp &lt;GDB> shares in July.\n Reuter\n&#3;',0
+'FCOJ SUPPLIES SIGNIFICANTLY ABOVE YEAR AGO-USDA Total supply of frozen concentrated\norange juice (FCOJ) in 1986/87 is expected to be significantly\nabove year-earlier levels, even with carry-in stocks well below\nthe previous season, the U.S. Agriculture Department said.\n    In a summary of its Fruit Situation Report, the Department\nsaid Florida\'s imports of FCOJ, mostly from Brazil, have shown\nsharp gains to date.\n    The Department noted the price of FCOJ will probably be\naffec [...]
+'FLORIDA COMMERCIAL BANKS INC &lt;FLBK> DIVIDEND Qtly div 14 cts vs 19 cts prior\n    Pay March 31\n    Record March 16\n    Note: Quarterly dividend for prior quarter included special\npayout of five cts a share.\n Reuter\n&#3;',0
+'&lt;TIMMINCO LTD> YEAR NET Oper shr 33 cts vs 33 cts\n    Oper net 3,330,000 vs 2,969,000\n    Revs 95.9 mln vs 92.0 mln\n    Avg shrs 8,610,068 vs 7,603,219\n    Note: 1986 net excludes extraordinary gain of 577,000 dlrs\nor seven cts shr vs yr-ago gain of 71,000 dlrs or one ct shr.\n Reuter\n&#3;',0
+'&lt;UNITED FIRE AND CASUALTY> 4TH QTR NET Shr profit 31 cts vs loss 20 cts\n    Net profit 1,044,424 vs loss 515,425\n    Avg shrs 3,406,841 vs 2,544,531\n    Year\n    Shr profit 2.83 dlrs vs profit 42 cts\n    Net profit 8,811,142 vs profit 1,058,503\n    Avg shrs 3,111,464 vs 2,544,531\n    Note: Full company name is United Fire and Casualty Co\n    Net includes realized gains of 93,551 dlrs and 764,177\ndlrs, respectively, in 1986 qtr and year, and of 92,075 dlrs\nand 972,935 dlrs,  [...]
+'&lt;POWER CORP OF CANADA> 4TH QTR NET Oper shr 30 cts vs 24 cts\n    Oper net 38,686,000 vs 28,384,000\n    Revs 42.3 mln vs 31.2 mln\n    Year\n    Oper shr 1.05 dlrs vs 94 cts\n    Oper net 136,594,000 vs 110,831,000\n    Revs 153.3 mln vs 125.1 mln\n    Note: Fourth quarter results exclude extraordinary and\nother items which raised final 1986 net to 62,485,000 dlrs or\n49 cts a share and lowered final 1985 net to 18,941,000 dlrs or\n16 cts a share in 1985.\n    Full-year results exc [...]
+'U.S. CORN, SORGHUM PAYMENTS 50-50 CASH/CERTS Eligible producers of 1986 crop U.S.\ncorn and sorghum will receive an estimated 600 mln dlrs in\ndeficiency payments -- 50 pct in generic commodity certificates\nand 50 pct in cash, the U.S. Agriculture Department said.\n    It said corn producers will receive about 515 mln dlrs and\nsorghum producers about 85 mln dlrs.\n    Only the cash portion of the payments will be subject to\nthe 4.3 pct reduction in compliance with the Gramm-Rudman\nb [...]
+'USDA PROPOSES NAME CHANGES IN BEEF GRADE The U.S. Agriculture Department\nproposes to rename the \"USDA Good\" grade of beef to \"USDA Select.\"\n    The department said the proposed change is in response to a\npetition from Public Voice for Food and Health Policy and would\npresent a more positive image of this grade of beef and help\ncalorie-conscious consumers select leaner cuts of meat.\n    Under current rules, the \"good\" grade of meat has less\nmarbling and fat than the \"prime\ [...]
+'VENDO CO &lt;VEN> 4TH QTR LOSS Shr loss 1.48 dlrs vs loss 36 cts\n    Net loss 4,036,000 vs loss 983,000\n    Sales 16.6 mln vs 17 mln\n    12 mths\n    Shr loss 1.88 dlrs vs profit 71 cts\n    Net loss 5,113,000 vs profit 1,904,000\n    Sales 85.4 mln vs 88.5 mln\n    Note: Prior year net includes extraordinary loss of 298,000\ndlrs in qtr and extraordinary profit of 718,000 dlrs in year.\n Reuter\n&#3;',0
+'AUSTRALIAN GOVERNMENT TO PAY SUBSIDIES--USDA The Australian Government will likely\nreimburse the Australian Wheat Board, AWB, about 132 mln (U.S.)\ndlrs to pay wheat farmers for their 1986/87 crop, the U.S.\nAgriculture Department said.\n    In its report on Export Markets for U.S. Grains, the\ndepartment said the sharp fall in world wheat prices has\nreduced the export sales revenue of the AWB to levels\ninsufficient to cover its breakeven export price estimated at\naround 98 dlrs per [...]
+'LAWSON PRODUCTS INC &lt;LAWS> RAISES QTLY PAYOUT Qtly div seven cts vs six cts prior\n    Pay April 17\n    Record April three\n Reuter\n&#3;',0
+'KANEB ENERGY &lt;KEP> MAY OMIT FUTURE PAYOUTS Kaneb Energy Partners Ltd said it may be\nforced to omit or lower future quarterly cash distributions\nbecause of a contract dispute with two major customers and the\ncontinued slump in oil and gas prices.\n    The partnership said, however, that it will pay a regular\nquarterly distribution of 60 cts a unit on April 15 to holders\nof record March 31.\n Reuter\n&#3;',0
+'BRASCAN LTD &lt;BRS.A> 4TH QTR NET Shr 50 cts vs 46 cts\n    Net 43.0 mln vs 34.8 mln\n    YEAR\n    Shr 1.55 dlrs vs 1.38 dlrs\n    Net 136.8 mln vs 112.9 mln\n    Note: Holding company.\n Reuter\n&#3;',0
+'FLORIDA COMMERCIAL BANKS INC &lt;FLBK> QTLY DIV Qtly div 14 cts vs 14 cts prior\n    Payable March 31\n    Record March 16\n Reuter\n&#3;',0
+'&lt;CHAUVCO RESOURCES LTD> YEAR NET Shr 16 cts vs 35 cts\n    Net 476,000 vs 929,000\n    Revs 3,000,000 vs 3,600,000\n Reuter\n&#3;',0
+'JAPAN CUTTING CHINA CORN COMMITMENTS - USDA Japanese traders have apparently\nsharply reduced commitments to buy Chinese corn over the next\nsix months due to high prices, the U.S. Agriculture Department\nsaid.\n    In its World Production and Trade Report, the department\nsaid traders indicated China may lack supplies or be unwilling\nto sell at current low world prices.\n    If the reports are confirmed, China\'s major export\ndestinations such as USSR, Japan, and South Korea, could\n [...]
+'SAUDI SUCCESS SEEN IN CURBING OPEC PRODUCTION Saudi Arabia will succeed in pressuring\nother members of the Organization of Petroleum Exporting\nCountries to stay within their production quotas, said Morgan\nStanley Group managing director John Wellemeyer.\n    Wellemeyer, speaking to reporters at an offshore oil\nengineering conference, also said he expected OPEC nations to\nattempt to hold prices under 20 dlrs a barrel for several years\nto keep industrial demand for residual fuel oil [...]
+'EC DRIVING TO CAPTURE BRAZIL WHEAT MARKET - USDA The European Community, EC, sold\n75,000 tonnes of soft wheat at a subsidized price of between 85\nand 89 dlrs per tonne FOB for March delivery in a continuing\nbid to establish itself in the Brazilian wheat market, the U.S.\nAgriculture Department said.\n    The sale sharply undercut the U.S. offer of 112 dlrs per\ntonne FOB for 33,000 tonnes of wheat, it said in its latest\nreport on Export Markets for U.S grains.\n    EC sales to Brazi [...]
+'ZENITH LABS &lt;ZEN> WILL REPORT 4TH QTR LOSS Zenith Laboratories Inc said the\ncompany will report a fourth quarter loss, and the amount will\nbe determined on completion of its year end audit. The company\ndid not elaborate further.\n    For the third quarter ended Sept 30, 1986, Zenith reported\na loss of 3,451,000 dlrs or 16 cts per share, adjusted for a\nMay 1986 2-for-1 stock split.\n    The company also said it received Food and Drug\nAdministration approval to market Cefadroxil, [...]
+'MANDATORY PRODUCTION CONTROLS DEBATED AT APC Delegates to the American Pork Congress\nwill decide whether or not they want mandatory production\ncontrols when they vote on the official pork producer policy\nwednesday, the National Pork Producers Council said.\n    The American Pork Congress, APC, delegates, listened to\nboth sides of the question when former Iowa Congressman Berkley\nBedell and Bill Lesher, USDA Assistant Secretary for Economics\nfor the years 1981 to 1985 debated at th [...]
+'TAIWAN BUYS 25,000 TONNES U.S. SOYBEANS Taiwan bought 25,000 tonnes U.S.\nsoybeans today at 203.40 dlrs a tonne, C and F, Gulf, for May\n15-30 shipment, private export sources said.\n Reuter\n&#3;',0
+'TAIWAN PASSES ON U.S. CORN, WILL RETENDER Taiwan passed on its tender overnight\nfor 25,000 tonnes of U.S. corn and 49,000 tonnes U.S. sorghum,\nprivate export sources said.\n    Taiwan will retender for the corn, for May 15-30 shipment\nif via the Gulf, or June 1-15 via Pacific northwest, on March\n6, but has not rescheduled a tender for sorghum, they said.\n Reuter\n&#3;',1
+'BANGLADESH PASSES ON TENDER FOR SOFT WHEAT Bangladesh passed on its weekend tender\nfor 100,000 tonnes of optional origin soft wheat, private\nexport sources said.\n Reuter\n&#3;',1
+'PORK CHECKOFF REFUNDS LESS THAN EXPECTED The National Pork Board announced at the\nAmerican Pork Congress convention in Indianapolis that refunds\nunder the legislative checkoff program are running less than\nexpected.\n    The Board oversees collection and distribution of funds\nfrom the checkoff program that was mandated by the 1985 farm\nbill. Virgil Rosendale, a pork producer from Illinois and\nchairman of the National Pork Board, said over 2.2 mln dlrs was\ncollected in January and [...]
+'SOUTH AFRICA CORN EXPORTS COULD BE REDUCED-USDA Despite earlier optimistic\nindications, the South African corn crop is at a critical stage\nin its development and recent reports of heat stress could\nreduce production and therefore exportable supplies, the U.S.\nAgriculture Department said.\n    In its report on Export Markets for U.S. Grains, the\ndepartment said South Africa\'s corn exports in the 1986/87\n(Oct-Sept) season are estimated at 2.5 mln tonnes, up 40 pct\nfrom the previou [...]
+'&lt;DEXLEIGH CORP> SIX MTHS DEC 31 NET Shr four cts vs three cts\n    Net 4,505,000 vs 4,493,000\n    Revs 23.3 mln vs 21.4 mln\n Reuter\n&#3;',0
+'CBT TRADERS LOOK AHEAD TO SPRING PLANTINGS Chicago Board of trade grain traders and\nanalysts voiced a lot of interest in how farmers planned to\nhandle their upcoming spring plantings, prompting sales of new\ncrop months of corn and oats and purchases in new crop soybeans\nin the futures markets.\n    Professionals in the grains trade think that farmers will\nbe more willing to stick with corn acres than soybeans because\ncorn is protected by the acreage reduction program. That gives\n [...]
+'U.S. CONGRESS TO LOOK AT SOIL PROGRAM EXEMPTIONS The Senate Agriculture Committee is\nexpected to take up a bill tomorrow that would exempt from\ngovernment conservation regulations those farmers who have\nrotated alfalfa and other multiyear grasses and legumes with\nrow crops, committee staff said.\n    Under current so-called \"sodbuster\" law, farmers who planted\nalfalfa and other multiyear grasses and legumes on highly\nerodible land in the years 1981 through 1985 lose federal farm [...]
+'NATIONAL PORK BOARD ALLOCATES 2.4 MLN DLRS The National Pork Board on Monday\nallocated 2.4 mln dlrs in discretionary funds, collected from\nthe 100 pct national checkoff program, to three industry\norganizations.\n    The National Pork Producers Council, NPPC, will receive\nalmost 1.8 mln dlrs for use in the areas of food service,\nconsumer education and marketing. In addition the board\nallocated 375,000 dlrs in use in \"Pork - The Other White Meat\"\ncampaign, according to a Pork Boa [...]
+'NIPPON STEEL INVESTS 8 MLN DLRS IN GTX CORP GTX Corp said Nippon Steel Co of Japan,\nin a move to diversify into high technology, invested eight mln\ndlrs in GTX.\n    Nippon\'s move was the result of current exchange rates and\nthe revaluation of the yen, which \"have made the U.S.\nelectronics industry an attractive investment opportunity for\nJapanese corporations,\" according to a GTX statement.\n    GTX noted that Nippon is expecting sales of 27 billion dlrs\nby 1995. Of that amoun [...]
+'C.T.C. DEALER EXTENDS BID FOR CANADIAN TIRE C.T.C. Dealer Holdings Ltd said it\nextended its previously announced offer for 49 pct of &lt;Canadian\nTire Corp Ltd> to midnight on March 26.\n    CTC, a group of Canadian Tire dealers, which already owns\n17 pct of Canadian Tire, is currently appealing in an Ontario\ncourt against a previously announced Ontario Securities\nCommission ruling blocking CTC\'s 272 mln dlr bid.\n    The blocked bid did not include non-voting shareholders,\nwho h [...]
+'ROCKWELL &lt;ROK> SEES IMPROVEMENT IN 1987 Rockwell International Corp\ncontinues to expect significant improvement in 1987 results,\ndespite the somewhate disappointing performance of one of its\nbusiness segments, President Donald Beall told Reuters.\n    Rockwell reported net earnings in its first quarter ended\nDecember 31 of 149.4 mln dlrs, or 1.05 dlrs per share, compared\nto 125.8 mln dlrs, or 84 cts per share a year ago.\n    Operating earnings, however, were off about four pct, [...]
+'MICKELBERRY CORP &lt;MBC> SETS QTLY PAYOUT Qtly div 1-1/2 cts vs 1-1/2 cts prior\n    Pay March 31\n    Record March 13\n Reuter\n&#3;',0
+'SWAP DEALERS UNVEIL STANDARD CONTRACT The International Swap Dealers\nAssociation has developed the first standard form contract for\nuse by arrangers of currency and interest rate swap\ntransactions, said Thomas Jasper, the Association\'s\nco-chairman.\n    The contract, unveiled at a press conference , is expected\nto make the 300 billion dlr a year swap market more efficient,\nhe said. \"The contracts wil accelerate the process and reduce\nthe expense of swap documentation,\" Japsper [...]
+'METROPOLITAN FEDERAL &lt;MFTN> TO MAKE ACQUISITION Metropolitan Federal Savings\nand Loan Association said it has signed a letter of intent to\nacquire American Trust of Hendersonville, Tenn., for an\nundisclosed amount of cash.\n    American Trust had year-end assets of over 40 mln dlrs.\n Reuter\n&#3;',0
+'GM\'S &lt;GM> PONTIAC HAS INTEREST RATE INCENTIVES General Motors Corp said its\nPontiac Division has established an interest rate support\nincentive program, effective immediately, as an alternative to\nits current option bonus program.\n    The company said qualified buyers of Pontiacs may now\nselect special finance rates of 3.9 pct on 24-month contracts,\n7.9 pct on 36-month contracts, 8.9 pct on 48-mopnth contracts\nor 9.9 pct on 60-month contracts.  The program is scheduled to\nex [...]
+'&lt;WESTAR MINING LTD> 4TH QTR LOSS Shr not given\n    Oper loss 5,900,000 vs profit 9,300,000\n    Revs 105.3 mln vs 131.2 mln\n    Year\n    Shr not given\n    Oper loss 21.7 mln vs profit 34.7 mln\n    Revs 370.7 mln vs 515.1 mln\n    Note: 67 pct owned by &lt;British Columbia Resources\nInvestment Corp>\n    Note continued: 1986 qtr excludes extraordinary loss of 3.6\nmln dlrs versus loss of 294.0 mln dlrs in prior year\n    1986 year excludes extraordinary loss of 79.1 mln dlrs\nve [...]
+'DOW CHEMICAL &lt;DOW> TO SELL SOUTH AFRICAN UNIT Dow Chemical Co said it has\nagreed in principle to sell its industrial chemicals and\nplastics business interests in South Africa and related assets\nto a group of South African investors for undisclosed terms,\ncompleting the sale of the company\'s South African assets\n    Dow said it will continue to support its educational and\nhealth programs for South African blacks.\n Reuter\n&#3;',0
+'WILLIAMS COS &lt;WMB> YEAR LOSS Shr loss 6.97 dlrs vs profit 92 cts\n    Net loss 240 mln vs profit 31.6 mln\n    Revs 1.9 billion vs 2.5 billion\n    NOTE: 1986 includes loss of 250 mln dlrs or 7.27 dlrs a\nshare from discontinued operations and writedowns of holdings\nin Texasgulf Inc. 1985 restated.\n Reuter\n&#3;',0
+'GEONEX SEES SALES HURT BY PRODUCTION SHIFT Geonex Corp &lt;GEOX> said\nBellSouth Corp &lt;BLS> unit Southern Bell Telephone and Telegraph\nCo\'s decision to postpone the start up of new conversion\nassignments at Geonex\'s Chicago Aerial Survey unit could\nnegatively affect its fiscal 1987 revenues.\n    The company said it had expected higher revenues from the\nrecords conversion work, but it now foresees revenues from\nSouthern Bell work at about eight mln dlrs, the same level as\nlas [...]
+'NWA INC 4TH QTR SHR PROFIT 45 CTS VS LOSS NINE CTS\n ',0
+' UK INTERVENTION BD SAYS EC SOLD 60,500 TONNES WHITE SUGAR AT REBATE 43.147 ECUS.\n ',0
+'(CRIME CONTROL INC) 4TH QTR NET LOSS Shr loss 2.03 dlrs vs loss 85 cts\n    Net loss 10,742,113 vs loss 3,700,712\n    Revs 8,027,065 vs 8,689,008\n    Avg shrs 5.3 mln vs 4.4 mln\n    Year\n    Shr loss 2.45 dlrs vs loss 1.73 dlrs\n    Net loss 11,607,104 vs loss 7,442,825\n    Revs 32.6 mln vs 33.2 mln\n    Avg shrs 4.7 mln vs 4.3 mln\n    NOTE: 1986 net loss includes a fourth quarter charge of\n10.5 mln dlrs from writeoffs of certain assets.\n    1985 net loss includes a charge of ab [...]
+'U.K. INTERVENTION BOARD DETAILS EC SUGAR SALES A total 60,500 tonnes of current series\nwhite sugar received export rebates of a maximum 43.147\nEuropean Currency Units (Ecus) per 100 kilos at today\'s\nEuropean Community (EC) tender, the U.K. Intervention Board\nsaid.\n    Out of this, traders in the U.K. Received 43,500 tonnes, in\nthe Netherlands 12,000, in Denmark 4,000 and in West Germany\n1,000 tonnes.\n    Earlier today, London and Paris traders said they expected\nthe subsidy fo [...]
+'JAPAN FIRM DEVELOPS ULTRA HEAT-RESISTING RUBBER Shin-Etsu Chemical Co Ltd said it had\ndeveloped an ultra thermal resistance rubber which can be used\nat 250 centigrade continuously without losing its properties.\n    Shin-Etsu put potential demand for the product at two\ntonnes a month mainly for microwave ovens and as a sealant.\n    But increasing use of the product in parts attached to car\nengines will raise demand and the company will boost output to\n10 tonnes by March 1988 from  [...]
+'CASTLE AND COOKE INC &lt;CKE> 4TH QTR LOSS Shr loss 76 cts vs loss 21 cts\n    Net loss 31.9 mln vs loss 3,288,000\n    Revs 380.2 mln vs 311.5 mln\n    Avg shrs 47.1 mln vs 41.2 mln\n    Year\n    Shr profit 56 cts vs profit 56 cts\n    Net profit 43,925,000 vs profit 46,433,000\n    Rev 1.74 billion vs 1.60 billion\n    Avg shares 43,602,000 vs 41,014,000\n    NOTE: Fourth quarter includes after tax loss from\ndiscontinued Flexi-Van operations of 33.9 mln dlrs. Primary\nearnings per s [...]
+'VOICEMAIL INTERNATIONAL INC 4TH QTR LOSS Shr loss 21 cts vs loss 14 cts\n    Net loss 838,069 vs loss 433,875\n    Revs 1,080,068 vs 1,793,398\n    Avg shrs 4,004,826 vs 3,172,537\n    12 mths\n    Shr loss 39 cts vs 11 cts\n    Net loss 1,387,500 vs loss 334,463\n    Revs 6,456,882 vs 5,605,680\n    Avg shrs 3,542,217 vs 3,071,456\n Reuter\n&#3;',0
+'MOLECULAR GENETICS INC &lt;MOGN> 4TH QTR LOSS Oper shr loss 22 cts vs loss 13 cts\n    Oper net loss 1,712,916 vs loss 769,539\n    Revs 2,292,972 vs 2,157,895\n    Avg shrs 7,961,602 vs 6,200,293\n    Year\n    Oper shr loss 53 cts vs loss 45 cts\n    Oper net loss 3,562,151 vs 2,543,366\n    Revs 9,117,311 vs 8,251,136\n    Avg shrs 7,169,871 vs 6,186,51\n    NOTE: Current year net both periods excludes charge 430,649\ndlrs from cumulative effect of accounting change for patents.\n    [...]
+'MERRIMAC INDUSTRIES INC &lt;MMAC> 4TH QTR NET Shr five cts vs 29 cts\n    Net 92,641 vs 466,668\n    Sales 4,448,011 vs 4,122,301\n    Year\n    Shr 34 cts vs 1.16 dlrs\n    Net 553,310 vs 1,864,417\n    Sales 16.3 mln vs 16.7 mln\n Reuter\n&#3;',0
+'B.C. RESOURCES HAS AGREEMENT ON CREDIT FACILITY &lt;British Columbia\nResources Investment Corp>, earlier reporting higher full year\noperating losses, said it reached agreement in principle with\nfive lenders providing for a 360 mln dlr credit facility over a\nfour year term.\n    The company said the credit facility is extendable under\ncertain circumstances, with annual principal payments of five\nmln dlrs. The agreement is subject to certain lender approvals\nand completion of forma [...]
+'U.K. MONEY MARKET GIVEN 85 MLN STG LATE HELP The Bank of England said it had provided\nthe money market with late assistance of around 85 mln stg.\n    This brings the bank total help so far today to some 87 mln\nstg and compares with its latest forecast of a 250 mln stg\nshortage in the system today.\n REUTER\n&#3;',0
+'CML GROUP INC &lt;CMLI> 2ND QTR JAN 31 NET Shr 72 cts vs 58 cts\n    Net 4,791,000 vs 3,803,000\n    Sales 83.0 mln vs 72.0 mln\n    Avg shrs 6,668,309 vs 6,545,722\n    1st half\n    Shr 88 cts vs 70 cts\n    Net 5,872,000 vs 4,614,000\n    Sales 141.6 mln vs 121.8 mln\n    Avg shrs 6,669,488 vs 6,525,051\n Reuter\n&#3;',0
+'DRESS BARN INC &lt;DBRN> 2ND QTR JAN 24 NET Shr 30 cts vs 21 cts\n    Net 3,358,000 vs 2,276,000\n    Sales 43.3 mln vs 33.5 mln\n    1st half\n    Shr 60 cts vs 42 cts\n    Net 6,654,000 vs 4,638,000\n    Sales 86.6 mln vs 66.4 mln\n    NOTE: Share adjusted for three-for-two stock split in May\n1986.\n Reuter\n&#3;',0
+'WILLIAMS &lt;WMB> HAS 4TH QTR CHARGE Williams Cos said a fourth quarter charge\nof 250 mln dlrs from discontinued operations and writedowns\ncontributed to a 1986 net loss of 240 mln dlrs or 6.97 dlrs a\nshare against earnings of 31.6 mln dlrs or 92 cts in 1985.\n    The loss in the quarter was 232.3 mln dlrs or 6.75 dlrs\nagainst income of 10.7 mln dlrs or 31 cts a year ago. Revenues\nin the quarter fell to 521.1 mln dlrs from 716.9 mln and in the\nyear fell to 1.9 billion dlrs from 2. [...]
+'PERRY DRUG STORES INC &lt;PDS> 1ST QTR JAN 31 NET Shr 13 cts vs 37 cts\n    Net 1,300,000 vs 3,700,000\n    Sales 189 mln vs 163 mln\n Reuter\n&#3;',0
+'NWA INC &lt;NWA> 4TH QTR NET Shr profit 45 cts vs loss nine cts\n    Net profit 9.8 mln vs loss two mln\n    Revs 1.15 billion vs 631.2 mln\n    Year\n    Shr profit 3.26 dlrs vs profit 3.18 dlrs\n    Net profit 76.9 mln vs profit 73.1 mln\n    Revs 3.59 billion vs 2.66 billion\n Reuter\n&#3;',0
+'CAMCO INC &lt;CAM> SETS QUARTERLY Qtly div 11 cts vs 11 cts prior\n    Pay April 14\n    Record March 17\n Reuter\n&#3;',0
+'SENATE\'S PROXMIRE URGES CURBS ON TAKEOVERS Senate Banking Committee chairman\nWilliam Proxmire called for curbs of hostile corporate\ntakeovers and new restrictions on risk arbitrageurs.\n    \"At the very least, it is high time that we require all risk\narbitrageurs to register seperately and specifically  with the\nSecurities and Exchange Commission and that we consider\nprecluding brokerage firms and their employers from investing\nin, or owning any securities issued by, third party [...]
+'SPAIN TO LAUNCH EXPORT DRIVE Spain unveils a 105 billion peseta plan\nthis month aimed at boosting exports to reach European\nCommunity levels, director-general of the INFE export\ninstitute, Apolonio Ruiz Ligero, said.\n    \"The target is to raise exports to 20 pct of Gross Domestic\nProduct over the next four years compared to 15 pct now,\" he\nsaid.\n     \"This is the minimum prevailing level in the EC and there\nis no reason why we should lag behind countries like Italy,\nwhich ha [...]
+'ROSSIGNOL UNIT BUYS CANADIAN SKI BOOT MAKER French ski and tennis equipment maker\n&lt;Skis Rossignol> said its 97.7-pct owned subsidiary &lt;Skis\nDynastar SA> agreed to buy Canadian ski stick and boot\nmanufacturer &lt;CFAS> from &lt;Warrington Inc>.\n    A Rossignol spokesman declined to give financial details\nbut said turnover of CFAS was about 100 mln French francs,\ndoubling the Rossignol group\'s activities in the boot and stick\nsectors.\n Reuter\n&#3;',0
+'USF AND G CORP &lt;FG> RAISES QUARTERLY DIVIDEND Qtly div 62 cts vs 58 cts in the prior quarter\n    Payable April 30\n    Record March 20\n Reuter\n&#3;',0
+'&lt;BRNF LIQUIDATING TRUST> SETS DISTRIBUTIONS BRNF Liquidating Trust said\ntrustees declared a 13th liquidating dividend of 1.10 dlrs per\nunit, payable April One to holders of record of its Series A, B\nand C certificates on March 18.\n    The trust had paid a 12th liquidating distribution on\nJanuary 15 amounting to 1.750 dlrs on Series A, 1.815 dlrs on\nSeries B and 1.765 dlrs on Series C certificates.\n Reuter\n&#3;',0
+'STANLINE INC &lt;STAN> 1ST QTR JAN 31 NET Shr 20 cts vs 15 cts\n    Net 345,970 vs 257,252\n    Revs 14.0 mln vs 13.4 mln\n    NOTE: Share adjusted for five pct stock dividend in\nDecember 1986.\n Reuter\n&#3;',0
+'DOW CHEMICAL CO &lt;DOW> UNIT INCREASES PRICES The Dow Chemical Co said its\nEngineering Thermoplastics Department will increase the selling\nprices of standard grades of MAGNUM ABS resins by three cts per\npound.\n    It also announced an increase of five cts per pound for\nperformance grades of the resins.\n    Both increases are effective April 1, 1987.\n\n Reuter\n&#3;',0
+'SWIFT ENERGY CO &lt;SFY> 4TH QTR NET Shr 12 cts vs eight cts\n    Net 485,866 vs 316,193\n    Revs 1,741,508 vs 1,440,154\n    Year\n    Shr 28 cts vs 20 cts\n    Net 1,108,314 vs 778,197\n    Revs 5,073,178 vs 3,687,160\n Reuter\n&#3;',0
+'BROWNING-FERRIS INDUSTRIES INC &lt;BFI> IN PAYOUT Qtly div 20 cts vs 20 cts prior\n    Pay April 10\n    Record March 20\n Reuter\n&#3;',0
+'BUFFTON CORP &lt;BUFF> BUYS B AND D INSTRUMENTS Buffton Corp said it completed\nthe purchase of B and D Industruments Inc for two mln dlrs cash\nand 400,000 shares of common stock.\n    It said B and D is a private company headquartered in\nKansas, and had sales of 4,700,000 dlrs in 1986.\n    Buffton said the company designs and manufactures aviation\ncomputer display systems and engine instrumentation.\n Reuter\n&#3;',0
+'VEREINS- UND WESTBANK TO REORGANIZE NETWORK und Westbank AG &lt;VHBG.F> plans\nto streamline its branch network to improve its distribution of\nfinancial services, management board member Eberhard-Rainer\nLuckey said.\n    He told a news conference on 1986 results that branches in\nHamburg and Schleswig-Holstein would be merged or closed, a\nbranch in Frankfurt opened and that the bank was considering\nopening a branch in London.\n    Luckey said the bank\'s total operating profits rose [...]
+'BALDRIGE CONCERNED ABOUT KOREAN/TAIWAN DEFICITS Secretary of Commerce Malcolm\nBaldrige expressed concern about the continuing U.S. trade\ndeficits with South Korea and Taiwan and said that without an\nadjustment in exchange rates there is little likelihood of\nimprovement.\n    Speaking to the President\'s Export Council, an industry\nadvisory group, Baldrige said the trade deficit issue was under\ndiscussion with those countries.\n    \"I feel that unless we see an exchange rate adjus [...]
+'ALLWASTE &lt;ALWS> TO MAKE ACQUISITION Allwaste Inc said it has agreed in\nprinciple to acquire an air-moving and related industrial\nservices company it did not identify for up to 1,400,000 dlrs\nin common stock.\n Reuter\n&#3;',0
+'CASTLE AND COOKE &lt;CKE> TAKES FOURTH QTR LOSS Castle and Cooke Inc said it would\ntake a fourth quarter after-tax loss of 33.9 mln dlrs from the\npreviously reported sale of its Flexi-Van container leasing\nbusiness to Itel Corp &lt;ITEL> for about 215 mln dlrs.\n    Earlier, the company reported a loss for the fourth quarter\nended January 3 of 31.9 mln dlrs, or 76 cts a share, compared\nwith a loss of 3.3 mln dlrs, or 21 cts per share, in 1985\'s\nfourth quarter.\n    For the year,  [...]
+'FED EXPECTED TO ADD TEMPORARY RESERVES The Federal Reserve is expected to\nenter the U.S. Government securities market to add temporary\nreserves, economists said.\n    They expect it to supply the reserves indirectly by\narranging around 1.5 of customer repurchase agreements.\n    Federal funds, which averaged 6.22 pct yesterday, opened at\nsix pct and remained there in early trading.\n Reuter\n&#3;',0
+'CONVENIENT FOOD MART &lt;CFMI> AGREES TO BUY CHAIN Convenient Food Mart Inc said it\nhas tentatively agreed to buy all the outstanding stock of\nPlaid Pantries Inc and two associated businesses in Oregon and\nWashington for undisclosed terms.\n    Plaid Pantries owns and operates 161 convenience stores in\nthe Portland and Seattle areas. The other business are two\ncompanies involved in the wholesale distribution of groceries\nand health and beauty aids, it said.\n    Closing is expecte [...]
+'WAL-MART STORES INC 4TH QTR SHR 65 CTS VS 47 CTS\n ',0
+'MARINE MIDLAND &lt;MM> BUYS BROKERAGE ASSETS Marine Midland Banks Inc said it has\nacquired the customer account base of New York discount\nbrokerage firm Ovest Financial Services Inc for undisclosed\nterms to expand its discount brokerage operations in the\nNortheastern U.S.\n    It said it will combine Ovest\'s activities with those of\nits Marine Midland Brokerage Service unit.\n Reuter\n&#3;',0
+'U.S. TREASURY DEPUTY ASST SECRETARY BERGER SAYS FURTHER DOLLAR DROP COULD CAUSE INFLATION\n ',0
+'DOM REPUBLIC SELLS CZARNIKOW 35,000 TONS SUGAR The Dominican Republic sold\n35,000 long tons of sugar for immediate delivery, with an\noption for 25,000 tons more, to Czarnikow Rionda of New York,\nthe state sugar council announced.\n    It was not immediately clear when the sale was made or at\nwhat price. A council communique said \"the sale was made at the\nbest prevailing conditions in the world sugar market.\"\n Reuter\n&#3;',0
+'EC BACKS NEW MOVE TO ENCOURAGE UNLEADED GASOLINE The EC Executive Commission has backed\na plan to allow member countries to ban regular leaded gasoline\nin a move designed to encourage use of unleaded fuel.\n    It said in a statement it backed a proposal to allow EC\nstates to ban sales of regular grade gasoline containing lead\nat six months notice. The proposal, which needs approval by EC\nministers, would not force any member state to impose the ban.\n\"It\'s an option, not an obli [...]
+'SUN RAISES CRUDE OIL POSTINGS ONE DLR ACROSS BOARD. WTI NOW 17.00 DLRS/BBL\n ',0
+'&lt;DEVTEK CORP> 2ND QTR JAN 31 NET Shr 14 cts vs nine cts\n    Net 1,180,000 vs 640,000\n    Revs 25.6 mln vs 20.1 mln\n    Six mths\n    Shr 26 cts vs 12 cts\n    Net 2,103,000 vs 853,000\n    Revs 44.8 mln vs 33.0 mln\n Reuter\n&#3;',0
+'SAXTON INDUSTRIES LTD &lt;SAXIF> YEAR NET Shr 13 cts vs 41 cts\n    Net 1,079,100 vs 3,535,205\n    Revs 13.6 mln vs 16.2 mln\n    Note: Current results for 16 months after change in fiscal\nyear end to December 31 from August 31\n Reuter\n&#3;',0
+'TORONTO SUN PLANS TWO-FOR-ONE STOCK SPLIT &lt;Toronto Sun Publishing Corp> said it\nplanned a two-for-one split of its common shares, subject to\nregulatory approval and approval by shareholders at the April\n21 annual meeting.\n Reuter\n&#3;',0
+'SERVO CORP OF AMERICA &lt;SCA> 1ST QTR JAN 31 NET Shr 43 cts vs 41 cts\n    Net 316,000 vs 298,000\n    Sales 4,857,000 vs 4,543,000\n Reuter\n&#3;',0
+'ELECTRO-NUCLEONICS INC &lt;ENUC> 2ND QTR DEC 31 Shr loss 1.77 dlrs vs profit 15 cts\n    Net loss 8,036,000 vs profit 576,000\n    Sales 16.2 mln vs 17.2 mln\n    Avg shrs 4,539,437 vs 3,816,580\n    1st half\n    Shr loss 1.96 dlrs vs profit 26 cts\n    Net loss 8,231,000 vs profit 996,000\n    Sales 30.9 mln vs 32.2 mln\n    Avg shrs 4,205,707 vs 3,814,141\n    NOTE: Current half net includes 68,000 dlr tax credit.\n    Current year net both periods includes 6,700,000 dlr\nwritedown o [...]
+'WAL-MART STORES INC &lt;WMT> 4TH QTR JAN 31 NET Shr 65 cts vs 47 cts\n    Net 184.3 mln vs 133.1 mln\n    Sales 3.85 billion vs 2.77 billion\n    Year\n    Shr 1.59 dlrs vs 1.16 dlrs\n    Net 450.1 mln vs 327.5 mln\n    Sales 11.91 billion vs 8.45 billion\n Reuter\n&#3;',0
+'&lt;MIRTONE INTERNATIONAL INC> 1ST QTR DEC 31 NET Shr two cts vs two cts\n    Net 407,396 vs 376,243\n    Revs 5,341,353 vs 4,292,819\n Reuter\n&#3;',0
+'U.S. TREASURY AIDE WARNS ON INFLATION Thomas Berger, Deputy Assistant\nSecretary of the Treasury, said that a further drop in the\nexchange value of the dollar could cause prices to go up and\ntrigger inflation.\n    He told a meeting of the President\'s Export Council that\nthe Japanese and the Germans have cut their profit margins to\nreflect recent drops in the dollar, so prices have remained\nmuch the same.\n    But he added that if the dollar dropped further there could\nbe inflati [...]
+'LEAF DISEASE HITS SRI LANKA RUBBER A leaf disease affecting seven pct of\nSri Lanka\'s rubber plantations may reduce output this year and\nraise currently depressed prices, industry officials and\nresearchers told Reuters.\n    About 2,900 hectares of rubber planted with the Rubber\nResearch Institute (RRI) clone 103 have been hit by the fungus\n\"corenes pora\" which attacks the roots of the tree and kills the\nleaves. The disease was first discovered about six months ago.\n    Trade s [...]
+'PYRO ENERGY CORP &lt;BTU> YEAR NET Shr 36 cts vs 66 cts\n    Net 4,775,000 vs 9,342,000\n    Revs 105.5 mln vs 130.0 mln\n Reuter\n&#3;',0
+'EC COMMISSION DETAILS SUGAR TENDER The European Commission confirmed it\nauthorised the export of 60,500 tonnes of current series white\nsugar at a maximum rebate of 43.147 European Currency Units\n(ECUs) per 100 kilos.\n    Out of this, traders in the U.K. Received 43,500 tonnes, in\nthe Netherlands 12,000, in Denmark 4,000 and in West Germany\n1,000 tonnes.\n REUTER\n&#3;',0
+'UNITRODE CORP &lt;UTR> 4TH QTR JAN 31 LOSS Shr loss 13 cts vs profit 10 cts\n    Net loss 1,804,062 vs profit 1,370,063\n    Revs 33.5 mln vs 40.4 mln\n    12 mths\n    Shr loss 51 cts vs profit cts\n    Net loss 7,030,235 vs profit 9,163,141\n    Revs 149.4 mln vs 167.9 mln\n    NOTE: income before taxes for the 12 mths ended Jan 1987\nincludes gains 895,000 for fire insurance settlement, and\nunusual charges of 7,900,000 for provisions for estimated cost\nof severance pay for terminat [...]
+'BUEHLER INTERNATIONAL INC &lt;BULR> 4TH QTR NET Shr five cts vs 20 cts\n    Qtly div two cts vs two cts prior\n    Net 223,000 vs 1,418,000\n    Sales 15.3 mln vs 17.1 mln\n    Year\n    Shr 61 cts vs 81 cts\n    Net 3,106,000 vs 5,940,000\n    Sales 63.0 mln vs 59.5 mln\n    NOTE: 1986 net includes tax credits of 63,000 dlrs in\nquarter and 1,365,000 dlrs in year.\n    1986 net both periods includes 500,000 dlr pretax inventory\nwritedown.\n    Dividend pay March 27, record March 5.\n  [...]
+'STANHOME INC &lt;STH> RAISES QUARTERLY TWO CTS Qtly div 23 cts vs 21 cts prior\n    Pay April 1\n    Record March 16\n Reuter\n&#3;',0
+'INSTRON CORP &lt;ISN> SETS QUARTERLY Qtly div three cts vs three cts prior\n    Pay April 2\n    Record March 16\n Reuter\n&#3;',0
+'GERMAN INSTITUTE SEES INFLATION RISING IN 1987 The cost of living in West Germany will\nlikely be about 0.5 pct higher on average in 1987 than in 1986,\nwhen the cost of living actually fell by an average 0.2 pct in\nthe first recurrence of \"negative inflation\" since the 1950s, the\nHWWA economic research institute said.\n    The re-emergence of inflation will result mainly from the\nfading of two factors which influenced the fall in the 1986\ncost of living - the steep decline in bot [...]
+'FED DRAFTS CURRENCY, RATE SWAP RISK GAUGE The Federal Reserve Board voted\nunanimously to propose a formula for calculating the risk of\ninterest rate and currency swaps as part of its ongoing effort\nto come up with a new capital standard for U.S. banks that\ntakes into account the riskiness of a bank\'s loans and other\nassets.\n    Fed officials said an identical proposal was being issues\ntoday by the Bank of England.\n    The Fed set a 60-day period for public comment on the plan.\ [...]
+'IDEAL SCHOOL SUPPLY CORP &lt;IDEL> 4TH QTR NET Oper shr 10 cts vs eight cts\n    Oper net 325,000 vs 228,000\n    Sales 7,070,000 vs 6,483,000\n    Avg shrs 3,313,000 vs three mln\n    Year\n    Oper shr 69 cts vs 51 cts\n    Oper net 2,124,000 vs 1,536,000\n    Sales 31.2 mln vs 22.7 mln\n    Avg shrs 3,071,000 vs three mln\n    NOTE: 1986 net both periods includes 72,000 dlr tax credit.\n Reuter\n&#3;',0
+'SALOMON INC &lt;SB> SETS REGULAR QUARTERLY Qtly div 16 cts vs 16 cts prior\n    Pay April One\n    Rcord March 20\n Reuter\n&#3;',0
+'JANUARY CRUDE OIL MOVEMENTS FALL SEVEN MLN TONS Worldwide spot crude oil movements fell\nto 30.07 mln long dwt in February from 37.25 mln tons in\nJanuary and 41.44 mln in December, London shipbroker Howard\nHoulder said.\n    The decline mainly reflected a sharp drop in movements out\nof the Mideast Gulf, which totalled 7.4 mln tons last month\nagainst 11.65 mln in January. These included shipments to\nwestern options at 2.05 mln tons against 3.59 mln previously.\n    Liftings from the [...]
+'EC SOURCES DETAIL NEW FARM SOCIAL PACKAGE The 350 mln Ecu three-year package of\nsocial and structural measures agreed early today by European\nCommunity farm ministers features a plan to compensate farmers\nfor reducing output of certain surplus products, EC Commission\nsources said.\n    The ministers agreed that under this \"extensification\"\nscheme, farmers would qualify for compensation if they cut\noutput of specific products by at least 20 pct.\n    The plan would initially appl [...]
+'U.S., BRITAIN AGREE FURTHER BANK CAPITAL PROPOSALS The Bank of England and the U.S. Federal\nReserve Board have agreed new proposals for joint standards to\nmeasure the risk of an array of credit exposures that do not\nshow up in bank balance sheets, the Bank of England said.\n    The plan, covering swaps, forward contracts and options\ninvolving interest or exchange rates, complements proposals\nagreed in January between the two central banks to make\ncommercial banks in the U.S. And B [...]
+'PIEDMONT AVIATION &lt;PIE> BOARD TO MEET TODAY Piedmont Avaition Inc\'s board of\ndirectors will conduct a special meeting beginning at 1400 est\ntoday, a Piedmont spokesman said.\n    The spokesman would not say what was on the agenda.\n    In mid-February, Piedmont said its board would meet to\ndiscuss all proposals to acquire the company. Its board also\nwithdrew a recommendation to accept a 65 dlrs a share cash\noffer from Norfolk Southern Corp &lt;NSC> in light of a competing\nrevi [...]
+'FIRST UNION &lt;FUR> LEAVES DIVIDEND UNCHANGED First Union Real Estate Investments\nsaid its board left the quarterly dividend unchanged at 37-1/2\ncts per share, payable April 30, record March 31.\n    The trust, which has raised its quarterly dividend\nfrequently in the past two years and in the first quarter in\nboth years, said the Tax Reform Act of 1986 has limited its\nflexibility on dividends, and trustees will now consider the\nappropriateness of any dividend increases only duri [...]
+'RYKOFF-SEXTON INC &lt;RYK> 3RD QTR JAN 31 NET Shr 21 cts vs 28 cts\n    Net 1,456,000 vs 1,925,000\n    Sales 258.7 mln vs 290.2 mln\n    Nine Mths\n    Shr 77 cts vs 1.10 dlrs\n    Net 5,384,000 vs 7,658,000\n    Sales 804.3 mln vs 760.1 mln\n Reuter\n&#3;',0
+'SYSTEM SOFTWARE ASSOCIATES &lt;SSAX> 1ST QTR NET Periods end January 31, 1987 and 1986\n    Shr 12 cts vs nine cts\n    Net 507,000 vs 362,000\n    Revs 5,010,000 vs 3,558,000\n    NOTE: System Software Associates Inc is full name of\ncompany.\n Reuter\n&#3;',0
+'GEICO CORP &lt;GEC> RAISES QTRLY DIVIDEND Qtrly div 34 cts vs 27 cts prior\n    Pay March 31\n    Record March 16\n\n Reuter\n&#3;',0
+'STANLEY WORKS &lt;SWK> SETS QUARTERLY Qtly div 19 cts vs 19 cts prior\n    Pay March 31\n    Record March 12\n Reuter\n&#3;',0
+'NOVELL INC &lt;NOVL> 1ST QTR JAN 31 NET Shr 31 cts vs 20 cts\n    Net 3,541,000 vs 2,071,000\n    Sales 29.9 mln vs 14.5 mln\n    Avg shrs 11.6 mln vs 10.4 mln\n    NOTE Fourteen vs 13-week periods.\n Reuter\n&#3;',0
+'FROST NOT EXPECTED TO DAMAGE POLAND\'S WHEAT Poland\'s winter wheat is likely to\nsurvive recent frosts but the impact of the cold will not be\nknown until late April, the Polish meteorology institute said.\n    Some varieties of winter wheat sown in Poland can survive\nground temperatures as low as minus 20 degrees C, Spokesman\nTeresa Tomaszewska told Reuters.\n    Even though an earlier thin protective layer of snow mainly\nmelted in February, air temperatures down to minus 30 C shou [...]
+'BROWN-FORMAN &lt;BFDB> TO CHANGE RECORD DATES Brown-Forman Inc said at the\nsuggestion of the American Stock Exchange it has changed the\nrecord date for the 28 ct per share quarterly dividend on its\nClass A and Class B common stock that is payable April One to\nMarch 20 from March 13, to coincide with the record date for a\nthree-for-two stock split declared February 26.\n    It said the record date for the dividend on its four pct\ncumulative preferred stock has also been changed to  [...]
+'GOODYEAR TIRE &lt;GT> DETAILS 1986 TAX REFUND Goodyear Tire and Rubber Co said its\n1986 results include a tax refund of 75.7 mln dlrs from the\ncosts of restructuring the company in a successful defense\nagainst a takeover attempt by James Goldsmith.\n    Chairman Robert Mercer said, \"Heavy restructuring costs\nrelated to the takeover attempt combined with government tax\nincentives for investments ... resulted in this federal tax\nrefund.\"\n    The refund was included but not broken [...]
+'GREAT NORTHERN NEKOOSA &lt;GNN> ANNOUNCES SPLIT The Great Northern Nekoosa Corp\nsaid it will recommend to shareholders a two-for-one common\nstock split.\n    The company said it will make the proposal to shareowners\nat its annual mmeting May 6 in Dothan, Ala., near the company\'s\nGreat Southern Paper division operations.\n    In conjunction with the stock split proposal, the\nshareowners will be asked to approve an increase in the\nauthorized common stock from 60 mln to 150 mln shar [...]
+'HARRIS LIFTS BUILDERS TRANSPORT &lt;TRUK> STAKE Harris Associates L.P., a Chicago\ninvestment advisor, said it raised its stake in Builders\nTransport Inc to the equivalent of 466,754 shares, or 9.1 pct\nof the total outstanding, from 335,800 shares, or 6.7 pct.\n    In a filing with the Securities and Exchange Commission,\nHarris said it bought 36,700 Builders Transport common shares\non Feb 10 at 17 dlrs a share. It also said it bought debentures\non Feb 23 that could be converted int [...]
+'COFFEE TALKS FAILURE SEEN PRESSURING U.S. Failure of talks on re-establishing\nInternational Coffee Organization, ICO, coffee quotas last week\nmay put political pressure on the United States, particularly\nthe State Department, to reassess its position, but the U.S. is\nunlikely to back away from its basic demand quotas be set by\n\"objective criteria\", U.S. officials said.\n    Jon Rosenbaum, assistant U.S. trade representative and head\nof Washington\'s delegation to the talks, told [...]
+'INVESTORS HAVE 12.9 PCT OF EXOVIR &lt;XOVR> Mark Hammer, a private investor from\nMelville, N.Y., and members of his family told the Securities\nand Exchange Commission they have acquired a total of 375,200\nshares of Exovir Inc, or 12.9 pct of the total outstanding.\n    Hammer said his group has been accumulating Exovir stock\nsince Oct 28, 1985 for investment purposes and may buy more\nshares or sell all or part of his current stake.\n    While he said he has no intention of seeking  [...]
+'TORRENTIAL RAINS HALT ARGENTINE GRAIN HARVEST Torrential rains throughout\nArgentina\'s grain-producing areas virtually paralysed coarse\ngrain harvesting in the week to yesterday, trade sources said.\n    Sunflower, maize and sorghum harvests were particularly\naffected, they said. But the rains proved to be a great aid to\nsoybean crops as their harvesting will not begin until April or\nMay.\n    The rains did no damage to maize, sunflower and sorghum\ncrops though fresh rains in simi [...]
+'LOTUS &lt;LOTS> TO ACQUIRE &lt;COMPUTER ACCESS CORP> Lotus Development Corp said it\nhas signed a letter of intent to acquire substantially all of\nthe assets of Computer Access Corp for undisclosed terms.\n    Computer Asscess makes BlueFish full-text search and\nretrieval software for International Business Machines Corp\n&lt;IBM> and compatible personal computers.\n    The company said the acquisition is subject to approval by\nboth boards.\n Reuter\n&#3;',0
+'EQUITABLE OF IOWA COS &lt;EQICA> 4TH QTR NET Oper shr 78 cts vs 51 cts\n    Oper net 7,030,000 vs 4,944,000\n    Revs 126.6 mln vs 120.9 mln\n    Year\n    Oper shr 1.59 dlrs vs 89 cts\n    Oper net 14.7 mln vs 9,864,000\n    Revs 425.1 mln vs 416.9 mln\n    NOTE: Net excludes realized gains on investment of 73,000\ndlrs vs 4,224,000 dlrs in quarter and 6,253,000 vs 14.5 mln\ndlrs in year.\n    Net excludes discontinued Massachusetts Casualty operations\nloss 5,180,000 dlrs vs gain 778, [...]
+'CORROON AND BLACK CORP &lt;CBL> RAISES QUARTERLY Qtly div 21 cts vs 16-1/4 cts prior\n    Pay April One\n    Record March 17\n Reuter\n&#3;',0
+'EC APPOINTS NEW TRADE CHIEF The European Community Commission today\nappointed its chief spokesman, Hugo Paemen, as its top official\nin charge of multilateral trade negotiations, a Commission\nspokesman said.\n    Paemen, a Belgian official who had previously been chief\naide to former External Affairs Commissioner Etienne Davignon,\nhas been in his post since January 1985.\n    The spokesman said Paemen will continue as chief spokesman\nuntil the retirement on May 1 of Paul Luyten, wh [...]
+'U.S. SENATOR TO PROPOSE 0/92 FOR 1987 CROPS Sen. Rudy Boschwitz, R-Minn., said he\nintended to offer legislation that would allow 1987 producers\nof wheat, feedgrains, cotton and rice to receive at least 92\npct of their deficiency payments, regardless of how much they\nplanted.\n    Boschwitz told the Senate Agriculture Committee that\napplying the so-called 0/92 provision to 1987 crops was\nsupported by the Reagan administration and would save\napproximately 500 mln dlrs, including 26 [...]
+'INDIA BUYS UP TO 10 CARGOES SUGAR - TRADERS India bought up to 10 cargoes of white\nsugar at a buying tender today which originally called for just\ntwo to three cargoes of March/April shipment, traders said.\n    London trader E D and F Man said it sold two cargoes at 233\ndlrs a tonne CIF for March/April shipment with an option to\nsell an additional two cargoes at the same price.\n    Traders said at least one other international trader made a\nsimilar contract while a French house s [...]
+'HAYES-ALBION &lt;HAY> DELAYS SPECIAL MEETING Hayes-Albion Corp said it has\ndelayed the special meeting at which shareholders will vote on\nits merger into Harvard Industries Inc &lt;HAVA> until March 24\nfrom March 17 due to a delay in Securities and Exchange\nCommission clearance of proxy materials.\n Reuter\n&#3;',0
+'GROSSMAN\'S INC &lt;GROS> 4TH QTR LOSS Oper shr loss nine cts vs profit 12 cts\n    Oper net loss 1,791,000 vs profit 2,336,000\n    Sales 242.9 mln vs 225.8 mln\n    Year\n    Oper shr profit 15 cts vs loss 17 cts\n    Oper net profit 2,925,000 vs loss 3,324,000\n    Sales 1.01 billion vs 875.6 mln\n    NOTE: Net includes discontinued operations gain 2,437,000\ndlrs vs loss 190.0 mln dlrs in quarter and losses 75.6 mln dlrs\nvs 227.7 mln dlrs in year.\n    Net includes loss 294,000 dlr [...]
+'COMDATA NETWORK &lt;CDN> IN NEW ACQUISITION TALKS Comdata Network Inc said it is\nin active talks with other parties on a possible acquisition or\nrecapitalization of Comdata in an effort to maximize\nshareholder values.\n    Comdata said &lt;Rosewood Financial Inc> together with\n&lt;Cypress Partners LP> and &lt;Driftwood Ltd> have acquired over\nfive pct of Comdata stock and Rosewood intends to acquire over\n15 pct of Comdata.\n    Comdata said it has not yet reached a definitive agre [...]
+'NORTHGATE &lt;NGX> QUEBEC ORE RESERVES DECLINE Northgate Exploration Ltd said year-end\n1986 ore reserves at its two Chibougamau mines in Quebec fell\nto 8,141,150 short tons grading 0.077 ounce gold a ton and 1.63\npct copper from year-earlier 8,462,000 tons grading 0.077 ounce\ngold ton and 1.67 pct copper.\n    The company said it launched a 700,000 dlr exploration\nprogram at the mines to increase production and ensure the\noperations\' continued long life.\n    Ore production total [...]
+'WEBCOR ELECTRONICS INC &lt;WER> 3RD QTR DEC 31 Shr loss 51 cts vs loss 44 cts\n    Net loss 1.8 mln vs loss 1.5 mln\n    Revs 3.1 vs 5.4 mln\n    Nine months\n    Shr loss 1.16 dlrs vs loss 1.33 dlrs\n    Net loss 4.0 mln vs loss 4.6 mln\n    Revs 9.9 mln vs 12.3 mln\n Reuter\n&#3;',0
+'COMMUNICATIONS SYSTEMS INC &lt;CSII> 4TH QTR NET Shr 12 cts vs 10 cts\n    Net 613,986 vs 534,093\n    Revs 9,494,570 vs 7,591,564\n    Year\n    Shr 41 cts vs 59 cts\n    Net 2,151,130 vs 3,111,317\n    Revs 35.9 mln vs 33.7 mln\n    NOTE: 1986 net includes gains from discontinued operations\nequal to three cts compared with nine cts in 1985.\n Reuter\n&#3;',0
+'TURKEY SEES 1.5 BILLION DLR DEFICIT IN 1986 Turkey expects a 1986 balance of payments\ndeficit of 1.5 billion dlrs, well over target, but is taking\nsteps to improve its performance in this and other fields, Ali\nTigrel, director of economic planning at the State Planning\nOrganisation said.\n    He told Reuters the shortfall was a direct consequence of\neconomic growth of nearly eight pct, up from 5.1 pct in 1985,\nwhich he said resulted mostly from a surge in domestic demand.\n    Tig [...]
+'ENERGY/CALIFORNIA OIL PRODUCTION Drilling for oil in California is\nlikely to continue at last year\'s sharply reduced levels\ndespite recent gains in crude oil prices, industry analysts\nsaid.\n    Because much of the crude oil in California fields is\nthick, heavy and expensive to extract, oil prices would have to\nincrease to near 1985\'s levels before any significant recovery\nis seen in drilling, they said.\n    \"Companies will probably only drill their best prospects,\"\nsaid Joh [...]
+'STANDARD OIL &lt;SRD> IN TEXAS NATURAL GAS FIND Standard Oil Co said the Friendswood\nDevelopment Number One well in the Fostoria or Deep Wilcox\nField of Montgomery County, Texas, flowed 4,500,000 cubic feet\nof natural gas per day from depths of 14,252 to 14,486 feet\nthrough a 14/64 inch choke.\n    It said it has contracted for Perry Gas Cos Inc to purchase\nnatural gas from the well, and Perry will build a four-inch\ngathering pipeline to connect to Natural Gas Pipeline Co\'s\ntran [...]
+'WEBCOR ELECTRONICS &lt;WER> IN TECHNICAL DEFAULT Webcor Electronics Inc said it\nremains in technical and payment default under its revolving\ncredit agreement and in technical default under certain other\nobligations to its lender.\n    Although its lender has not enforced its right to demand\npayment of the debt in full, it continues to reserve its right\nto do so at any time, it said.\n    Earlier, Webcor reported a third quarter net loss of 1.8\nmln dlrs and nine months net loss of  [...]
+'FIRST SAVINGS BANK FLORIDA &lt;FSBF> SETS MEETING First Savings Bank of\nFlorida said it expects a special shareholder meeting to be\nheld around May 21 to consider the proposed merger into\nGibraltar Financial Corp &lt;GFC>.\n    It said the annual meeting will be held April 30 to elect\ntwo directors and ratify the appointment of auditors.\n Reuter\n&#3;',0
+'IZVESTIA SAYS SOVIET WINTER CROPS NEED RESEEDING The government daily Izvestia said a\nconsiderable amount of Soviet winter crops need to be reseeded\nand the state 1987 grain harvest target of 232 mln tonnes will\nnot be easy to fulfil.\n    Without giving figures, the newspaper said: \"A considerable\npart of the winter crops must be reseeded, but that creates\nextra effort in the fields in spring.\"\n    The Soviet Union has previously said nine mln hectares of\nwinter grain will hav [...]
+'BORMAN\'S &lt;BRF> TO BUY SAFEWAY\'S UTAH DIVISION Safeway Stores Inc said it\nagreed to sell the assets and operations of its Salt Lake City\nDivision to Borman\'s Inc under undisclosed terms.\n    The division includes 60 operating supermarkets in five\nstates, most of which are in Utah, Idaho and Wyoming, together\nwith distribution and manufacturing facilities, Safeway said.\n    It said sales for the division for the year ended January\nthree were about 350 mln dlrs.\n    Safeway a [...]
+'FISHER FOODS &lt;FHR> SAYS STAKE IN FIRM SOLD Fisher Foods Inc said\n&lt;American Financial Corp> has sold its 1,500,000 Fishers\nshares, a 44 pct interest, to a group consisting of &lt;American\nSeaway Foods Inc>, &lt;Rini Supermarkets Inc> and &lt;Rego\nSupermarkets Inc>.\n    The company said in connection with the transaction, all\nfive American Financial representatives have resigned from its\nboard.\n Reuter\n&#3;',0
+'U.S. SENATE PANEL MAKES CONSERVATION EXEMPTION The U.S. Senate Agriculture Committee\napproved a measure that would exempt farmers who planted\nalfalfa or other multiyear grasses and legumes between 1981 and\n1985 from a federal conservation requirement.\n    Sen. Edward Zorinsky, D-Neb., said his bill would restore\nequity under federal sodbuster rules, which currently deny farm\nprogram benefits to farmers who, between 1981 and 1985, planted\nalfalfa and other multiyear grasses and le [...]
+'PICO PRODUCTS INC &lt;PPI> 2ND QTR JAN 31 Shr profit three cts vs loss nine cts\n    Net profit 103,664 vs loss 326,675\n    Revs 7.6 mln vs 6.9 mln\n    Six months\n    Shr loss two cts vs loss 15 cts\n    Net loss 78,246 vs loss 522,868\n    Revs 14.7 mln vs 12.9 mln\n    NOTE:1986 net includes gain of 43,185 or one cts in 2nd qtr\nand six months for discount on early long-term debt repayment.\n Reuter\n&#3;',0
+'OUTBOARD MARINE &lt;OM> RISING ON TAKEOVER RUMOR Wall Street traders said the stock of\nOutboard Marine Corp was rising on a rumor over a cable\ntelevision program that Outboard is a likely takeover target of\nSun Chemical Corp &lt;SNL>.\n    Outboard was up 3-1/8 to 34-5/8. On Tuesday it rose 1-3/8\nto 31-1/2 Tuesday.\n    A report on Cable News Network today said Sun Chemical has\n4.9 pct of Outboard and is conducting a study on whether to go\nfor control of the whole company.\n    An [...]
+'&lt;ALGOMA CENTRAL RAILWAY> 4TH QTR NET Oper shr 36 cts vs 39 cts\n    Oper net 1,391,000 vs 1,485,000\n    Revs 61.6 mln vs 58.5 mln\n    YEAR\n    Oper shr 70 cts vs 1.16 dlrs\n    Oper net 2,677,000 vs 4,410,000\n    Revs 207.6 mln vs 200.2 mln\n    Note: 1986 net excludes extraordinary loss of 297,000 dlrs\nor eight cts shr vs yr-ago gain of 514,000 dlrs or 13 cts shr.\n Reuter\n&#3;',0
+'GENOVA INC &lt;GNVA> 1ST QTR DEC 27 NET Oper shr profit four cts vs loss four cts\n    Oper net profit 151,448 vs loss 170,709\n    Sales 11.5 mln vs 9,581,406\n    NOTE: Prior year net includes 123,650 dlr tax credit but\nexcludes 52,409 dlr gain on early debt retirement.\n Reuter\n&#3;',0
+'FRENCH WHEAT EXPORTS TO EC FALL French soft wheat exports to other\nEuropean Community countries fell 18 pct to 4.13 mln tonnes in\nthe first seven months of the 1986/87 season to January\ncompared with 5.04 mln in the same 1985/86 period, the French\nCereals Intervention Office (ONIC) said.\n    According to latest ONIC statistics, the main buyers were\nItaly with 1.89 mln against 1.63 mln in the same 1985/86\nperiod, West Germany 480,450 tonnes against 717,689, the\nNetherlands 462,04 [...]
+'SUPREME EQUIPMENT/SYSTEMS CORP &lt;SEQP> 2ND QTR Shr 61 cts vs 18 cts\n    Net 670,000 vs 194,000\n    Revs 10.7 mln vs 10.4 mln\n    Six months\n    Shr 73 cts vs 35 cts\n    Net 798,000 vs 377,000\n    Revs 19.5 mln vs 19.8 mln\n    NOTE:1987 net includes gain of 362,000 dlrs in 2nd qtr and\n431,000 dlrs in six months from tax loss carryforward.\n Reuter\n&#3;',0
+'GULF APPLIED TECHNOLOGIES INC &lt;GATS> 4TH QTR Oper shr loss five cts vs loss 24 cts\n    Oper net loss 165,000 vs loss 802,000\n    Revs 4,988,000 vs 3,101,000\n    Year\n    Oper shr loss 13 cts vs loss 1.33 dlrs\n    Oper net loss 454,000 vs loss 4,407,000\n    Revs 23.1 mln vs 8,937,000\n    NOTE: Results restated for discontinued operations.\n    1986 net both periods excludes 143,000 dlr tax credit.\n    Net excludes gains from discontinued pipelines and\nterminals operations of  [...]
+'VAN DORN CO &lt;VDC> 4TH QTR NET Shr 55 cts vs 80 cts\n    Net 2,517,443 vs 3,633,217\n    Revs 79.1 mln vs 76.3 mln\n    12 mths\n    Shr 2.57 dlrs vs 3.41 dlrs\n    Net 11.7 mln vs 15.4 mln\n    Revs 305.1 mln vs 314.3 mln\n Reuter\n&#3;',0
+'FIELDCREST CANNON INC &lt;FLD> SETS QUARTERLY Qtly div 17 cts vs 17 cts prior\n    Pay March 31\n    Record March 17\n Reuter\n&#3;',0
+'VARIAN &lt;VAR> BUYS ANALYTICHEM INTERNATIONAL Varian Associates Inc said it\nacquired all the outstanding stock of closely-held Analytichem\nInternational Inc for an undisclosed amount of cash.\n    Analytichem, based in Harbor City, Calif., is a supplier of\nbonded phase preparation products used to prepare chemical\nsamples for analysis, Varian said.\n Reuter\n&#3;',0
+'KANEB SERVICES INC &lt;KAB> 4TH QTR LOSS Oper shr loss 1.05 dlrs vs profit nine cts\n    Oper net loss 30.5 mln vs profit 3,930,000\n    Revs 23.9 mln vs 45.6 mln\n    12 mths\n    Oper shr loss 5.30 dlrs vs profit 34 cts\n    Oper net loss 155.8 mln vs profit 16.0 mln\n    Revs 113.7 mln vs 178.8 mln\n    Note: Oper excludes loss from discontinued operations of\n9,127,000 dlrs vs 12.4 mln dlrs for qtr and 28.4 mln dlrs vs\n960,000 dlrs for 12 mths.\n    Note: Oper includes writedown of [...]
+'SUSPENSIONS/PARTS INDUSTRIES LTD &lt;SPILF> YEAR Shr 33 cts vs 60 cts\n    Net 1.1 mln vs 1.7 mln\n    Revs 11.7 mln vs 10.6 mln\n    NOTE:Full name is Suspensions and Parts Industries Ltd.\n Reuter\n&#3;',0
+'ESTIMATED FRENCH BARLEY STOCKS WORRYING - ONIC The size of French 1986/87 carryover\nbarley stocks, estimated at 1.72 mln tonnes compared with\n700,000 tonnes in 1985/86 is worrying, French Cereals\nIntervention Office (ONIC) Director Bernard Vieux said.\n    He told journalists these estimates were unchanged at the\nend of February from the previous month while export forecasts\nwere lowered to 4.5 mln tonnes from 5.76 mln in 1985/86.\n    Vieux called on the EC Commission to help by a [...]
+'MITCHELL ENERGY AND DEVELOPMENT CORP &lt;MND>PAYOUT Qtly div six cts vs six cts prior\n    Pay April Two\n    Record March 18\n Reuter\n&#3;',0
+'FROST AND SULLIVAN INC &lt;FRSL> 2ND QTR JAN 31 Shr profit 12 cts vs loss two cts\n    Net profit 182,173 vs loss 28,977\n    Revs 4,483,047 vs 3,994,808\n    1st half\n    Shr profit 14 cts vs loss eight cts\n    Net profit 221,376 vs loss 120,435\n    Revs 8,270,947 vs 7,150,265\n Reuter\n&#3;',0
+'S. KOREAN TRADE SURPLUS WITH U.S. SEEN FALLING South Korea\'s record 7.1 billion dlrs\ntrade surplus with the U.S. is bound to diminish as the\ncountry switches purchases from Japan in favor of U.S.\ncompanies, Trade Minister Woong-Bae Rha said.\n     He rejected suggestions the Korean Won is undervalued, and\ndenied any plans for a \"drastic and sudden\" revaluation.\n    Rha is heading a trade mission to 37 U.S. cities. Last year\nSouth Korea ran a 4.3 billion dlr trade surplus, inclu [...]
+'CRI INSURED &lt;CII> TO SET SPECIAL DISTRIBUTION CRI Insured Mortgage Investments\nInc said its advisor will recommend a special distribution of\n50 cts per share due to the sale of a federally insured first\nmortgage on Park Meadows I in Madison, Wis., for 4,267,871\ndlrs.\n    It said it received a 3,695,465 dlr return of capital and\n572,406 dlrs in income on the sale, and the 50 ct distribution\nwould represent a 43.294 ct return of principal and a 6.706 ct\ncapital gain and would b [...]
+'KANEB ENERGY PARTNERS LTD &lt;KEP> 4TH QTR LOSS Unit loss one ct\n    Net loss 186,000\n    Revs 10.7 mln\n    11 mths\n    Unit loss 7.26 dlrs\n    Net loss 121.4 mln\n    Revs 46.9 mln\n    Note: Partnership formed in February 1986.\n    Net includes writedown of oil and gas assets of 124.8 mln\ndlrs for 11 mths to comply with full-cost accounting methods.\n Reuter\n&#3;',0
+'DIGICON &lt;DGC> COMPLETES SALE OF UNIT Digicon Inc said it has completed the\npreviously-announced disposition of its computer systems\ndivision to an investment group led by &lt;Rotan Mosle Inc\'s>\nRotan Mosle Technology Partners Ltd affiliate.\n Reuter\n&#3;',0
+'TEXAS EASTERN &lt;TET> BUYS PETROLEUM TERMINAL Texas Eastern Corp said it has completed\nthe purchase of an idle petroleum products terminal near Norris\nCity, Ill., from &lt;Growmark Inc> for undisclosed terms and will\nreopen it in September after remodeling.\n    The company said the terminal will handle leaded and\nunleaded regular gasolines, number two fuel oil, ethanol and\nnatural gasoline.\n Reuter\n&#3;',0
+'STERLING IN TEXAS GAS AND OIL DISCOVERY &lt;Sterling Investment Group>\nsaid it successfully drilled and completed a significant\ndevelopment well 65 miles southwest of Houston, Texas.\n    The well has a choke of 11/64 of an inch and is 10,097 feet\ndeep.\n    The well initially tested at a maximum daily flow rate of\ntwo mln cubic feet of gas and 304 barrels of condensate.\n    Participants in the new well, along with Sterling, are\nTrafalgar House Ltd of the U.K. and &lt;Texstar NOrt [...]
+'COMPUTER HORIZONS &lt;CHRZ> IN ACQUISITION Computer Horizons Corp said it\npurchased ComputerKnowledge Inc, a software training education\ncompany headquartered in Dallas.\n    Terms were not disclosed.\n                \n Reuter\n&#3;',0
+'POLICY MANAGEMENT &lt;PMSC> MAKES ACQUISITION Policy Management Systems Corp\nsaid it has acquired the majority of the assets and business of\nAllied Research Inc of Salem, Ore., and Consolidated Insurance\nServices Inc, of Springfield, Va., for undisclosed terms.\n    It said the two companies, which had combined 1986 revenues\nof about two mln dlrs, provide underwriting information\nservices to property and casualty insurers.\n Reuter\n&#3;',0
+'UNICORP CANADA&lt;UNI.A> CUTS PUROLATOR&lt;PCC> STAKE Unicorp Canada Corp told the\nSecurities and Exchange Commission it cut its stake in\nPurolator Courier Corp to 286,500 shares, or 3.7 pct of the\ntotal outstanding, from 962,400 shares, or 12.4 pct.\n    Unicorp, a management and investment holding company\ncontrolled by its chairman, George Mann, said it sold 675,900\nPurolator common shares on March 2 and 3 at 34.782 and 34.750\ndlrs a share.\n    Purolator agreed this past weeken [...]
+'FIRM ACQUIRES &lt;AMERICAN NUTRITION WORKS INC> &lt;Nusource Investments Inc>, a\npublicly held shell company, said it acquired American\nNutrition Works Inc through a transaction in which American\nNutrition shareholders received 28 mln shares of Nusource stock\nin exchange for their shares.\n    American Nutrition operates a chain of stores sellings\nvitamins and health products.\n    Nusource said shareholders elected a new board consisting\nof Richard A. Trydahl, Samuel Mineo and Ch [...]
+'CANADA WHEAT BOARD ADVISES CUT IN GRAIN PRICES The Canadian Wheat Board has advised\nthe federal government to sharply cut initial prices paid to\nfarmers for their wheat, oats, and barley in the crop year\nbeginning August 1, a board spokesman said.\n    The spokesman declined to give the size of the recommended\nprice drops but said it would not be good news for western\nCanadian grain growers.\n    \"They\'re all lower,\" he said. \"This is really getting\npretty serious. We\'re talk [...]
+'GATT COUNCIL DEFERS DECISION ON SEMICONDUCTORS The ruling GATT Council deferred a\ndecision on whether to set up a dispute panel on the basis of a\nEuropean Community complaint against the U.S.- Japanese\nagreement on exports of computer semiconductors.\n    David Woods, spokesman of the General Agreement on Tariffs\nand Trade (GATT), told a news briefing that the main parties\nwould continue bilateral talks. This was in the hope of\nresolving the row before the next Council meeting on  [...]
+'FIRST SOUTHERN &lt;FSFA> TO MAKE ACQUISITION First Southern Federal Savings and\nLoan Association said it has agreed in principle to acquire\nHorizon Financial Corp and Horizon Funding corp from &lt;Victor\nFederal Savings and Loan Association> of Muskogee, Okla., for\nundisclosed terms.\n    The company said the purchase is subject to approval of the\nboards of First Southern and Victor and regulatory agencies.\n    Horizon Financial services mortgage loans and Horizon\nFunding is a wh [...]
+'DANAHER CORP &lt;DHR> 4TH QTR NET Shr 71 cts vs 43 cts\n    Net 7,274,000 vs 4,447,000\n    Rev 161.6 mln vs 77.6 mln\n    Year\n    Shr 1.51 dlrs vs 1.32 dlrs\n    Net 15,401,000 vs 13,525,000\n    Rev 454.0 mln vs 304.9 mln\n   \n Reuter\n&#3;',0
+'FIRM AGREES TO MERGE WITH LOTOQUIK INT\'L &lt;Chatsworth Enterprises\nInc>, a publicly held shell corporation, said it signed a\nletter of intent to merger with &lt;Lotoquik International Ltd>, a\nNassau, Bahamas-based maker of video lottery machines.\n    Under terms of the merger agreement, Chatsworth said\nLotoquik shareholders would own a majority of the surviving\ncompany.\n Reuter\n&#3;',0
+'ASBESTEC TO BUY CONTRACTOR, RECEIVES CONTRACT &lt;Asbestec Industries Inc> said\nit signed a letter of intent to buy asbestos abatement\ncontractor &lt;P.W. Stephens> for three mln dlrs in cash, stock\nand notes.\n    The transaction is expected to be completed early in the\nthird quarter of its fiscal year ending September 30, 1987.\n    Asbestec also said it expects to sign March six a 900,000\ndlr contract to remove asbestos from a major apartment complex\nin Washington, D.C. The pro [...]
+'GATT SETS UP DISPUTE PANEL ON CANADIAN HERRING The ruling GATT Council set up a formal\ndispute panel to examine a U.S. Complaint that a Canadian law\nprohibiting export of unprocessed herring and salmon was\ndiscriminatory.\n    David Wood, official spokesman of the General Agreement on\nTariffs and Trade (GATT), told a news briefing the decision was\ntaken after bilateral consultations failed to resolve the row.\n    U.S. Ambassador Michael Samuels charged during the Council\ndebate t [...]
+'COLOMBIAN INFLATION RISES 2.03 PCT IN FEBRUARY colombia\'s cost of living index rose 2.03\npct in february after a 3.27 pct increase in january and a 3.15\npct rise in february 1986, the government statistics institute\nsaid.\n    The rise brought year-on-year inflation to 19.77 pct\ncompared with 23.72 pct at end-february 1986 and 21.66 pct for\nthe year ending january 1987.\n    The government has predicted that inflation this year would\nbe lower than in 1986 when it reached 20.9 pct [...]
+'TALKING POINT/GENERAL MOTORS &lt;GM> General Motors Corp staged an explosive\nrally on Wall Street after a share buyback program announced\nyesterday, but analysts said GM\'s future remains clouded by\nstiff competition and erosion of market share.\n    GM shares rose 3-1/2 to 79-1/8 in active trading. Analysts\nagreed that investors liked the repurchase program but they \ndiffered sharply over the carmaker\'s long term prospects.\n    \"I\'m very positive on GM,\" said Jack Kirnan of K [...]
+'PARTNERSHIP CUTS STAKE IN ERC INTERNATIONAL&lt;ERC> Parsow Partnership Ltd, a Nevada\ninvestment partnership, said it lowered its stake in ERC\nInternational Inc to 343,500 shares or 8.3 pct of the total\noutstanding common stock, from 386,300 shares, or 9.3 pct.\n    In a filing with the Securities and Exchange Commission,\nParsow said it sold 42,800 ERC common shares between Jan 9 and\nMarch 2 at prices ranging from 12.125 to 14.50 dlrs each.\n    The partnership said its dealings in  [...]
+'IRANIAN OIL MINISTER DUE IN ALGERIA ON FRIDAY Iranian Oil Minister Gholamreza Aqazadeh\nis expected here on Friday for talks with his Algerian\ncounterpart Belkacem Nabi, the official Algerian news agency\nAPS said today.\n    Aqazadeh, who will be accompanied by a large delegation,\nwill have talks on bilateral relations in the field of energy\nand exchange views with Algerian officials on the current world\nenergy situation, it said.\n Reuter\n&#3;',0
+'&lt;GOLDOME FSB> YEAR NET Net 52.9 mln vs 21.9 mln\n    NOTE: Company is mutual savings bank.\n Reuter\n&#3;',0
+'BEAR AUTOMOTIVE SERVICE &lt;BEAR> 4TH QTR OPER NET Oper shr 18 cts vs 28 cts\n    Oper net 1,076,000 vs 1,441,000\n    Sales 22.6 mln vs 21.2 mln\n    Avg shrs 5,970,000 vs 5,080,000\n    Year\n    Oper shr 55 cts vs 49 cts\n    Oper net 3,007,000 vs 2,521,000\n    Sales 82.9 mln vs 73.7 mln\n    Avg shrs 5,429,000 vs 4,484,000\n    Note: Full company name is Bear Automotive Service\nEquipment Co\n    Oper shr excludes extraordinary profit from utilization of\ntax loss carryforward of 2 [...]
+'U.K. OIL INDUSTRY SAID NOT PERMANENTLY DAMAGED The U.K. Offshore oil industry has\nsuffered from last year\'s collapse in oil prices but should not\nsustain any permament damage, Minister of State for Energy\nAlick Buchanan-Smith said.\n    The drilling, diving and supply vessels sectors had been\nmost affected, Buchanan Snith told the House of Commons energy\ncommittee. He noted, however, that oil companies were still\nspending six mln stg a day to maintain North Sea production.\n    H [...]
+'CHASE MANHATTAN STUDYING ITALIAN EXPANSION &lt;Chase Manhattan Bank N.A.> is considering\nexpanding its operations in Italy, particularly in the consumer\nbanking sector, a Chase Manhattan official said.\n    Robert D. Hunter, Chase Manhattan area executive for\nEurope, Africa and the Middle East, said at a news conference\nthat plans to broaden the bank\'s activities on the Italian\nmarket have not been finalised, however.\n    Asked if Chase Manhattan would consider an acquisition in\ [...]
+'HRS &lt;IHIRF> REDUCING STAKE IN HAL ROACH &lt;HRSI> International H.R.S. Industries Inc said\nit would reduce its stake in Hal Roach Studios Inc to 22 pct\nfrom 52 pct in return for 6.3 mln U.S. dlrs from Qintex Inc\'s\nQintex America (Media) Ltd unit.\n    H.R.S. said that under the deal\'s first stage, closng March\n22, it would sell Qintex 900,000 Hal Roach shares at seven U.S.\ndlrs a share each for a total of 6.3 mln dlrs and Roach will\nrepay H.R.S. 3.3 mln U.S. dlrs of advances. [...]
+'TOTAL STILL EXPECTS 1.5 BILLION FRANC 1986 LOSS French oil group Total Cie Francaise des\nPetroles &lt;TPN.PA> is still expecting a 1.5 billion franc\nconsolidated net loss, including minority interests, for 1986,\nafter taking account of stock losses of 7.5 billion francs, the\ncompany said in a communique after a board meeting here.\n    In late January group president Francois-Xavier Ortoli told\njournalists that the slump in oil prices and the weak dollar\nhad caused the stock depre [...]
+'STEEGO CORP &lt;STG> 3RD QTR JAN 31 LOSS Oper shr loss 16 cts vs loss 10 cts\n    Oper net loss 1,569,000 vs loss 990,000\n    Sales 50.3 mln vs 50.1 mln\n    Nine mths\n    Oper shr loss nine cts vs loss two cts\n    Oper net loss 849,000 vs loss 199,000\n    Sales 159.9 mln vs 156.6 mln\n    NOTE: Current nine mths net includes 1,036,000 dlr pretax\ngain on sale of property.\n    Prior year net both periods includes pretax gain 1,095,000\ndlrs on pension plan termination.\n    Current [...]
+'E-SYSTEMS INC &lt;ESY> SETS QUARTERLY Qtly div 12-1/2 cts vs 12-1/2 cts prior\n    Pay April One\n    Record March 13\n Reuter\n&#3;',0
+'RESOURCE EXPLORATION &lt;REXI> IN DRILLING PACT Resource Exploration Inc said it has\nagreed to let &lt;Langasco Energy Corp> drill 50 oil and\nnatural gas wells on its Clinton Sandstone formation within its\nTuscarawas and Harrison County, Ohio area of operation.\n    Resource said it would receive a cash payment and an\noverriding royalty interest on oil and gas production from\nwells drilled on the property.\n    Resource said gas produced from the property will be\ntransported throu [...]
+'TEXAS OIL REGULATOR CALLS FOR STATE TAX BREAKS Texas Railroad Commissioner James\nNugent, saying that the ailing oilpatch cannot wait for\nCongress to act, today urged Texas state lawmakers to adopt\nincentives to find new oil reserves and to exempt severance\ntaxes on oil produced from stripper wells.\n    Nugent said in a speech to the Texas house of\nrepresentatives that the state must take the initiative in\nmolding U.S. energy policy and finding new ways to assist\ntroubled oil pro [...]
+'UNICORP AMERICAN CORP &lt;UAC> SETS QUARTERLY Qtly div 15 cts vs 15 cts prior\n    Pay March 31\n    Record March 13\n Reuter\n&#3;',0
+'COLOMBIA BLASTS U.S. FOR COFFEE TALKS FAILURE Colombian finance minister Cesar Gaviria\nblamed an inflexible U.S. position for the failure of last\nweek\'s International Coffee Organisation, ICO, talks on export\nquotas.\n    \"We understand that the U.S. Position was more inflexible\nthan the one of Brazil, where current economic and political\nfactors make it difficult to adopt certain positions,\" Gaviria\ntold Reuters in an interview.\n    The U.S. and Brazil have each laid the blam [...]
+'LIBERTY FINANCIAL GROUP &lt;LFG> REGULAR DIVIDEND Qtly div 12.5 cts vs 12.5 cts in prior qtr\n    Payable March 13\n    Record February 27\n Reuter\n&#3;',0
+'PACTEL &lt;PAC> SEES EARNINGS GROWTH Pacific Telesis Group chairman Donald\nGuinn told a meeting of security analysts that the company sees\ncontinued earnings growth in 1987 above the 1.08 billion dlrs,\nor 5.02 dlrs per share, earned in 1986.\n    Guinn also said that capital spending stood at about 1.8\nbillion dlrs in 1986, and the company expected the figure to\nremain flat each year through 1989. He noted that all captial\nspending will be internally financed.\n    Guinn also told [...]
+'TRANS WORLD AIRLINES MAKES 52 DLR/SHARE CASH MERGER PROPOSAL FOR USAIR\n ',0
+'UNICORP AMERICAN CORP &lt;UAC> 4TH QTR NET Shr 13 cts vs 70 cts\n    Net 1,279,000 vs 7,979,000\n    Revs 16.4 mln vs 19.6 mln\n    Year\n    Shr 89 cts vs 2.43 dlrs\n    Net 10.3 mln vs 29.8 mln\n    Revs 56.2 mln vs 83.8 mln\n    Avg shrs 12.1 mln vs 13.1 mlnm\n    NOTE: 1986 year net includes gain 12.9 mln dlrs from sale\nof eight real estate properties.\n Reuter\n&#3;',0
+'KENYA SIGNS PACT TO ESTABLISH OWN SHIPPING LINE Kenya has signed an agreement with\nBritish and German interests to establish a shipping line that\nwill handle 40 pct of the country\'s external trade, sources\nclose to the deal said.\n    The state-owned Kenya Ports Authority, KPA, signed an\nagreement with the Hamburg-based shipping line Unimar\nSeetransport to establish the Kenya National Shipping line,\nwith an initial capital of 100 mln shillings, sources said. KPA\nwill hold 70 pct [...]
+'NEW BANK RULES TOUGHER THAN NEEDED, DEALERS SAY U.S. and U.K. bank regulators are asking\nbanks to set aside more reserves than is necessary to cushion\nthem against the risks posed by the interest rate and currency\nswap transactions they carry, swap dealers said.\n    After viewing proposed guidelines released jointly today by\nthe Bank of England and the Federal Reserve Board, dealers said\nthat in effect, regulators are asking them to set aside\nreserves twice for the same risk.\n   [...]
+'SHAW\'S SUPERMARKETS INC &lt;SHAW> YEAR JAN 3 Shr 1.23 dlrs vs 1.33 dlrs\n    Semi-annual div six cts vs six cts prior payment\n    Net 16.2 mln vs 14.8 mln\n    Sales 1.09 billion vs 909.4 mln\n    NOTE: Dividend is payable April one to holders of record\nMarch nine\n Reuter\n&#3;',0
+'DYNAMICS CORP &lt;DYA> IN SETTLEMENT WITH CTS &lt;CTS> Dynamics Corp of America said\nit has reached an agreement with CTS Corp resolving all\ndifferences between the two companies.\n    It said as a result of the settlement, CTS\'s special board\ncommittee has stopped soliciting orders to purchase some or all\nof CTS.\n    Dynamics, which now owns 27.5 pct of CTS\' outstanding\nstock, said it agreed to limit its shareholdings to not more\nthan 35 pct of the outstanding shares for a yea [...]
+'RENEWAL OF U.S./USSR GRAIN PACT SAID UNCERTAIN Prospects for renewal of the\nfive-year U.S./USSR grains agreement are uncertain at this\npoint, a Soviet trade official told Reuters.\n    The current trade imbalance between the United States and\nthe Soviet Union, high U.S. commodity prices, and increased\nworld grain production make a renewal of the supply agreement\nnext year less certain, Albert Melnikov, deputy trade\nrepresentative of the Soviet Union, said in an interview.\n    The [...]
+'DANAHER &lt;DHR> EXPECTS EARNINGS INCREASE IN 1987 Danaher Corp said it expects higher\nearnings in 1987 versus 1986.\n    \"We expect significant increases in earnings and revenues\nin 1987,\" Steven Rales, Danaher chairman and chief executive\nofficer, said.\n    Earlier, the company reported 1986 net earnings of 15.4 mln\ndlrs, or 1.51 dlrs a share, versus 13.5 mln dlrs, or 1.32 dlrs\na share, in 1985.\n    It also reported fourth quarter net of 7.3 mln dlrs, or 71\ncts a share, up f [...]
+'DANAHER CORP &lt;DHR> 4TH QTR NET Shr 71 cts vs 43 cts\n    Net 7,274,000 vs 4,447,000\n    Rev 161.6 mln vs 77.6 mln\n    Year\n    Shr 1.51 dlrs vs 1.32 dlrs\n    Net 15,401,000 vs 13,525,000\n    Rev 454.0 mln vs 304.9 mln\n    NOTE: Fourth qtr net includes extraordinary gain of 3.8 mln\ndlrs, or 37 cts per share, versus 2.9 mln dlrs, or 28 cts a\nshare, in 1985\'s fourth qtr, and an extraordinary charge of\n642,000 dlrs, or six cts a share. 1986 net includes\nextraordinary gain of 7 [...]
+'TWA &lt;TWA> MAKES MERGER OFFER FOR USAIR &lt;U> Trans World Airlines said it has\nproposed a cash merger of USAir Group with TWA in which the\nholders of USAir common would receive 52 dlrs in cash in\nexchange for their stock.\n    TWA said the offer was made in a letter to Edmin Colodny,\nchairman and president of USAir.\n    TWA said, however, that if the negotiated deal is not\nacceptable it may make an offer directly to USAir\'s\nshareholders for up to 51 pct of USAir\'s outstandin [...]
+'CTS &lt;CTS> AND DYNAMICS &lt;DYA> REACH ACCORD CTS Corp and Dynamics Corp of\nAmerica reached an agreement resolving all outstanding\ndifferences between them, according to a joint statment.\n    As a result of the settlement, a special committee of the\nboard of directors of CTS stopped soliciting offers to buy all\nor part of the company, it said.\n    CTS and DCA also agreed to dismiss all pending litigation\nbetween the two companies except for one appeal pending before\nthe U.S. S [...]
+'MEASUREX &lt;MX> SELLS SOUTH AFRICAN UNIT Measurex Corp said it\ncompleted the sale of its Measurex (South Africa Pty)\nsubsidiary to a group of employees who manage the operation.\n    Measurex, a maker of computer integrated manufacturing\nsystems, said the subsidiary represented less than one pct of\nworldwide revenues and the sale will have no impact on this\nyear\'s earnings.\n Reuter\n&#3;',0
+'JEFFERIES MAKING MARKET IN USAIR &lt;U> Jefferies and Co said it is making a\nmarket in the stock of USAir Group Inc at 48-1/2 to 50.\n    USAir received an offer from Trans world airlines to buy\nthe airline at 52 dlrs cash per share.\n    USAir was halted on the New York Stock EXcahnge for\ndissemination of the news. It was indicated at 47 to 54.\n Reuter\n&#3;',0
+'TRANS-LUX &lt;TLX> SETS FIVE PCT STOCK DIVIDEND Trans-Lux Corp said its board\ndeclared a five pct stock dividend payable April nine to\nholders of record March 20.\n    The company said directors also declared regular quarterly\ndividends on presently outstanding shares of both classes of\ncommon, payable April nine to holders of record March 16.\n    It said an unchanged dividend of two cts will be paid on\nthe common and 1.8 cts on the Class B stock.\n Reuter\n&#3;',0
+'KANEB ENERGY PARTNERS LTD &lt;KEP> 4TH QTR LOSS Shr loss one cent\n    Net loss 186,000\n    Revs 10.7 mln\n    11 mths\n    Shr loss 7.26 dlrs\n    Net loss 121.4 mln\n    Revs 46.9 mln\n    NOTE: In February 1986, Kaneb Services Inc contributed all\nof its domestic oil and gas operations to Kaneb Partners, which\nwas newly formed, and exchanged approximately 3,200,000\ndepositary units respresenting limited partnership interests in\nKEP for approximately 6,400,000 million shares of th [...]
+'DALTON COMMUNICATIONS INC &lt;DALT> 3RD QTR JAN 31 Shr profit three cts vs loss two cts\n    net profit 157,500 vs loss 60,200\n    Revs 1.1 mln vs 1.0 mln\n    Nine months\n    Shr profit five cts vs profit six cts\n    Net profit 223,400 vs profit 260,800\n    Revs 3.2 mln vs 3.1 mln\n Reuter\n&#3;',0
+' &#2;\n(CORRECTION) - SHAW\'S SUPERMARKETS EARNINGS\n    In item headlined \"SHAW\'S SUPERMARKETS INC &lt;SHAW> YEAR JAN\n3\" please read per share earnings 1.33 drs vs 1.23 dlrs,\ncorrecting order of results.\n Reuter\n&#3;\n\n',0
+'WTD INDUSTRIES INC &lt;WTDI> 3RD QTR JAN 31 NET Shr profit 13 cts vs loss one ct\n    Net profit 853,000 vs loss 22,000\n    Sales 41.1 mln vs 20.3 mln\n    Avg shrs 6,349,753 vs 4,403,852\n    Nine Mths\n    Shr profit 57 cts vs profit 28 cts\n    Net profit 2,869,000 vs profit 1,252,000\n    Sales 119.0 mln vs 67.6 mln\n    Avg shrs 5,054,844 vs 4,403,852\n Reuter\n&#3;',0
+'HEALTHVEST &lt;HVT> SELLS SHARES Healthvest, a Maryland real estate\ninvestment trust, said it began selling five mln shares of\ncommon stock at 21 dlrs a share.\n    The company said it is also selling 543,237 shares to\nHealthcare International Inc &lt;HII>, giving the company a 9.8\npct stake in Healthvest.\n Reuter\n&#3;',0
+'CACEX DENIES BRAZIL FCOJ PRICE RISE RUMOURS There has been no rise in the\nprice of Frozen Concentrated Orange Juice, FCOJ, a spokesman\nfor the Banco do Brasil\'s Foreign Trade Department, Cacex,\nsaid.\n    He was responding to rumours in the international market\nthat Brazil had raised its FCOJ prices in range of 1,075 to\n1,150 dlrs per tonne.\n Reuter\n&#3;',0
+'E-SYSTEMS &lt;ESY> SETS QTRLY PAYOUT Qtrly div 12.5 cts vs 12.5 cts prior\n    Pay April 1\n    Record March 13\n Reuter\n&#3;',0
+'PIEDMONT MANAGEMENT CO INC &lt;PMAN> 4TH QTR Shr 70 cts vs 4.91 dlrs\n    Net 3.7 mln vs 26.3 mln\n    Year\n    Shr 1.99 dlrs vs 3.35 dlrs\n    Net 10.7 mln vs 18.0 mln\n    NOTE:1986 year, 4th qtr include capital gains of 3.5 mln\ndlrs and 1.1 mln dlrs, respectively and extraordinary gain of\n3.4 mln dlrs and 1.2 mln dlrs respectively. 1985 year and 4th\nqtr include capital gains of 24.0 mln dlrs and 23.3 mln dlrs\nrespectively and extraordinary gain of 3.9 mln dlrs.\n        \n Reute [...]
+'EASTPARK REALTY TRUST &lt;ERT> 4TH QTR NET Shr 1.52 dlrs vs 17 cts\n    Net 1,306,000 vs 144,000\n    Rev 758,000 vs 670,000\n    Year\n    Shr 2.68 dlrs vs 2.63 dlrs\n    Net 2,313,000 vs 2,285,000\n    Rev 2.8 mln vs 2.7 mln\n    NOTE: Fourth qtr and 1986 had gains on real estate\ninvestments of 933,000 dlrs, or 1.08 a share, and 970,000 dlrs,\nor 1.12 a share, respectively.\n    This compares with a loss of 137,000 dlrs, or 15 cts a\nshare, and again of 1.3 mln dlrs, or 1.45 a share, [...]
+'NL INDUSTRIES INC &lt;NL> SETS QTRLY PAYOUT Qtrly div five cts vs five cts qtr\n    Pay April One\n    Record  March 16\n Reuter\n&#3;',0
+'WTD INDUSTRIES INC &lt;WTDI> 3RD QTR JAN 31 NET Shr profit 13 cts vs loss one ct\n    Net profit 853,000 vs loss 22,000\n    Revs 41.1 mln vs 20.3 mln\n    Avg shrs 6,349,753 vs 4,403,852\n    Nine mths\n    Shr profit 57 cts vs profit 28 cts\n    Net profit 2,869,000 vs profit 1,252,000\n    Revs 119.0 mln vs 67.6 mln\n    Avg shrs 5,054,844 vs 4,403,000\n    Note: Company went public in October 1986.\n Reuter\n&#3;',0
+'ALASKA AIR GROUP INC &lt;ALK> QTLY DIVIDEND Shr four cts vs four cts prior qtr\n    Pay May five\n    Record April 15\n Reuter\n&#3;',0
+'USAIR &lt;U> HAS NO COMMENT ON TWA &lt;TWA> OFFER USAir Group Inc said it had no comment\non an offer it received from Trans World Airlines to buy USAir\nfor 52 dlrs cash per share.\n    USAir spokesman David Shipley also declined comment on\nPiedmont Aviation Inc &lt;PIE>. USAir has offered 71 dlrs cash per\nshare for half of Piedmont\'s stock, and 73 dlrs in its own\nstock for the balance.\n    Piedmont also received an offer from Norfolk Southern Corp\n&lt;NSC> of 65 dlrs cash per sh [...]
+'MORE PRESSURE URGED FOR ASIA TO TAKE U.S. BEEF Congressmen from beef producing\nstates and representatives of the U.S. livestock industry \nurged the Reagan administration to press Japan and South Korea\nto open up their markets to imports of beef.\n    Testifying at a House subcommittee hearing on livestock\nissues, Rep. Hal Daub (R-Nebr.), said the administration should\npush hard for greater beef imports by Japan and South Korea.\nDaub was joined by several other lawmakers.\n    U.S. [...]
+'SOUTH AFRICAN FOREIGN RESERVES UP SHARPLY IN FEB South Africa\'s total gold and\nforeign assets rose by 700 mln rand in February to 6.2 billion\nrand after rising by almost one billion rand in January,\nReserve Bank Governor Gerhard de Kock said.\n    De Kock, interviewed on state-run television, gave no\nbreakdown of the reserves.\n    He also said that to curb inflation, salary increases would\nhave to be below the inflation rate. The state must set an\nexample by keeping wage increas [...]
+'MORE SOVIET GRAIN BUYING FROM U.S. TIED TO PRICE Whether the Soviet Union will fulfill\nits buying obligations under the U.S./USSR grains agreement\ndepends entirely on the United States, a Soviet trade official\ntold Reuters.\n    \"How can I tell that we are ready to fulfill the agreement\nif the United States does not want to offer us grain at\ncompetitive prices?\" said Albert Melnikov, deputy trade\nrepresentative of the Soviet Union to the United States.\n    \"We are in the marke [...]
+'LEASEWAY TRANSPORTATION CORP &lt;LTC> QTLY DIV Qtly div 37.5 cts vs 37.5 cts prior\n    Pay April eight\n    Record March 16\n Reuter\n&#3;',0
+'PERU SUGAR HARVEST SEEN LOWER -- USDA Sugar production in Peru for the\n1986/87 season has been revised to 593,000 tonnes (raw value),\ndown 10 pct from the previous forecast and 21 pct below the\n1985/86 harvest, the U.S. Agriculture Department said in its\nWorld Production and Trade Report.\n    It said while rains in the northern mountain region are\nimproving the supply of irrigation water, the major benefits\nwill not occur until the 1987/88 season.\n Reuter\n&#3;',0
+'ITEL &lt;ITEL> GETS FINANCING FOR ANIXTER BUY Itel Corp said it obtained commitments\nfrom a syndicate of banks for a six-year secured loan of about\n325 mln dlrs and had separately filed registration statements\nfor two public offerings for a total of 150 mln dlrs to fund\nits December 1986 acquisition of &lt;Anixter Bros Inc>.\n    It said one of the offerings will be a new 75 mln dlrs\nissue of convertible exchangeable series C preferred and the\nother will be a 75 mln dlr issue of s [...]
+'GREAT AMERICAN &lt;GTA> GAINS OVER 80 MLN IN LOANS Great American First Savings Bank said\nthe bank recorded gains exceeding 80 mln dlrs on sales of loans\nand mortgage securities valued at 1.1 billion dlrs.\n    The San Diego-based bank said in a prepared release of its\nreport to analysts here that the gains included 6.6 mln dlrs in\narbitrage profits from the premium paid for the separation of\ninterest and principal components of new Federal National\nMortgage Association strip secu [...]
+'TANDY BRANDS &lt;TAB> SELLS UNIT Tandy Brands Inc said it sold\nits Grate Home and Fireplace division to an investor group that\nincludes some members of Grate\'s management for 1,600,000 dlrs\nin cash and secured notes.\n    The company said the sale will not materially offset the\n9,848,000 dlr non-recurring charge it took against the sale of\nthe division.\n Reuter\n&#3;',0
+'AMERICAN FARM BUREAU OPPOSES FARM BILL CHANGES The directors of the American Farm\nBureau, the nation\'s largest farm organization, voted Tuesday\nto urge Congress to leave the 1985 farm bill in place without\nalterations.\n    \"We are solidly opposed to opening up the 1985 farm bill,\"\nsaid Dean Kleckner, president. \"The current farm bill has been\nin place for just a little over a year and in our judgment\nthere is more to be gained at the present time from maintaining\nthe legisla [...]
+'BROWING-FERRIS &lt;BFI> DECLARES 2-FOR-1 SPLIT Browning-Ferris Industires Inc said its\nboard declared a two-for-one stock split payable April 24 to\nholders of record March 31.\n     \n Reuter\n&#3;',0
+'PENNWALT CORP &lt;PSM> QTLY DIVIDEND Qtly div 55 cts vs 55 cts prior\n    Payable May one\n    Record April three\n Reuter\n&#3;',0
+'BANNER INDUSTRIES INC &lt;BNR> COMPLETES PURCHASE Banner Industries Inc said it completed\nthe purchase of all Rexnord Inc &lt;REX> common shares for its\n26.25 dlrs per share cash tender offer that ended Feb\n27, 1987.\n    The purchase follows Banner receiving earlier today 310 mln\ndlrs under a credit agreement with Citicorp Industries Credit\nInc and the Bank of Nova Scotia, and an additional 260 mln dlrs\nfrom offerings made for Banner and its subsidiary through\nDrexel Burnham and [...]
+'MURPHY RAISES CRUDE OIL POSTED PRICES ONE DLR/BBL. WTI TO 17.00 DLRS TODAY\n ',0
+'PHOENIX STEEL RECEIVES OFFER FOR CLAYMONT MILL &lt;Phoenix Steel Corp> said a group\nof investors offered to buy its Clayton steel plate mill for\neight mln dlrs and the assumption of a bond obligation.\n   Phoenix did not disclose the indentity of the investors.\n    Phoenix was forced to close the Clayton mill last month.\n    The company said the offer represents a major step in\nrestructuring the company.\n Reuter\n&#3;',0
+'KEANE INC &lt;KEAN> 4TH QTR Shr 17 cts vs 15 cts\n    Net 229,000 vs 201,000\n    revs 10.5 mln vs 9.9 mln\n    Year\n    Shr 21 cts vs 55 cts\n    Net 283,000 vs 766,000\n    Revs 40.4 mn vs 39.7 mln\n    NOTE:1985 shares adjusted to reflect the distribution of\none share of Class B common stock for every two shares of\ncommon stock held of record as of July 1, 1986.\n Reuter\n&#3;',0
+'VIACOM &lt;VIA> MERGER EXPECTED IN 60 TO 90 DAYS Sumner Redstone, president of National\nAmusements, Inc, predicted he can win regulatory approvals to\nwrap up the 3.4 billion dlr acquisition of Viacom International\nInc in 60 to 90 days.\n    Redstone, 63, catapulted himself into the big leagues of\nentertainment early today when a group of Viacom managers and\ntheir financial backers decided not to top National\'s bid.\n    \"We\'ve had counsel working for some time in every region\nw [...]
+'BRITISH AIDE CRITICIZES U.S.PROTECTIONISM A senior British official said that\nprotectionist bills being considered by Congress could trigger\nretaliation by the European Community (EEC) and threaten the\nglobal trading system.\n    Paul Channon, secretary for trade and industry, said if\nCongress passed legislation to curb textile imports, which\nwould hit EC shipments as well as shipments from major Asian\ntextile producers, \"the community would have to retaliate.\"\n    His comments [...]
+'YEUTTER SEEKS STRONGER TAIWAN, S.KOREA CURRENCIES U.S. Trade Representative Clayton\nYeutter said he hoped the U.S. dollar would continue to decline\nin relation to the currencies of Taiwan and South Korea as a\nway to improve the U.S. trade picture.\n    Testifying before the House Appropriations subcommittee\nwhich must approve his agency\'s 1988 budget, he said, \"In my\njudgment economic factors justify a continued decline.\"\n    Asked by a committee member if he expected a further [...]
+'NL INDUSTRIES INC &lt;NL> SET REGULAR PAYOUT Qtly div five cts vs five cts prior\n    Pay March 31\n    Record March 16\n Reuter\n&#3;',0
+'CHINA SUGAR OUTPUT SEEN LOWER -- USDA China\'s 1986/87 sugar crop has been\nrevised to 5.26 mln tonnes (raw value), down four pct from the\nprevious forecast and five pct below the previous season, the\nU.S. Agriculture Department said.\n    In its World Production and Trade Report, the department\nattributed the decline to relatively poor profitability of\nsugar, causing harvested area of cane and beets to decline\nseven pct from 1985/86.\n    Beet sugar production for 1986/87 is now e [...]
+'GENERAL HOST &lt;GH> SEES YEAR LOSS General Host Corp said it will\nreport a loss from continuing operations and a sharp decline in\nnet income for the year ended January 25, 1987, due to\nsubstantial operating losses in its Frank\'s Nursery and Crafts\nunit. For the year ended January 25, 1986, General reported net\nincome of 29.7 mln dlrs.\n    The company said it discovered problems in its unit\'s\ncomputerized accounts payable system. It said results of its\nother nursery and craft  [...]
+'MEDTRONIC INC &lt;MDT> SETS PAYOUT Qtly dividend 22 cts vs 22 cts\n    Pay April 30\n    Record April 10\n Reuter\n&#3;',0
+'LOUISVILLE GAS AND ELECTRIC CO &lt;LOU> DIVIDEND Qtly dividend 65 cts vs 65 cts\n    Pay April 15\n    Record March 31\n Reuter\n&#3;',0
+'KAISER ALUMINUM &lt;KLU> RAISES PRODUCT PRICES Kaiser Aluminum and Chemical\nCorp said it is increasing prices for a broad range of common\nalloy coil, flat sheet and plate products.\n    The company said prices to distributors and direct\ncustomers on shipments of new orders placed March 4 and after\nwill be increased by four to eight cts per lb.\n    Kaiser said the increases are due to increased demand and\nthe need to set prices relative to the cost of primary\naluminum.\n Reuter\n&#3;',0
+'ROBERTSON UPS CAPITAL WIRE&lt;CWCC> STAKE TO 12 PCT New York investor Julian Robertson\nand several investment partnerships he controls said they\nraised their stake in Capital Wire and Cable Corp to 481,800\nshares, or 12.2 pct of the total, from 430,200, or 10.9 pct.\n    In a filing with the Securities and Exchange Commission\nRobertson and his Tiger, Jaguar, Puma and Tiger Management Co\nentities said they bought 51,600 Capital Wire common shares\nbetween Feb 3 and 17 at 13.25 dlrs  [...]
+'TWA &lt;TWA> TANGLES PIEDMONT &lt;PIE> SITUATION Trans World Airlines Inc complicated\nthe bidding for Piedmont Aviation Inc by offering either to buy\nPiedmont suitor USAir Group or, alternatively, to merge with\nPiedmont and USAir.\n    Piedmont\'s board was meeting today, and Wall Street\nspeculated the board was discussing opposing bids from Norfolk\nSouthern Corp and USAir. The TWA offer was announced shortly\nafter the Piedmont board meeting was scheduled to begin.\n    TWA offere [...]
+'FOREST OIL CORP &lt;FOIL> 4TH QTR Shr loss 29 cts vs profit eight cts\n    Net loss 2.0 mln vs profit 568,000\n    year\n    Shr loss 1.37 dlrs vs profit 88 cts\n    Net loss 9.3 mln vs profit 6.0 mln\n Reuter\n&#3;',0
+'YEUTTER PLANS TRADE TRIP TO CHINA THIS SUMMER U.S. Trade Representative Clayton\nYeutter said he plans a July trip to China to discuss trade\nissues including China\'s admission to the General Agreements on\nTariffs and Trade.\n    Yeutter told a congressional hearing it was possible China\ncould be a member of GATT before the end of the year.\n    \"They are making major moves to becoming a full scale member\nof the world economy,\" he told the House Appropriations\nsubcommittee which  [...]
+'RIO COFFEE TRADE PREFERS NO PACT TO QUOTA CUT The failure of talks to introduce\nnew coffee export quotas within the International Coffee\nAgreement, ICA, was preferable to the alternative of Brazil\nhaving a sharply reduced quota, as had been proposed, President\nof the Rio de Janeiro Coffee Trade Association Carlos Calmon\nsaid.\n    He told Reuters proposals to reduce Brazil\'s quota to 25\npct of the world share from 30 pct at present were unacceptable\nas the country has large stoc [...]
+'ISRAEL TENDERS TONIGHT FOR CORN AND/OR SORGHUM Israel will tender overnight for\n33,000 long tons of U.S. sorghum and/or 22,000 long tons of\nU.S. corn for April shipment, private export sources said.\n Reuter\n&#3;',1
+'U.S. CABINET COUNCIL SET TO MULL FARM ISSUES The Reagan administration\'s\ncabinet-level Economic Policy Council is scheduled to meet\nFriday to discuss, among other issues, the status of\nagricultural legislation, administration officials said.\n    The officials said discussion of a U.S. Agriculture\nDepartment wheat export subsidy to the Soviet Union was not on\nthe agenda. Matters not on the agenda, however, can be brought\nbefore the council, the officials said.\n    Grain trade of [...]
+'UNICORP AMERICAN CORP &lt;UAC> 4TH QTR NET Shr 13 cts vs 70 cts\n    Net 1,538,000 vs 8,614,000\n    Revs 16.4 mln vs 19.6 mln\n    12 mths\n    Shr 89 cts vs 2.43 dlrs\n    Net 10.3 mln vs 29.8 mln\n    Revs 56.2 mln vs 83.8 mln\n    Note: 1986 net is before preferred dividend payments and\nincludes after-tax gain from sale of real estate properties of\n12.9 mln dlrs.\n Reuter\n&#3;',0
+'BANNER &lt;BNR> COMPLETES REXNORD SHARE PURCHASE Banner Industries Inc said it completed\nthe previously announced purchase of Rexnord Inc &lt;REX>. It said\nit owns 96 pct of Rexnord\'s outstanding following the purchase\nof all Rexnord\'s common validly tendered pursuant to its 26.25\ndlr per share cash tender offer ended February 27.\n    Banner also said it received 310 mln dlrs pursuant to a\ncredit agreement with &lt;Citicorp Industrial Credit Inc> and the\n&lt;Bank of Nova Scotia [...]
+'U.S. REAFFIRMS OPPOSITION TO EC OILS TAX PLAN A meeting among government agencies\ntoday reaffirmed the strong opposition of the United States to\na proposed new tax on vegetable oils and fats in the European\nCommunity, U.S. trade officials said.\n    Representatives of the major government agencies agreed at\na trade policy review group meeting, which includes officials\nof the deputy secretary rank, to continue diplomatic pressure\non EC member states.\n    \"We (all agencies) are to [...]
+'&lt;CCL INDUSTRIES INC> 4TH QTR NET Shr 15 cts vs 18 cts\n    Net 4,500,000 vs 5,300,000\n    Revs 156.7 mln vs 152.0 mln\n    YEAR\n    Shr 72 cts vs 1.11 dlrs\n    Net 21.7 mln vs 33.0 mln\n    Revs 695.4 mln vs 653.5 mln\n    Note: Shr profit relates to class B non-voting shares.\n Reuter\n&#3;',0
+'EIA SAYS DISTILLATE STOCKS OFF 3.4 MLN BBLS, GASOLINE OFF 100,000, CRUDE UP 3.2 MLN\n ',0
+'(G.T.C. TRANSCONTINENTAL GROUP LTD) 1ST QTR NET Shr 11 cts vs nine cts\n    Net 2.1 mln vs 1.6 mln\n    Revs 60.8 mln vs 32.9 mln\n    Avg shrs 19.7 mln vs 17.2 mln\n    Note: period ended January 31.\nREUTER\n Reuter\n&#3;',0
+'PIEDMONT AVIATION RECESSES MEETING WITHOUT TAKING ACTION ON MERGER PROPOSALS\n ',0
+'EIA SAYS DISTILLATE, GAS STOCKS OFF IN WEEK Distillate fuel stocks held in\nprimary storage fell by 3.4 mln barrels in the week ended Feb\n27 to 128.4 mln barrels, the Energy Information Administration\n(EIA) said.\n    In its weekly petroleum status report, the Department of\nEnergy agency said gasoline stocks were off 100,000 barrels in\nthe week to 251.5 mln barrels and refinery crude oil stocks\nwere up 3.2 mln barrels to 333.0 mln.\n    The EIA said residual fuel stocks fell 2.2 ml [...]
+'CANADA CENTRAL BANK HEAD SEES MODERATE GROWTH Bank of Canada Governor John Crow said he\nexpects the Canadian economy will grow moderately in the coming\nyear, despite the near flat growth in the final quarter of\n1986.\n    \"We see moderate growth,\" Crow told a news conference\nfollowing presentation of the central bank\'s annual report in\nthe House of Commons today.\n    He said there were positive signs of growth in the economy,\nparticularly the drawdown of business inventories i [...]
+'ALLIS-CHALMERS &lt;AH> PROPOSES RESTRUCTURING Allis-Chalmers Corp said it asked\nlenders and other groups to approve a restructuring plan that\nwould cause a dilution of the company\'s existing common stock.\n    The company said it would sell all of its businesses other\nthan the American Air Filter business, make a public financing\nof more than 100 mln dlrs and pay part of the currently\noutstanding debt with the proceeds.\n    Under the plan, which was presented to institutional\nle [...]
+'AMVESTORS FINANCIAL CORP &lt;AVFC> 4TH QTR NET Oper shr profit 11 cts vs loss 27 cts\n    Oper net profit 662,625 vs loss 774,002\n    Revs 43.9 mln vs 18.4 mln\n    Year\n    Oper shr profit 37 cts vs loss 37 cts\n    Oper net profit 1,487,796 vs loss 1,119,626\n    Revs 150.1 mln vs 51.7 mln\n    NOTE: 1986 4th qtr and yr oper net excludes 6,134 dlrs and\n720,500 dlrs or 20 cts per share, respectively, for realized\ninvestment gains.\n    1986 qtr and yr oper net also excludes 102,300 [...]
+'PIEDMONT &lt;PIE> TAKES NO ACTION Piedmont Aviation Inc said\nits board meeting recessed today without taking action on\nproposals to combine Piedmont with other corporations.\n    Piedmont has received opposing bids from Norfolk Southern\nCorp and US Air Corp.\n    Earlier today, Trans World Airlines Inc offered to either\nbuy Piedmont suitor US Air or, alternatively, to merge with\nPiedmont and U.S. Air.\n    IN a prepared statement, Piedmont said there would be no\nfurther announceme [...]
+'YEUTTER CONCERNED ABOUT U.S. EXPORT PICTURE U.S. Trade Representative Clayton\nYeutter said he expects imports to fall soon but he was\nconcerned about the lack of improvement in U.S. exports given\nthe dollar\'s decline in the last 18 months.\n    \"I\'m convinced we\'re about to see an improvement on the\nimport side. I\'m more concerned about the export side,\" he told\na House Appropriations subcommittee.\n    Part of the blame goes on other countries which have not\ngenerated the e [...]
+'HOUSE TRADE BILL DRAFTING POSTPONED The House Ways and Means trade\nsubcommittee postponed until next week its opening session to\nstart drafting major changes to U.S. trade laws, a committee\naide said.\n    The subcommittee had not yet completed the preparatory work\nto start writing the legislation, the aide said.\n Reuter\n&#3;',0
+'&lt;LUMONICS INC> YEAR LOSS Oper shr loss 20 cts vs profit 66 cts\n    Oper net loss 1,995,000 vs profit 5,820,000\n    Revs 65.2 mln vs 53.0 mln\n    Avg shrs 9,891,000 vs 8,811,000\n    Note: 1986 loss excludes extraordinary loss of 2,413,000\ndlrs or 25 cts shr including corporate reorganization,\ndiscontinuing of U.S. operations and inventory writedown of\nU.S. subsidiaries vs yr-ago loss of 3,140,000 dlrs or 36 cts\nshr.\n Reuter\n&#3;',0
+'HCC INDUSTRIES &lt;HCCI> QUARTERLY DIVIDEND Qtly div three cts vs three cts\n    Pay March 27\n    Record March 16\n Reuter\n&#3;',0
+'SOUTHLAND &lt;SLC> UNIT RAISES CRUDE PRICES Southland Corp\'s Citgo Petrleum Corp\nsaid it raised the contract price it will pay for all grades of\ncrude oil by one dlr a barrel, effective today.\n    The increase brings Citgo\'s posted price for West Texas\nIntermediate to 17.00 dlrs a bbl. West Texas Sour is also now\npriced at 17.00 dlrs/bbl, and Light Louisiana South is posted\nat 17.35 dlrs/bbl.\n    On February 25 Citgo lowered its crude postings 50 cts to\n1.50 dlrs per bbl, and  [...]
+'&lt;WESTERN SECURITY BANK> 4TH QTR NET Shr profit ten cts vs loss six cts\n    Net profit 43,000 vs loss 26,000\n    Year\n    Shr profit 46 cts vs profit 12 cts\n    Net profit 193,294 vs profit 51,029\n    Assets 44.4 mln vs 25.3 mln\n    Deposits 40.0 mln vs 21.4 mln\n    Loans 25.3 mln vs 15.2 mln\n Reuter\n&#3;',0
+'RECENT U.S. OIL DEMAND UP 2.1 PCT FROM YEAR AGO U.S. oil demand as measured by\nproducts supplied rose 2.1 pct in the four weeks ended February\n27 to 16.39 mln barrels per day (bpd) from 16.05 mln in the\nsame period a year ago, the Energy Information Administration\n(EIA) said.\n    In its weekly petroleum status report, the Energy\nDepartment agency said distillate demand was down 2.1 pct in\nthe period to 3.37 mln bpd from 3.44 mln a year earlier.\n    Gasoline demand averaged 6.60  [...]
+'COFFEE PRICE DROP NOT AFFECTING COLOMBIA\'S DEBT the sharp fall in international coffee\nprices will not affect colombia\'s external credit situation,\nfinance minister cesar gaviria told reuters.\n    \"our foreign debt is high, but we can pay, and I hope the\nforeign banking community will maintain its position toward us,\"\nhe said.\n    He said the current decline on world coffee markets was not\ntotally unexpected and would have no immediate bearing on\ncolombia\'s financial state, [...]
+'USDA WOULD SCRAP COTTON, RICE, BEAN PRICE FLOORS The package of proposed farm policy\nchanges that the Reagan administration sent to Congress today\nincludes a provision that would eliminate minimum price support\nlevels for upland cotton, rice and soybeans.\n    The package, obtained by Reuters, also includes a\nprovision, outlined in advance by USDA officials, that would\nincrease the annual permissible cut in the basic price support\nlevels for all major crops to 10 pct from five pct [...]
+'SOUTH AFRICAN FOREIGN RESERVES UP SHARPLY South Africa\'s total gold and\nforeign assets rose by 700 mln rand in February to 6.2 billion\nrand after rising by almost one billion rand in January,\nReserve Bank Governor Gerhard de Kock said.\n    De Kock, interviewed on state-run television, gave no\nbreakdown of the reserves.\n    He also said that to curb inflation, salary increases would\nhave to be below the inflation rate. The state must set an\nexample by keeping wage increases belo [...]
+'WTC INTERNATIONAL &lt;WAF> SETS SOUTH AFRICA TRUST WTC International N.V. said it\nhas sold its affiliates in South Africa to an independent\ntrust, created to continue the operations in that country.\n    The purchase price was about 8.4 mln dlrs, represented by a\nten-year interest-bearing note, payable annually at 11 pct, to\nbe paid by the trust out of proceeds from the South African\noperations, the company said.\n    WTC said its board concluded in view of the social,\npolitical a [...]
+'IVORY COAST SAYS COFFEE PRICE FALL SHORT-LIVED Ivory Coast today predicted that the\npresent coffee price crash recorded after the collapse of the\nrecent International Coffee Organisation (ICO) meeting in\nLondon would not last long.\n    Commenting on Monday\'s failure by producer and consumer\nnations to agree on new export quotas needed to tighten an\noversupplied coffee market, Ivorian Agriculture Minister Denis\nBra Kanon told reporters that traders would eventually be\nobliged to [...]
+'N.Z. CURRENT ACCOUNT DEFICIT NARROWS IN JANUARY New Zealand\'s current account deficit\nnarrowed to 180 mln N.Z. Dlrs in January from 203 mln, revised\nfrom 207 mln, in December and 305 mln in January 1986, in a\nsmoothed measurement, the Statistics Department said.\n    Unsmoothed figures show a deficit of 162 mln dlrs for\nJanuary against 107 mln, revised from 75 mln for December 1986\nand 575 mln in January 1986.\n    The smoothed series -- adjusted to iron out random\nfluctuations - [...]
+'REAGAN\'S REMARKS HELP GOLD TO RECOVER IN HONG KONG Gold rose by about 50 U.S. Cents an\nounce, following a statement by President Ronald Reagan that\nthe arms-for-hostages deal with Iran \"was a mistake,\" dealers\nsaid.\n    Bullion rose to 409.40/90 dlrs from an initial low of\n408.90/409.40. This compares with the opening of 409.00/50 and\nNew York\'s close of 410.00/50.\n    Dealers noted mild short-covering in the metal after some\ninitial selling by local investors. Trading was f [...]
+'TAIWAN ISSUES MORE CDS TO CURB MONEY SUPPLY GROWTH The central bank has issued 7.08 billion\ndlrs worth of certificates of deposit (CDs), bringing the value\nof CD issues so far this year to 93.29 billion, a bank\nspokesman told Reuters.\n    The new CDs, with maturities of six months, one year and\ntwo years, carry interest rates ranging from 3.9 to 5.15 pct.\n    The issues are designed to help curb the growth of the M-1B\nmoney supply which has expanded along with Taiwan\'s foreign\n [...]
+'UNUSUALLY DRY WEATHER AFFECTS CHINA\'S AGRICULTURE Abnormally warm and dry weather over most\nparts of China is seriously affecting crops, the New China News\nAgency said.\n    It said the drought has made rice planting difficult in\neight provinces, including Guangxi, Sichuan and Hunan. Plant\ndiseases and insect pests have increased in wheat-producing\nareas, it said.\n    The agency said some areas of Guangxi, Hubei, Shanxi and\nother provinces have been suffering a drought for more  [...]
+'TAIWAN SHIPBUILDER LOOKS FOR JAPANESE VENTURES Taiwan\'s state-owned China Shipbuilding\nCorp (CSBC) plans to seek joint production agreements with\nJapan and further diversify into ship repairing to try to trim\nits debts, chairman Louis Lo said.\n    He told Reuters in an interview that CSBC\'s first joint\nproduction venture, to build two hulls for &lt;Onomichi Dockyard\nCo Ltd>, was a success. Talks on similar projects have been\nheld with other Japanese firms, including Mitsubishi  [...]
+'CREDITORS SEEK SWIFT RESCUE PACKAGE FOR JAPAN LINE A group of creditor banks hopes to work\nout a rescue package for Japan Line Ltd &lt;JLIT.T>, one of the\nworld\'s largest tanker operators, by the end of Japan\'s\nbusiness year on March 31, a spokesman for the Industrial Bank\nof Japan Ltd &lt;IBJT.T> (IBJ) said.\n    Japan Line\'s cumulative debt was 68.98 billion yen at the\nend of September, which exceeded shareholders\' equities and\nreserves totalling 63.40 billion.\n    In Decem [...]
+'AUSTRALIAN WHEAT EXPORTS RISE IN FEBRUARY Australian wheat shipments rose to\n1.33 mln tonnes in February from 1.01 mln in January, an\nAustralian Wheat Board official said.\n    February\'s shipments were down on the 1.54 mln tonnes\nshipped in February 1986.\n    Cumulative shipments for the first five months of the\nOctober/September wheat year were 6.12 mln tonnes, as against\n6.54 mln a year earlier, the official said.\n    The major destinations in February were: China (419,196\nt [...]
+'OPEC STICKING FIRM ON OFFICIAL PRICES - SUBROTO OPEC countries are all sticking firmly to\nofficial crude oil prices but the volatility of spot prices is\nlikely to continue into the third quarter, Indonesian Minister\nof Mines and Energy Subroto told Reuters.\n    Subroto, attending a Pacific Energy Cooperation conference,\nblamed recent rapid spot price changes on unbalanced supply and\ndemand. \"If we stick to the production limitation, the third\nquarter will be in better balance.\" [...]
+'THAI COFFEE EXPORTS RISE IN 1986 Thai coffee exports rose to 22,068\ntonnes in 1986 from 20,430 a year earlier, the Customs\nDepartment said.\n REUTER\n&#3;',0
+'SOUTH KOREAN MONEY SUPPLY RISES IN FEBRUARY South Korea\'s M-2 money supply rose 0.39\npct to 33,992.0 billion won in February from 33,858.4 billion\nin January, when it fell a revised 0.04 pct from December,\nprovisional Bank of Korea figures show.\n    The February figure was up 18.89 pct from a year earlier.\n    M-1 money supply rose 4.13 pct to 8,492.1 billion won in\nFebruary from January, when it fell 7.82 pct from December. The\nFebruary figure marked a year-on-year rise of 18.4 [...]
+'PAKISTAN\'S FOREIGN EXCHANGE RESERVES FALL Pakistan\'s foreign exchange reserves\nfell to 8.43 billion rupees in February from 8.96 billion in\nJanuary, compared with 12.97 billion in February 1986, the\nState Bank of Pakistan said.\n    The bank gave no reason for the fall but local bankers said\nbig import bills had affected the reserves.\n    The Federal Bureau of Statistics has not yet released last\nmonth\'s import and export figures.\n REUTER\n&#3;',0
+'THAILAND REDUCES MAIN RICE CROP PROJECTION Thailand\'s main paddy crop is expected\nto fall to 15.4 mln tonnes in the 1986/87 (Nov/Oct) season from\na previous 15.68 mln estimate in November and an actual 17.35\nmln a year ago, the Thai Rice Mills Association said.\n    It said a joint field survey late last month by the\nassociation, the Commerce Ministry and the Bank of Thailand\nindicated that paddy output in Thailand\'s northeast region is\nlower than expected because of a drought i [...]
+'HOECHST GROUP PRE-TAX PROFIT FALLS IN 1986 Hoechst AG &lt;HFAG.F> said its group\npre-tax profit in 1986 would be slightly lower than the 3.16\nbillion marks posted in 1985, while parent company pre-tax\nprofits rose slightly from the 1.62 billion in 1985.\n    Group turnover fell slightly to 38 billion marks from 42.72\nbillion in 1985, and parent company turnover fell to around 14\nbillion marks from 15.35 billion, the company said in a\nstatement.\n REUTER\n&#3;',0
+'BHP TO FLOAT GOLD UNIT WITH ONE-FOR-THREE ISSUE The Broken Hill Pty Co Ltd &lt;BRKN.S>\n(BHP) said it plans a renounceable one-for-three issue of\nrights to float a new company, &lt;BHP Gold Mines Ltd> (BHPGM),\nwhich will hold most of BHP\'s gold interests.\n    In a statement BHP said the 25-cent par rights would be\npriced at 50 cents for 430 mln of the BHPGM shares on offer.\nBHP will subscribe for the remaining 540 mln shares, or 56 pct\nof issued capital, on the same terms.\n    B [...]
+'HK BANK EXPECTED TO POST 10 TO 13 PCT PROFIT RISE The Hongkong and Shanghai Banking Corp\n&lt;HKBH.HK> is likely to show a rise in profit of between 10 and\n13 pct for 1986, reflecting stronger than expected loan growth,\nshare analysts polled by Reuters said.\n    Their estimates of the bank\'s net earnings for last year\nranged from 2.99 to 3.1 billion H.K. Dlrs. Results will be\nannounced on Tuesday. The 1985 net profit was 2.72 billion.\n    They forecast a final dividend of 29 cent [...]
+'HUGHES TOOL DIRECTORS REJECT MERGER WITH BAKER The directors of Hughes Tool Co\n&lt;HT> said they would recommend to shareholders that they reject\na merger with Baker International Corp &lt;BKO> today.\n    Hughes vice-president Ike Kerridge said the recommendation\nwould be put to shareholders at a meeting scheduled for 10 A.M.\nLocal time (1600 GMT) to discuss the proposed merger.\n    Kerridge said the board met yesterday to discuss the merger\nbut decided against it.\n    The Hughe [...]
+'CANON INC (CANN.T) YEAR ENDED DECMEBER 31 Group shr 18.34 yen vs 58.72\n    Net 10.73 billion yen vs 37.06 billion\n    Pretax 27.76 billion yen vs 84.78 billion\n    Operating 30.06 billion yen vs 88.81 billion\n    Sales 889.22 billion vs 955.78 billion\n    Note - The company attributed the profit fall largely to\nthe yen\'s appreciation during the period. Domestic sales rose\n0.4 pct to 274.17 billion yen from a year earlier while exports\ndeclined 9.9 pct to 615.04 billion.\n REUTE [...]
+'NEW CURRENCY PROBLEM SEEN AMONG U.S, EUROPE, JAPAN The highly visible drama involving the\nyen\'s sharp rise against the U.S. Dollar is obscuring the fact\nthat the Japanese currency has hardly budged against major\nEuropean currencies, thus creating a new set of exchange rate\ndistortions, Japanese and European research officials said.\n    The officials, looking beneath the rhetoric of statements\nby the Group of Five (G-5) industrial nations, told Reuters the\ncurrency movements of t [...]
+'THAI TIN EXPORTS RISE IN JANUARY Thailand exported 1,816 tonnes of tin\nmetal in January, up from 1,731 in December and 1,330 a year\nago, the Mineral Resources Department said.\n    It said major buyers last month were Singapore, Japan,\nBritain, the Netherlands, Malaysia and the U.S.\n REUTER\n&#3;',0
+'U.K. MONEY MARKET OFFERED EARLY ASSISTANCE The Bank of England said it had invited\nan early round of bill offers from the discount houses. The\nBank forecast the shortage in the system today at around 1.15\nbillion stg.\n    Among the main factors affecting liquidity, bills maturing\nin official hands and the take-up of treasury bills will drain\nsome 732 mln stg and exchequer transactions some 245 mln. In\naddition, bankers\' balances below target and a rise in note\ncirculation will  [...]
+'BELGOLUX TRADE MOVES INTO SURPLUS IN 1986 The Belgo-Luxembourg Economic Union\n(BLEU) moved into a narrow trade surplus of 4.7 billion francs\nin 1986 after a 140.4 billion franc deficit in 1985, figures\ngiven by a spokesman for the National Statistics Institute\nshow.\n    He said imports fell last year to 3,061.8 billion francs\nfrom 3,304.1 in 1985 while exports were also lower at 3,066.6\nbillion francs against 3,163.7 billion.\n    In December, the BLEU had an 11.9 billion franc t [...]
+'SPAIN RAISES BANKS\' RESERVE REQUIREMENT The Bank of Spain said it raised the\nreserve requirement for banks and savings banks to 19 pct of\ndeposits from 18 pct to drain excess liquidity which threatened\nmoney supply and inflation targets.\n    In a statement issued late last night, the central bank\nsaid the measure would take effect from March 13.\n    \"In recent weeks, there has been excess liquidity in the\nSpanish economy which, if not controlled, would threaten the\nmonetary an [...]
+'INDIA AND JAPAN TO DISCUSS IRON ORE PRICES The state-owned Minerals and Metals\nTrading Corp will send a team to Japan next week to negotiate\nan iron ore export contract for 1987/88 beginning April 1,\ntrade sources said.\n    Japan, the biggest buyer of Indian iron ore with imports of\naround 23 mln tonnes a year, has asked India to reduce prices\nfrom the current average of 18 dlrs a tonne, the sources said.\n    \"Japan has said it may be forced to reduce ore imports from\nIndia nex [...]
+'TAIWAN FOREIGN EXCHANGE RESERVES HIT NEW HIGH Taiwan\'s foreign exchange reserves hit a\nnew high of more than 51 billion U.S. Dlrs on March 4, compared\nwith 50 billion in mid-February and 25.1 billion a year\nearlier, the central bank said.\n    Bank governor Chang Chi-Cheng told reporters the increase\ncame mainly from the bank\'s purchases of more than one billion\nU.S. Dlrs on the local interbank market between February 18 and\nMarch 4.\n    He said the rise showed signs of slowing [...]
+'BELGIAN ECU COIN ISSUE PRICED, SALE DATE SET A limited Belgian issue of silver Ecu\ncoins with a face value of five Ecus will go on sale from March\n23 at a price of 500 Belgian francs each, a Finance Ministry\nspokesman said.\n    Gold Ecu coins with a face value of 50 Ecus will be sold\nfrom the same day. The spokesman told Reuters the price for\nthese would be fixed just before they go on sale but was likely\nto be between 8,500 and 9,000 francs.\n    At least two mln silver coins an [...]
+'U.K. MONEY MARKET GIVEN 17 MLN STG EARLY HELP The Bank of England said it provided just\n17 mln stg assistance to the money market in response to an\nearly round of bill offers.\n    Earlier, the Bank had estimated the shortage in the system\ntoday at around 1.15 billion stg.\n    The central bank purchased bills for resale to the market\non April 2 at an interest rate of 10-15/16 pct.\n REUTER\n&#3;',0
+'FIRS SLIGHTLY RAISES EC BEET SUGAR OUTPUT ESTIMATE The French sugar market intervention\nboard, FIRS, raised its estimate of 1986/87 beet sugar\nproduction in the 12-member European Community to 13.76 mln\ntonnes white equivalent in its end-February report from 13.74\nmln a month earlier.\n    Its forecast for total EC sugar production, including cane\nand molasses, rose to 14.10 mln tonnes from 14.09 mln.\nPortugal, which joined the Community in January 1986, was\nestimated at 12.75 ml [...]
+'PAPUA NEW GUINEA PLANS RESOURCES INVESTMENT AGENCY The Papua New Guinea Government\nwill establish a public corporation to invest in resources\nprojects, Minerals and Energy Minister John Kaputin said.\n    \"We intend to provide a means through which less privileged\nindividuals can become part owners and beneficiaries from the\ndevelopment of mining and petroleum projects,\" he told\nParliament.\n    Existing policy allowing the state up to 30 pct equity in\nmajor mining projects and  [...]
+'NIGERIAN CURRENCY FIRMS AT LATEST AUCTION The Nigerian naira firmed 2.6 pct against\nthe dollar after 17 banks were disqualified from bidding at\ntoday\'s weekly foreign exchange auction, the central bank said.\nThe naira finished at 3.8050 to the dollar, against 3.9050 last\nweek.\n    Only 38.39 mln dlrs of the 50 mln dlrs on offer was sold,\nwith all 27 bidding banks successfully obtaining hard currency.\n    The effective rate, including a central bank levy, for\ntransactions in the [...]
+'U.S. TELLS JAPAN TO DO MORE TO CUT TRADE SURPLUS U.S. Undersecretary of State for Economic\nAffairs Allen Wallis said he had urged Japan to do much more to\nreduce its large trade surplus with the United States.\n    \"Our central message to Japan this week was that while we\nhave made progress in some areas, much needs to be done,\" he\ntold a press conference after three days of talks.\n    \"What we need is a resolution of trade issues, we need\nvisible efforts to restructure the eco [...]
+'TAIWAN BUYS 60,000 TONNES OF U.S. MAIZE The joint committee of Taiwan\'s maize\nimporters has awarded contracts to two U.S. Companies to supply\ntwo shipments of maize, totalling 60,000 tonnes, a committee\nspokesman told Reuters.\n    Continental Grain Co of New York received the first 30,000\ntonne cargo contract, priced at 93.86 U.S. Dlrs per tonne,\nwhile Peavey Co of Minneapolis won the second shipment, also\n30,000 tonnes, at 93.36 dlrs per tonne.\n    Both shipments are c and f T [...]
+'GERMAN ECONOMIC OUTLOOK SEEN FAIRLY BRIGHT The outlook for the West\nGerman economy is relatively bright, with gross national\nproduct expected to expand by three pct this year, Kiel\nUniversity\'s Institute for World Economy said.\n    The GNP forecast by the institute, one of five leading\neconomic research bodies in West Germany, is more optimistic\nthan that of the other institutes, some of which have recently\nreduced their GNP forecasts to between two and 2.5 pct.\n    In a report [...]
+'CREDITOR BANKS MAY BUY INTO SINGAPORE COFFEE FIRM The nine creditor banks of the\nSingapore coffee trader &lt;Teck Hock and Co (Pte) Ltd> are\nthinking of buying a controlling stake in the company\nthemselves, a creditor bank official said.\n    Since last December the banks have been allowing the\ncompany to postpone loan repayments while they try to find an\noverseas commodity company to make an offer for the firm.\n    At least one company has expressed interest and\nnegotiations are [...]
+'U.K. 4TH QTR TRADE DEFICIT 2.6 BILLION STG, CURRENT ACCOUNT DEFICIT 760 MLN - OFFICIAL\n ',0
+'ECONOMIC SPOTLIGHT - POLISH SANCTIONS Poland says U.S. Sanctions have cost its\neconomy 15 billion dlrs and has made clear it wants Washington\nto take a lead in repairing the damage after lifting remaining\nrestrictions two weeks ago.\n    Polish officials are unable to provide a precise breakdown\nof the figure, saying it takes into account a number of\nhypothetical losses. Some of them are \"too sophisticated to\nconvert into financial terms,\" one banking source said.\n    But Weste [...]
+'U.K. FOURTH QUARTER TRADE DEFICIT 2.6 BILLION STG Britain had a visible trade deficit of\n2.6 billion stg in the fourth quarter of 1986 against a revised\ndeficit of 2.9 billion in the third quarter, official\nstatistics show.\n    Seasonally-adjusted figures issued by the Central\nStatistical Office (CSO) show the current account was in\ndeficit by 760 mln stg against an upwardly revised third\nquarter shortfall of 930 mln.\n    For 1986 as a whole, visible trade was in deficit by 8.3\ [...]
+'BELGIAN WHOLESALE PRICES FALL IN JANUARY Belgian wholesale prices fell by 5.9\npct in January from a year earlier after a 5.7 pct year on year\nfall in December, figures from the economics ministry show.\n    A ministry spokesman said the wholesale price index, base\n1953 and excluding value added tax, stood at 250.9 in January.\nThis compared with 251.9 in December, 265.5 in Janua~y, 1986\nand 267.2 in December, 1985.\n    In January 1986, wholesale prices were 3.9 pct lower than a\nye [...]
+'CARGILL U.K. STRIKE TALKS POSTPONED TILL MONDAY Talks set for today between management\nand unions to try to solve the labour dispute at Cargill U.K.\nLtd\'s Seaforth oilseed crushing plant have been rescheduled for\nMonday, a company spokesman said.\n    Oilseed processing at the mill has been at a standstill\nsince December 19.\n REUTER\n&#3;',0
+'FRENCH INTERVENTION RATE CUT LIKELY, DEALERS SAY The Bank of France is likely to cut its\nmoney market intervention rate by up to a quarter point at the\nstart of next week.  This follows a steady decline in the call\nmoney rate over the past 10 days and signals from the Finance\nMinistry that the time is ripe for a fall, dealers said.\n    The call money rate peaked at just above nine pct ahead of\nthe meeting of finance ministers from the Group of Five\nindustrial countries and Canada [...]
+'U.K. GRAIN/POTATO FUTURES VOLUME DOWN IN FEBRUARY Traded volumes for U.K. Grain and potato\nfutures in February were down on the previous month while\npigmeat and pig cash settlement futures were higher, official\nfigures show.\n    Combined wheat and barley futures trade declined to 892,700\ntonnes from 1.19 mln in January, and the value fell to 97 mln\nstg from 129 mln, Grain and Feed Trade Association (GAFTA)\nfigures show.\n    A total of 984,960 tonnes were registered for main crop [...]
+'BUNDESBANK LEAVES CREDIT POLICIES UNCHANGED The Bundesbank left credit policies\nunchanged after today\'s regular meeting of its council, a\nspokesman said in answer to enquiries.\n    The West German discount rate remains at 3.0 pct, and the\nLombard emergency financing rate at 5.0 pct.\n REUTER\n&#3;',0
+'TURKEY TO IMPORT 100,000 TONNES OF CRYSTAL SUGAR Turkey has announced a tender to import\n100,000 tonnes of white crystal sugar with an advertisement in\nlocal newspapers.\n    Turkish Sugar Factories said in the advertisement there was\na 50 pct option to increase or decrease the amount and bids\nshould reach it before March 24.\n    The semi-official Anatolian Agency recently quoted Turkish\nMinister of Industry and Trade Cahit Aral as saying Turkey will\nexport 100,000 tonnes of suga [...]
+'U.K. MONEY MARKET GIVEN FURTHER SMALL ASSISTANCE The Bank of England said it provided the\nmoney market with a further 20 mln stg of assistance during the\nmorning. It again bought bills for resale to the market on\nApril 2 at a rate of 10-15/16 pct. Earlier this morning, it\nbought 17 mln stg of bills at the same rate and for resale on\nthe same date.\n    The Bank has thus given a total of 37 mln stg so far today,\nwhich leaves the bulk of a 1.15 billion stg shortage still in\nthe sys [...]
+'ICE UNCHANGED AT SOVIET OIL PORT OF VENTSPILS Ice conditions are unchanged at the\nSoviet Baltic oil port of Ventspils, with continuous and\ncompacted drift ice 15 to 30 cms thick, the latest report of\nthe Finnish Board of Navigation said.\n    Icebreaker assistance to reach Ventspils harbour is needed\nfor normal steel vessels without special reinforcement against\nice, the report said.\n    It gave no details of ice conditions at the other major\nSoviet Baltic export harbour of Klaip [...]
+'SWISS OFFERS NEW SERIES OF MONEY MARKET PAPER The Swiss Finance Ministry is inviting\ntenders for a new series of three-month money market\ncertificates to raise about 150 mln Swiss francs, the Swiss\nNational Bank said.\n    Bids would be due on March 10 and payment on March 12.\n    The last issue of three-month paper conducted on February\n12 yielded 2.969 pct.\n REUTER\n&#3;',0
+'EGYPTIAN CENTRAL BANK DOLLAR RATE UNCHANGED Egypt\'s Central Bank today set the dollar\nrate for commercial banks for March 6 at 1.373/87 dollars,\nunchanged from the previous rate.\n REUTER\n&#3;',0
+'BAKER INTERNATIONAL CORP SUES HUGHES TOOL SEEKING MERGER COMPLETION\n ',0
+'USAIR GROUP REJECTS TRANS WORLD AIRLINES TAKEOVER BID\n ',0
+'EARLY MARCH OPEC OUTPUT SEEN WELL BELOW CEILING OPEC crude oil output in the first few\ndays of March was running at about 14.7 mln bpd, down from a 16\nmln bpd average for February and well below the 15.8 mln bpd\nceiling the group adopted in December, a Reuter survey shows.\n    The figures were polled by Reuters correspondents from oil\ntraders, industry executives and analysts in Europe, the Middle\nEast, Africa, Latin America and Asia.\n    They back recent statements by OPEC minis [...]
+'BAKER &lt;BKO> SUES TO FORCE HUGHES &lt;HT> MERGER Baker International corp said it has\nfiled suit in state court in Houston to compel Hughes Tool Co\nto complete its proposed merger with Baker.\n    Late yesterday, Hughes said it had terminated the merger\nagreement because Baker would not agree to an alternative\ndivestiture plan devised by Hughes.  Hughes\' board had\npreviously found unacceptable a U.S. Justice Department consent\ndecree that would have required broader divestiture [...]
+'SPAIN DEREGULATES BANK DEPOSIT INTEREST RATES Spain\'s Finance Ministry deregulated bank\ndeposit rates in an effort to raise competition among banks and\nbring legislation into line with the European Community (EC), a\nministry spokesman said.\n    The measure was published today in the Official State\nGazette. It takes effect tomorrow and lifts restrictions on\nrates, now limited to six pct on deposits of up to 180 days.\n    The government also enacted a decree cutting to one pct\nfr [...]
+'USAIR &lt;U> REJECTS TWA &lt;TWA> TAKEOVER BID USAir Group Inc said its board has\nrejected Trans World Airlines Inc\'s offer to acquire USAir for\n52 dlrs per share in cash as grossly in adequate and not in the\nbest interests of USAir shareholders, employees or passengers.\n    The company said the unsolicited bid by the Carl C.\nIcahn-led TWA was \"highly conditional.\"\n    USAir said its board and that of Piedmont Aviation Inc\n&lt;PIE> met separately yesterday to consider USAir\'s [...]
+'U.S. FIRST TIME JOBLESS CLAIMS FALL IN WEEK New applications for unemployment\ninsurance benefits fell to a seasonally adjusted 332,900 in the\nweek ended Feb 21 from 368,400 in the prior week, the Labor\nDepartment said.\n    The number of people actually receiving benefits under\nregular state programs totaled 3,014,400 in the week ended Feb\n14, the latest period for which that figure was available.\n    That was up from 2,997,800 the previous week.\n     \n Reuter\n&#3;',0
+'JAGUAR SEES STRONG GROWTH IN NEW MODEL SALES Jaguar Plc &lt;JAGR.L> is about to sell its\nnew XJ-6 model on the U.S. And Japanese markets and expects a\nstrong reception based on its success in the U.K., Chairman Sir\nJohn Egan told a news conference.\n    Commenting on an 11 pct growth in 1986 group turnover to\n830.4 mln stg and pre-tax profits at 120.8 mln stg, slightly\nbelow 1985\'s 121.3 mln, Egan said Jaguar aimed at an average\nprofit growth of 15 pct per year. However, the intr [...]
+'CCC ACCEPTS BONUS BID ON WHEAT FLOUR TO IRAQ The Commodity Credit Corporation,\nCCC, has accepted bids for export bonuses to cover sales of\n25,000 tonnes of wheat flour to Iraq, the U.S. Agriculture\nDepartment said.\n    The department said the bonuses awarded averaged 116.84\ndlrs per tonne.\n    The shipment periods are March 15-April 20 (12,500 tonnes)\nand April 1-May 5 (12,500 tonnes).\n    The bonus awards were made to Peavey Company and will be\npaid in the form of commodities  [...]
+'DIAMOND SHAMROCK RAISES CRUDE POSTED PRICES ONE DLR, EFFECTIVE MARCH 4, WTI NOW 17.00 DLRS/BBL\n ',0
+'NORD RESOURCES CORP &lt;NRD> 4TH QTR NET Shr 19 cts vs 13 cts\n    Net 2,656,000 vs 1,712,000\n    Revs 15.4 mln vs 9,443,000\n    Avg shrs 14.1 mln vs 12.6 mln\n    Year\n    Shr 98 cts vs 77 cts\n    Net 13.8 mln vs 8,928,000\n    Revs 58.8 mln vs 48.5 mln\n    Avg shrs 14.0 mln vs 11.6 mln\n    NOTE: Shr figures adjusted for 3-for-2 split paid Feb 6,\n1987.\n Reuter\n&#3;',0
+'NO QUAKE DAMAGE AT CHUQUICAMATA - MINE SPOKESMAN The earthquake which hit northern Chile\ntoday, registering 7.0 on the open-ended Richter scale, caused\nno damage to the copper mine at Chuquicamata, a mine spokesman\nsaid.\n    Chuquicamata public relations director Guillermo Barcelo\ntold Reuters by telephone from the mine that the quake had\ncaused no problems and operations continued as usual.\n    A spokesman for the state Chilean Copper Commission in\nSantiago confirmed there had  [...]
+'ORBIT INCREASES OIL AND GAS RESERVE VALUES &lt;Orbit Oil and Gas Ltd> said\nthe value of its oil and gas reserves increased by 19 pct to\n52.6 mln dlrs from 44.2 mln dlrs reported at year-end 1985,\naccording to an independent appraisal.\n    Orbit said it has reserves of 2.4 mln barrels of oil and\nnatural gas liquids and 67.2 billion cubic feet of natural gas.\n    In addition, 75 pct owned &lt;Sienna Resources Ltd> has\nCanadian reserves of 173,000 barrels of oil and 1.6 bcf of\nnatu [...]
+'CCC ACCEPTS BONUS BID ON SEMOLINA TO EGYPT The Commodity Credit Corporation,\nCCC, has accepted a bid for an export bonus to cover a sale of\n2,000 tonnes of semolina to Egypt, the U.S. Agriculture\nDepartment said.\n    The department said the bonus was 233.91 dlrs per tonne and\nwas made to International Multifoods Corp. The bonus will be\npaid in the form of commodities from CCC stocks.\n    The semolina is for shipment during June 1987, it said.\n    An additional 13,000 tonnes of s [...]
+'FIVE GROUPS APPLY TO BUY FRENCH TELEPHONE GROUP Five consortia have applied to buy the\nFrench state-owned telephone equipment manufacturer &lt;Cie\nGenerale de Constructions Telephoniques (CGCT)>, which will\ngive the owners control of 16 pct of the French telephone\nswitching market, sources close to Finance Minister Edouard\nBalladur said.\n    The French government has given itself until the end of\nApril to decide which applicant will be accepted, they added.\n    While several for [...]
+'BLIZZARD CLOSES BOSPHORUS Blizzard conditions halted shipping\nthrough the Bosphorus waterway and piled snow up to 70 cms deep\nin central Istanbul, paralysing the city for the second day\nrunning.\n    Snow whipped by 48 kph winds continued to fall on Istanbul\nand northwest Anatolia after 36 hours and weather reports\npredicted no relief for another two days.\n    Port officials said at least six large vessels in the Black\nSea and 13 in the Sea of Marmara were waiting for conditions  [...]
+'JAPAN FUND &lt;JPN> SEEKERS CONFIDENT OF FINANCING The &lt;Sterling Grace Capital Management\nL.P.> group said it is confident financing can be arranged if\nThe Japan Fund\'s board recommend\'s the group\'s acquisition\nproposal.\n    The group, which also includes &lt;Anglo American Security\nFund L.P.> and T.B. Pickens III, Tuesday proposed an entity it\ncontrols acquire for cash all the assets of Japan Fund for 95\npct of the fund\'s aggregate net asset value.\n    The group said it  [...]
+'PEGASUS GOLD INC &lt;PGULF> 3RD QTR DEC 31 NET Shr profit 20 cts vs loss two cts\n    Net profit 2,665,000 vs loss 202,000\n    Revs 12,141,000 vs 5,993,000\n    Nine mths\n    Shr profit 35 cts vs loss 11 cts\n    Net profit 4,653,000 vs loss 1,167,000\n    Revs 35.1 mln vs 18.0 mln\n Reuter\n&#3;',0
+'&lt;KELTIC INC> YEAR NET Shr 99 cts vs 1.25 dlrs\n    Net 418,733 vs 235,572\n    Revs 2,777,425 vs 2,024,116\n    Note: 1986 shr after November, 1986 600,000 class A\nsubordinate floating share issue\n Reuter\n&#3;',0
+'U.K. MONEY MARKET GIVEN HELP, OFFERED FACILITIES The Bank of England said it had given the\nmoney market 206 mln stg of assistance this afternoon and\noffered the discount houses borrowing facilities to take out\nthe rest of the 1.10 billion stg shortage, revised down from an\ninitial 1.15 billion estimate.\n    It made no alteration to its established dealing rates,\nbuying 95 mln stg of band one bank bills at 10-7/8 pct and 111\nmln of band two bank bills at 10-13/16 pct. This brings  [...]
+'E.F. HUTTON &lt;EFH> STARTS PUROLATOR &lt;PCC> BID E.F. Hutton Group Inc said it has\nstarted its previously announced offer to purchase up to\n6,332,471 common shares of Purolator Courier Corp at 35 dlrs\neach.\n    In a newspaper advertisement, the company said the offer,\nproration period and withdrfawal rights will expire April One\nunless extended.  The offer is conditioned on receipt of at\nleast 5,116,892 Purolator shares, or a 66.7 pct interest, and\nis the first step in a merge [...]
+'YEUTTER PUTS CURRENCY BURDEN ON TAIWAN, KOREA Responsibility for the appreciation of\nthe Taiwan dollar and the South Korean Won lies soley with\nthose countries, said U.S. trade representative Clayton Yeutter\n    Speaking to the Asia Society, Yeutter said that it is in\nthose countries\' own long-term interest to raise the value of\ntheir currencies against the dollar.\n    Yeutter was responding to a question about what the U.S.\ncould do to encourage appreciation of those currencies [...]
+'PRINCEVILLE DEVELOPMENT CORP &lt;PVDC> YEAR LOSS Shr diluted loss 31 cts vs profit 17 cts\n    Net loss 2,806,005 vs profit 1,513,395\n    Revs 15.0 mln vs 10.4 mln\n    Avg shrs diluted 8,982,754 vs 8,804,899\n    NOTE: Current year includes loss of 3.4 mln dlrs from\ntakeover defense expenses. Also includes losses of 1.8 mln dlrs\nvs 332,000 dlrs from equity in limited partnerships.\n Reuter\n&#3;',0
+'ORANGE-CO &lt;OJ> HOLDER RAISES STAKE Orange-Co Inc said its\nlargest shareholder, &lt;Summit Resoureces Inc>, has increased its\nstake to 15 pct from 14 pct and now owns 644,727 shares.\n Reuter\n&#3;',0
+'HORIZON CORP &lt;HZN> 4TH QTR NET Oper shr profit 1.66 dlrs vs loss eight cts\n    Oper net profit 12.0 mln vs loss 572,000\n    Revs 27.4 mln vs 4,311,000\n    Year\n    Oper shr profit 1.36 dlrs vs loss 43 cts\n    Oper net profit 9,817,000 vs loss 2,433,000\n    Revs 35.0 mln vs 13.8 mln\n    Avg shrs 7,224,000 vs 6,731,000\n    NOTE: 1985 net includes tax credits of 492,000 dlrs in\nquarter and 2,433,000 dlrs in year.\n    1985 net both periods excludes 168,000 dlr loss from\ndiscon [...]
+'&lt;INTERNATIONAL THOMSON ORGANISATION LTD> YEAR Shr 33p vs 38p\n    Net 97 mln vs 111 mln\n    Revs 1.71 billion vs 1.76 billion\n    NOTE: Figures in sterling.\n    Share results after deducting preferred share dividends of\none mln pounds sterling in 1986.\n Reuter\n&#3;',0
+'EQUATORIAL COMMUNICATIONS CO &lt;EQUA> 4TH QTR LOSS Shr loss 3.84 dlrs vs nil\n    Net loss 56,879,000 vs profit 23,000\n    Rev 10.3 mln vs 17.7 mln\n    Year\n    Shr loss 4.60 dlrs vs profit 14 cts\n    Net loss 67,818,000 vs profit 1,807,000\n    Rev 50.9 mln vs 56.1 mln\n    Avg shares 14,734,000 vs 12,801,000\n    NOTE: Fourth qtr net includes a one-time restructuring\ncharge of 45.2 mln dlrs. 1985 net income includes extraordinary\ngain of 3.2 mln dlrs, or 25 cts.\n Reuter\n&#3;',0
+'INTERNATIONAL THOMSON ORGANISATION LTD YEAR SHR 33P VS 38P\n ',0
+'TRIMEDYNE &lt;TMED> TO SPIN OFF STAKE IN UNIT Trimedyne Inc said it will\ndistribute one Class B common share of &lt;Automedix Sciences Inc>\nfor each four Trimedyne shares held of record on March Nine.\n    The company said in the spinoff it is distributing its\nentire 44 pct interesdt in Automedix.  The spun-off stock will\nnot be saleable for 13 months, the company said.\n Reuter\n&#3;',0
+'CASEY\'S GENERAL STORES INC &lt;CASY> 3RD QTR JAN 31 Shr 16 cts vs 13 cts\n    Net 1,900,000 vs 1,600,000\n    Sales 68.2 mln vs 69.6 mln\n    Nine mths\n    Shr 60 cts vs 43 cts\n    Net 7,100,000 vs 4,700,000\n    Sales 214.0 mln vs 219.5 mln\n Reuter\n&#3;',0
+'FRENCH FREE MARKET CEREAL EXPORT BIDS DETAILED French operators have requested licences\nto export 40,000 tonnes of free market feed wheat, 32,500\ntonnes of soft bread wheat, 375,000 tonnes of barley and\n465,000 tonnes of maize at today\'s European Community tender,\ntrade sources here said.\n    Rebates requested ranged between 134 and 136.50 European\ncurrency units (Ecus) a tonne for the feed wheat, 137.39 and\n141.50 Ecus a tonne for the bread wheat, 137.93 and 142.95 Ecus\nfor th [...]
+'DIAMOND SHAMROCK &lt;DIA> RAISES CRUDE OIL POSTINGS Diamond Shamrock said it raised its\nposted prices for all grades of crude oil one dlr a barrel,\neffective yesterday.\n    The one dlr increase brings West Texas Intermediate, WTI\nthe U.S. benchmark crude, to 17.00 dlrs a bbl, the company\nsaid.\n    Diamond Shamrock joined Sun Co, Coastal, Citgo and Murphy\nOil in raising crude oil posted prices one dlr a barrel\nyesterday.\n Reuter\n&#3;',0
+'OAK HILL SPORTSWEAR CORP &lt;OHSC> 4TH QTR NET Shr 27 cts vs 28 cts\n    Net 1,026,000 vs 1,025,000\n    Sales 27.8 mln vs 25.4 mln\n    Year\n    Shr 95 cts vs 16 cts\n    Net 3,682,000 vs 598,000\n    Sales 102.1 mln vs 100.4 mln\n    Avg shrs 3,858,000 vs 3,700,000\n Reuter\n&#3;',0
+'OAK INDUSTRIES INC &lt;OAK> 4TH QTR LOSS Oper shr loss five cts vs loss 50 cts\n    Oper net loss 3,862,000 vs loss 15,900,000\n    Sales 42.6 mln vs 38.8 mln\n    Avg shr 72.1 mln vs 31.7 mln\n    Year\n    Oper shr loss 51 cts vs loss 2.10 dlrs\n    Oper net loss 30.3 mln vs 51.3 mln\n    Sales 151.7 mln vs 153.1 mln\n    Avg shrs 59.4 mln vs 24.4 mln\n    Backlog 57.1 mln vs 52.9 mln\n    NOTES: Operating losses exclude profits from discontinued\noperationgs of 1,000,000 dlrs, or one [...]
+'REGIS CORP &lt;RGIS> REGULAR DIVIDEND SET Qtly div 4-1/2 cts vs 4-1/2 cts prior\n    Pay April 15\n    Record March 24\n Reuter\n&#3;',0
+'MANNESMANN SEEKS STAKE IN U.S. FIRM Mannesmann AG &lt;MMWG.F>, the\ndiversified engineering and pipe-making group, is interested in\ntaking a stake in a U.S. Company or companies but has not yet\nfound a suitable firm, a spokesman said in reply to questions.\n    Mannesmann managing board chairman Werner Dieter told the\nbusiness weekly Wirtschaftswoche in an interview that\nMannesmann wanted to invest in a U.S. Company in order to\nstrengthen its presence on the U.S. Market.\n    Diete [...]
+'AMERICAN INT\'L GROUP INC &lt;AIG> 4TH QTR NET Shr 1.83 dlrs vs 77 cts\n    Net 296.6 mln vs 120.1 mln\n    Year\n    Shr 4.90 dlrs vs 2.76 dlrs\n    Net 795.8 mln vs 420.5 mln\n    NOTE: Includes gains of 139.2 mln vs 46.8 mln in year and\n94.0 mln vs 11.6 mln from capital gains from investments.\n Reuter\n&#3;',0
+'SYSTEMS FOR HEALTH CARE IN ONE-FOR-50 SPLIT Systems for Health Care Inc said it\nrepositioned the company through a one-for-50 reverse stock\nsplit.\n    It said there are now 3,002,500 common shares outstanding\nwith a quoted price of about 7/8 bid, compared to 150,125,000\nshares outstanding prior to the split.\n    In another recent development, Systems for Health Care\nformally changed its name to its present form from Orcas Corp.\n Reuter\n&#3;',0
+'ROYAL DUTCH/SHELL U.S. EARNINGS SHARPLY LOWER Royal Dutch/Shell Group &lt;RD.AS> earnings\nfor 1986 from the U.S. Fell sharply because of difficult market\nconditions, lower crude and gas prices and also due to\ndifferent accounting methods, Shell chairman Peter Holmes said.\n    The Shell Oil dollar net income fell 47 pct in the year,\nwhile the additional effect of currency movements reduced the\ncontribution to group net income by 57 pct to 472 mln stg.\n    The group earlier reporte [...]
+'BANKERS WELCOME SPANISH RESERVE REQUIREMENT HIKE Bankers welcomed the Bank of Spain\'s\ndecision to raise the reserve requirement for banks and savings\nbanks, saying it reflected the socialist government\'s\ndetermination not to ease up in the fight against inflation\ndespite the painful social effects of four years of austerity.\n    The central bank last night raised the requirement by one\npercentage point to 19 pct from March 13, saying that excess\nliquidity threatened money suppl [...]
+'GAMBRO AB &lt;GAMB ST> 1986 YEAR 133.5 mln crowns vs 101 mln.\n    Sales 1.61 billion vs 1.51 billion.\n    Proposed dividend 0.80 crowns vs 0.40 crowns.\n REUTER\n&#3;',0
+'TRANSPORTATION AGENCY GIVES FINAL OKAY FOR US AIR PACIFIC SOUTHWEST ACQUISITION\n ',0
+'S AFRICA MINE MANAGERS FACE CHARGES IN DISASTER Seven managers and employees at\nGeneral Mining Union Corp Ltd\'s Kinross Mines Ltd will face\ncharges of culpable homicide following last year\'s disaster\nwhen 177 gold miners died, the Attorney General\'s Office said.\n    The mineworkers were killed last September at Kinross when\na fire set off toxic fumes which suffocated miners underground.\n    Three of the accused face alternative charges of breaking\nsafety regulations set out in [...]
+'WESTERN CANADA HURT BY INTERNATIONAL FORCES Western Canada\'s resource-based economy\nis being hurt by international market forces and there is\nlittle Ottawa can do about it, Finance Minister Michael Wilson\nsaid.\n    \"If you can tell me how we can get the international energy\nprice up and how we can get the price for copper up and how we\ncan get the price for wheat up, then we will listen,\" Wilson\ntold the House of Comnons Finance Committee.\n    Although under pressure from oil [...]
+'AMERICAN SOFTWARE &lt;AMSWA> SETS STOCK SPLIT American Software Inc said its board\ndeclared a three-for-two stock split on Class A and Class B\ncommon shares, payable March 31, record March 16.\n    The company said it expects to increase its semiannual\ndividend 12.5 pct to six cts per share post-split from eight\ncts pre-split.\n Reuter\n&#3;',0
+'COMDATA &lt;CDN> IN MERGER AGREEMENT Comdata Network Inc said\nit has entered into a letter of intent with a limited\npartnership managed by Welsh, Carson, Anderson and Stowe (WCAS)\nto merge Comdata into a corproration to be formed by WCAS.\n    Comdata said in the merger each share of the company\'s\nstock would be converted at the holders election into either 15\ndlrs in cash or a combination of 10 dlrs in cash and a unit of\nsecurities including common stock.\n    Comdata said the t [...]
+'SOYBEAN GROUP HEAD URGES USDA ACTION ON LOAN The Agriculture Department must make\na decision soon on how to change the current U.S. soybean loan\nor more soybeans will continue to be forfeited to the\ngovernment and foreign soybean production will increase, the\npresident of the American Soybean Association, ASA, said.\n    \"The USDA will have to bite the bullet one way or another\n... USDA can dodge and dart around it (the soybean loan) as\nmuch as they want, but they have to eventua [...]
+'&lt;WAJAX LTD> YEAR NET Shr 78 cts vs 1.16 dlrs\n    Net 6.7 mln vs 9.5 mln\n    Revs 278 mln vs 290 mln\n Reuter\n&#3;',0
+'AMERICAN SOFTWARE INC &lt;AMSWA> 3RD QTR JAN 31 NET Shr 42 cts vs 19 cts\n    Net 2,903,000 vs 1,307,000\n    Revs 13.1 mln vs 8,937,000\n    Avg shrs 6,877,360 vs 6,874,970\n    Nine mths\n    Shr 98 cts vs 62 cts\n    Net 6,740,000 vs 4,085,000\n    Revs 33.9 mln vs 27.8 mln\n    Avg shrs 6,875,706 vs 6,605,879\n Reuter\n&#3;',0
+'NO SOVIET WHEAT BONUS TALK PLANNED FOR MEETING U.S. Agriculture Secretary Richard\nLyng does not intend to discuss a wheat export enhancement\ninitiative to the Soviet Union at a cabinet-level Economic\nPolicy Council meeting set for tomorrow, an aide to Lyng said.\n    \"He (Lyng) does not intend to bring it up,\" the aide said,\nadding that the subsidy offer remains \"dormant.\"\n    Lyng plans to spend \"about five minutes\" reviewing the status\nof farm legislation on Capitol Hill b [...]
+'BANKAMERICA &lt;BAC> TO SELL GERMAN BANKING UNIT BankAmerica Corp said it agreed to\nsell &lt;Bankhaus Centrale Credit AG>, its German consumer banking\nsubsidiary, and German credit card operations to &lt;Banco de\nSantander> of Spain.\n    Terms were not disclosed. The deal is expected to close in\nthe second quarter, the bank holding company said.\n    Bankhaus Centrale Credit, with 31 branches, had total\nassets of 927 mln marks at year-end 1986. The credit card\noperation services  [...]
+' French official reserves 375.95 billion francs end Jan (421.00 billion end Dec) - official\n ',0
+'COPLEY PROPERTIES INC &lt;COP> 4TH QTR NET Shr 30 cts vs 36 cts\n    Net 1,211,000 vs 1,428,000\n    Revs 1,536,000 vs 1,743,000\n    Year\n    Shr 1.36 dlrs vs 62 cts\n    Net 5,438,000 vs 2,498,000\n    Revs 6,567,000 vs 2,971,000\n    NOTE: Company began operations after its July 29, 1985\npublic offering, therefore annual data are not directly\ncomparable.\n Reuter\n&#3;',0
+'UNITIL CORP &lt;UTL> 4TH QTR NET Shr 79 cts vs 72 cts\n    Net 581,915 vs 536,040\n    Revs 13.9 mln vs 13.3 mln\n    Year\n    Shr 3.28 dlrs vs 3.21 dlrs\n    Net 2,413,407 vs 2,360,048\n    Revs 54.9 mln vs 54.2 mln\n Reuter\n&#3;',0
+'RYDER &lt;RDR> BUYS BRITISH CALEDONIAN UNIT Ryder System Inc said it has acquired\nCaledonian Airmotive Ltd from &lt;British Caledonian Group PLC>\nfor undisclosed terms.\n    Caledonian Airmotive repairs and rebuilds aircraft engines.\n Reuter\n&#3;',0
+'TRELLEBORG TAKE LARGER SLICE OF BOLIDEN Swedish tyres, process equipment and\ncomponents firm &lt;Trelleborg AB> said it was taking a larger\nstake in mining and metals concern Boliden AB &lt;BLDS.ST> than it\nhad originally intended.\n    Trelleborg had previously announced it was exercising an\noption to acquire up to 65 pct of Boliden\'s voting rights.\n    In a statement, the company said they had received offers\nof up to 68 pct of the rights, and that they would accept all.\n Reut [...]
+'POLAROID &lt;PRD> UP ON REAFFIRMED OPINION Shares of Polaroid Corp rose following\na reiterated recommendation by Merrill Lynch and Co that\nfocused on strong earnings momentum for the company, traders\nsaid.\n    \"We have been recommending the stock since it was in the\n50s, but we reiterated today because of expectations of strong\nearnings momentum, its benefits from the lower dollar and\nanticipation of nice gains in margins,\" Merrill Lynch\nanalyst Charles Ryan said. He said a ne [...]
+'SWEDISH MATCH AB &lt;SMBS.ST> 1986 YEAR Profit after net financial items\n    500 mln crowns vs 359 mln\n    Sales 10.90 billion crowns vs 10.72 billion\n    Proposed dividend 12.50 crowns vs 10.50 crowns\n REUTER\n&#3;',0
+'FRENCH OFFICIAL RESERVES FALL SHARPLY IN JANUARY French official reserves fell 45.06\nbillion francs to 375.95 billion at the end of January from\n421.00 billion at the end of December, the Finance Ministry\nsaid in a statement.\n    It said the fall was largely due to sales of foreign\ncurrency that preceded the January 11 realignment of the\nEuropean Monetary System (EMS).\n    Foreign currency reserves fell by 8.91 billion francs\nduring the month, the ministry said.\n    This reflec [...]
+'SL INDUSTRIES INC &lt;SL> 2ND QTR JAN 31 NET Oper shr 22 cts vs 20 cts\n    Oper net 1,153,000 vs 1,068,000\n    Revs 15.7 mln vs 15.8 mln\n    Six mths\n    Oper shr 38 cts vs 38 cts\n    Oper net 2,039,000 vs 2,051,000\n    Revs 31.4 mln vs 31.6 mln\n    NOTE: exlcudes 145,000 discontinued operations for 1986\noper net for six mths for sale of electronics division.\n    Oper shr for qtr and six mths 1986 adjusted for stock split\nand dividend distribution in November.\n Reuter\n&#3;',0
+'GENERAL REFRACTORIES &lt;GRX> TO SELL OPERATIONS General Refractories Co said it\nagreed to sell its European refractories and building products\noperations for about 62 mln dlrs to an Austrian investor group.\n    The European operations had sales of 186 mln dlrs in 1985,\nthe last year for which results have been released, the company\nsaid.\n    The sale, to a group headed by Girozentrale Bank of\nAustria, is subject to shareholder approval by April 24, 1987,\nit said. Its board has  [...]
+'BRAZIL HAS NO SET COFFEE EXPORT TARGETS - IBC Brazil has no set target for\nits coffee exports following this week\'s breakdown of\nInternational Coffee Organization talks on export quotas,\nPresident of the Brazilian Coffee Institute, IBC, Jorio Dauster\nsaid.\n    He told a press conference Brazil now had to reconsider its\nexport plans and that the 15.5 mln bag export figure which it\nhad proposed for itself earlier should no longer be taken as\nthe country\'s export target to ICO-me [...]
+'PEPSICO &lt;PEP> UPGRADED BY KIDDER PEABODY Kidder Peabody and Co analyst Roy Burry\nissued a strong buy recommendation on Pepsico Inc, citing an\nimproved profit outlook for both domestic soft drinks and\nFrito-Lay snack foods.\n    Pepsico climbed 7/8 to 34-3/4 on 615,000 shares by\nmidmorning.\n    Burry forecast earnings of 2.00 dlrs per share in 1987 and\n2.30 dlrs in 1988. In 1986 the company earned 1.75 dlrs per\nshare. Burry previously had a sell recommendation on Pepsico.\n\"We [...]
+'SHAD SEES PROGRESS ON INSIDER TRADING Securities and Exchange Commission\nchairman John Shad said progress was being made in stopping\ninsider trading, but the chairman of a House subcommittee with\njurisdiction over securities laws said he was concerned about\nconditions on Wall Street.\n    \"Greed has created a feeding frenzy on Wall Street and in\nthe process laws are broken and multi-billion dlr corporations\nhave become easy prey,\" Rep. Edward Markey, D-Mass, the\nchairman of the [...]
+'OPEC SAYS FEBRUARY OUTPUT UNDER CEILING OPEC output in February was \"well below\"\nthe 15.8 mln bpd ceiling it set in December and all countries\nare strictly adhering to their quotas, the OPEC news agency\nOpecna quoted an OPEC secretariat official as saying.\n    The official was quoted as saying that lower output was the\nresult \"of member countries\' firm determination to defend the\norganisation\'s official price of 18 dlrs per barrel, and to\nrefrain from selling any quantity be [...]
+'CANADIAN IMPERIAL BANK OF COMMERCE 1ST QTR SHARE BASIC 61 CTS VS 64 CTS\n ',0
+'PERKIN-ELMER &lt;PKN> ACQUIRES HIGH TECH FIRM Perkin-Elmer Corp said it\nacquired &lt;Atomika Technische Physik>, based in Munich, West\nGermany, a high technology concern specializing in surface\nscience instruments.\n    Terms of the acquisition were not disclosed.\n    It said Atomika will became a part of its Physical\nElectronics Division, based in Eden Prairie, Minn., The\ndivision is part of its Materials Surface Technology Group.\n Reuter\n&#3;',0
+'U.S. OKAYS USAIR &lt;U> PACIFIC SOUTHWEST PURCHASE The U.S. Department of Transportation\nsaid it gave final approval to USAir Group\'s proposed 400 mln\ndlr acquisition of Pacific Southwest Airlines.\n    The department said the acquisition is not likely to\nsubstantially lessen competition and would not harm the public\ninterest.\n    The department had given its tentative approval of the\nacquisition in January.\n    The department said it decided to make final its tentative\ndecisio [...]
+'MCI &lt;MCIC> PRESIDENT SEES PROFIT IMPROVEMENT MCI Communications Corp President\nBert Roberts said he expects MCI\'s financial performance to\nimprove in the current quarter compared to the previous\nquarter.\n    He said American Telephone and Telegraph Co long-distance\nrate cuts had cut into MCI\'s fourth quarter performance but\nadded: \"There\'s going to be a continuing impact (on profits) but\nwe expect this quarter to be better than the fourth quarter.\"\n    The current quarte [...]
+'NATIONAL GYPSUM CO 4TH QTR NET Net 5,521,000 vs NA\n    Revs 358.1 mln vs 359.0 mln\n    Year\n    Net 55.3 mln vs NA\n    Revs 1.43 billion vs 1.34 billion\n    NOTE: Current year includes earnings of 49.6 mln dlrs for\nthe four months ended April 30, 1986. Year-ago earnings not\ncomparable because of acquisition by Aancor Holdings Inc on\nApril 29, 1986.\n Reuter\n&#3;',0
+'ZAYRE CORP 4TH QTR SHR 73 CTS VS 60 CTS\n ',0
+'&lt;DET OESTASIATISKE KOMPAGNI A/S> (EAST ASIATIC CO) Results for year 1986 -\n    Group pre-tax profit 385 mln crowns vs 380 mln\n    Net turnover 14.17 billion crowns vs 16.69 billion\n    Dividend eight pct vs nil\n    Group profit after tax 16 mln crowns vs 244 mln\n Reuter\n&#3;',0
+'&lt;SIGNTECH INC> NINE MTHS JAN 31 NET Shr 55 cts vs 24 cts\n    Net 1.9 mln vs 800,000\n    Revs 17.6 mln vs 12.8 mln\n Reuter\n&#3;',0
+'&lt;CANADIAN IMPERIAL BANK OF COMMERCE> 1ST QTR Period ended January 31\n    Shr 61 cts vs 64 cts\n    Shr diluted 60 cts vs 60 cts\n    Net 96.5 mln vs 87.0 mln\n    Loans 44.87 billion vs 48.07 billion\n    Deposits 69.86 billion vs 68.45 billion\n    Assets 83.92 billion vs 78.93 billion\n    Note: shr after preferred dividends\n Reuter\n&#3;',0
+'&lt;TRIUMPH CAPITAL INC> TO MAKE ACQUISITION Triumph Capital Inc said it has signed a\nletter of intent to acquire First Securities Transfer Systems\nInc of Pompano Beach, Fla., for undisclosed terms.\n    The company said it is also entering the commercial finance\nbusiness through the formation of Triumph Financial corp.\n    It said the new wholly-owned unit has extended a 350,000\ndlr secured line of credit to Micro Designs Inc.\n Reuter\n&#3;',0
+'CONCHEMCO INC &lt;CKC> SETS QUARTERLY Qtly div 10 cts vs 10 cts prior\n    Pay April Six\n    Record March 16\n Reuter\n&#3;',0
+'DST SYSTEMS INC &lt;DSTS> REGULAR PAYOUT SET Qtly div five cts vs five cts prior\n    Pay April 17\n    Record March 16\n Reuter\n&#3;',0
+'FED NOT EXPECTED TO TAKE MONEY MARKET ACTION The Federal Reserve is not expected to\nintervene in the U.S. government securities market to add or\ndrain reserves, economists said.\n    Most economists said they did not expect the Fed to add\nreserves with Federal funds trading below six pct.\n    They said the funds rate\'s softer tone may indicate that\nthe need to add reserves in the current bank reserve\nmaintenance period is smaller than previously estimated.\n    Fed funds opened a [...]
+'BROWN GROUP INC 4TH QTR SHR 77 CTS VS 76 CTS\n ',0
+'REGAL INTERNATIONAL &lt;RGL> UPS BELL &lt;BPSIQ> BID Bell Petroleum Services Inc said\nRegal International Inc has doubled its offer for Bell stock to\none Regal share for each Bell share from half a share\npreviously.\n    The company said it is seriously considering the new offer\nbut has also received an expression of interest for a possible\nmerger into a Fortune 500 company it did not identify that will\nbe investigated at meetings to be held later this week.\n    It said it will e [...]
+'EQK GREEN ACRES LP &lt;EGA> RAISES QUARTERLY Qtly div 26-1/4 cts vs 25 cts prior\n    Pay Aug 14\n    Record June 30\n Reuter\n&#3;',0
+'MERCANTILE STORES CO INC 4TH QTR SHR 3.26 DLRS VS 3.17 DLRS\n ',0
+'WINLAND ELECTRONICS INC 4TH QTR LOSS Shr loss one ct vs profit 15 cts\n    Net loss 10,863 vs profit 176,344\n    Revs 672,073 vs 766,066\n    Year\n    Shr loss seven cts vs loss one ct\n    Net loss 77,804 vs loss 16,627\n    Revs 1,717,810 vs 1,317,402\n Reuter\n&#3;',0
+'ANTIBIOTICS IN FEED AID DEADLY BACTERIA: STUDY A study of salmonella poisoning has\nuncovered new evidence that the common practice of feeding\nantibiotics to cattle is helping to create deadly bacteria that\ncan infect humans and resist medicines.\n    Researchers at the federal Centers for Disease Control\ntracked the spread of an unusual strain of salmonella that is\nresistant to the drug chloramphenicol and were able to link the\nresulting food poisoning to farms that used the drug  [...]
+'EC REJECTS ALL FREE MARKET WHEAT EXPORT  OFFERS AT WEEKLY TENDER - TRADERS\n ',1
+'EC AWARDS 123,000 TONNES BARLEY EXPORT  LICENCES AT 138.75 ECUS PER TONNE - TRADERS\n ',1
+'FRENCH CEREAL EXPORTS THROUGH ROUEN FALL French cereal exports through the port of\nRouen fell 6.4 pct to 725,023 tonnes during the period February\n1 to 25, from 774,704 for the period February 1 to 26 last\nyear, trade sources said.\n    Main destinations were Saudi Arabia with 158,109 tonnes of\nbarley, the Soviet Union 147,214 of wheat, Italy 104,704 of\nwheat, Spain 91,381 of wheat and maize, China 52,500 of wheat\nand Algeria 41,000 of wheat.\n    Between February 26 and today, fi [...]
+'NATIONAL CONVENIENCE &lt;NCS> TO HAVE 3RD QTR LOSS National Convenience Stores Inc said it\nexpects to report a loss for the third quarter ending March 31\ndue to continued poor sales in Texas, especially in Houston.\n    In last year\'s third quarter, National Convenience earned\n1,788,000 dlrs or eight cts per share, including a gain of\n2,883,000 dlrs from the sale of 186 stores to another operator.\n It said the results also included earnings from gasoline\noperations of 2,500,000 d [...]
+'MARATHON RAISES CRUDE POSTED PRICES 50 CTS A BBL, EFFECTIVE TODAY, WTI AT 17 DLRS/BBL.\n ',0
+'REPORT DUE ON OIL IMPORTS AND NATIONAL SECURITY A presidential commission that has\nbeen studying oil imports, including their effect on national\nsecurity, is to to make its report soon, the White House said.\n    Spokesman Marlin Fitzwater said the panel, set up last\nOctober to examine U.S. oil import needs, would make its report\nsoon, probably within the next few weeks.\n    He said National Security Adviser Frank Carlucci \"will wait\nuntil that report is in and then see if there  [...]
+'CHRYSLER SETS THREE-FOR-TWO STOCK SPLIT, RAISES DIVIDEND\n ',0
+'U.S. COMMERCE DEPT\'S ORTNER SAYS YEN IS 10 OR 15 PCT UNDERVALUED\n ',0
+'U.S. COMMERCE DEPT\'S  ORTNER SAYS DOLLAR FAIRLY PRICED AGAINST EUROPEAN CURRENCIES\n ',0
+'BROWN GROUP INC &lt;BG> 4TH QTR JAN 31 NET Shr 77 cts vs 76 cts\n    Net 13,843,000 vs 14,478,000\n    Sales 374.6 mln vs 368.3 mln\n    Avg shrs 18,003,000 vs 19,025,000\n    Year\n    Shr 2.16 dlrs vs 2.65 dlrs\n    Net 39,503,000 vs 51,573,000\n    Revs 1.41 billion vs 1.41 billion\n    Avg shrs 18,269,000 vs 19,497,000\n    NOTE: 1986 period ended February One\n    Company changed fiscal yearend to January 31 from October\n31. 1986 results were restated to reflect the change.\n Reut [...]
+'EC AWARDS EXPORT LICENCES FOR 25,000  TONNES MAIZE - PARIS TRADE.\n ',1
+'ZAMBIAN LATE 1986 COPPER OUTPUT UP, SALES DOWN Zambian copper production rose 3.2 pct to\n113,275 tonnes in fourth quarter 1986 from 109,767 in the same\n1985 period but sales fell 18.7 pct to 119,967 tonnes from\n147,537, Zambia Consolidated Copper Mines, ZCCM, said.\n    A spokesman for the government-controlled mining company\nsaid the country\'s cobalt production fell 24 pct to 879 tonnes\nover the same period, while cobalt sales rose 92 pct to 1,734\ntonnes. He did not give figures [...]
+'BAD WEATHER CLOSES ALEXANDRIA PORT, OIL TERMINAL Strong winds and high seas\ntoday closed Alexandria, Egypt\'s biggest port, and an oil\npipeline terminal nearby, officials said.\n    Facilities of the Suez-Mediterranean Arab Petroleum\nPipelines Company at Sidi Kreir, 32 km southeast of Alexandria,\nwere closed this morning after one tanker loaded and sailed.\n    Officials said that five other tankers were waiting outside\nthe terminal for conditions to improve.\n Reuter\n&#3;',0
+'PEGASUS GOLD INC &lt;PGULF> 4TH QTR NET Shr profit 20 cts vs loss two cts\n    Net profit 2,665,000 vs loss 202,000\n    Revs 12.1 mln vs 5,993,000\n    Year\n    Shr profit 35 cts vs loss 11 cts\n    Net profit 4,653,000 vs loss 1,167,000\n    Revs 35.1 mln vs 18.0 mln\n    NOTE: Current qtr includes gain of 1.1 mln dlrs from tax\nbenefit.\n Reuter\n&#3;',0
+'U.S. COMMERCE\'S ORTNER SAYS YEN UNDERVALUED Commerce Dept. undersecretary of\neconomic affairs Robert Ortner said that he believed the dollar\nat  current levels was fairly priced against most European\ncurrencies.\n    In a wide ranging address sponsored by the Export-Import\nBank, Ortner, the bank\'s senior economist also said he believed\nthat the yen was undervalued and could go up by 10 or 15 pct.\n    \"I do not regard the dollar as undervalued at this point\nagainst the yen,\" h [...]
+'EC REJECTS WHEAT EXPORT BIDS, GRANTS BARLEY The European Community\'s cereal\nmanagement committee rejected all bids to export free market\nsoft wheat at today\'s weekly tender, traders said.\n    The committee awarded 123,000 tonnes of free market barley\nexport licences at a maximum export refund of 138.75 Ecus per\ntonne.\n&#3;',1
+'CORNING GLASS WORKS &lt;GLW> UNIT TRANSFERS STOCK Corning Glass Works\' subsidiary\nCorning International Corp said it agreed to transfer 55 pct of\nits capital stock of an Argentine glass manufacturer to a\nEuropean group.\n    It said it will transfer the capital stock of Rigolleau,\nS.A., to the group controlled by Camillo Gancia, an Argentine\nindustrialist.\n    The company said the transaction would reduce Corning\'s\nownership in Rigolleau to approximately 20 pct. The company\nsa [...]
+'ZAYRE CORP &lt;ZY> 4TH QTR JAN 31 NET Shr 73 cts vs 60 cts\n    Net 43,792,000 vs 36,480,000\n    Rev 1.78 billion vs 1.34 billion\n    Year\n    Shr 1.49 dlrs vs 1.61 dlrs\n    Net 88,974,000 vs 94,647,000\n    Rev 5.35 billion vs 4.04 billion\n    NOTE: 4th qtr net includes pre-tax gain of 9.7 mln dlrs\nfrom sale of real estate and real estate development company.\n    Fiscal 1986 net includes extraordinary charge of 3.5 mln\ndlrs, or six cts a share. All per share data reflects a\ntw [...]
+'FARMERS CONCERNED ABOUT BRITISH SUGAR OWNERSHIP The National Farmers Union, NFU, remains\nconcerned about the future ownership of British Sugar despite\nlast week\'s decision by the government to block bids from\nItaly\'s Gruppo Ferruzzi and Britain\'s Tate &amp; Lyle Plc.\n    The union\'s sugar beet committee met yesterday to consider\nthe implications of a government Monopolies and Merger\nCommission, MMC, report issued last week. \"We are still\nconcerned about S and W Berisford bei [...]
+'ZAYRE &lt;ZY> PLANS MORE STORE OPENINGS IN 1987 Zayre Corp said it plans to\nopen 25 additional Zayre Stores, 35 new T.J. Maxx stores and 50\nHit or Miss Shops in 1987.\n    In addition, Zayre said it plans to add six new BJ\'s\nWholesale Clubs and eight new HomeClubs to its warehouse group.\n    Earlier, the company reported 1986 earnings, ended January\n31, of 89.0 mln dlrs, or 1.49 dlrs per share, versus 94.6 mln\ndlrs, or 1.61 dlrs per share, in fiscal 1985. It also reported\nfourth [...]
+'DUTCH GROWTH LIKELY TO SLOW, JOBLESS RISE IN 1987 Leaks of a major Dutch official\neconomic forecast due to be published on Monday indicate\nreduced economic growth and a renewed rise in unemployment this\nyear, political and market sources say.\n    Concern over an anticipated fall in Dutch competitiveness\nthis year against a background of an average 2-1/2 pct wage\nincrease, zero inflation and a firm guilder has triggered some\ncalls for a change in monetary policy to help boost grow [...]
+'CHRYSLER &lt;C> SETS STOCK SPLIT, HIGHER DIVIDEND Chrysler Corp said its board declared a\nthree-for-two stock split in the form of a 50 pct stock\ndividend and raised the quarterly dividend by seven pct.\n    The company said the dividend was raised to 37.5 cts a\nshare from 35 cts on a pre-split basis, equal to a 25 ct\ndividend on a post-split basis.\n    Chrysler said the stock dividend is payable April 13 to\nholders of record March 23 while the cash dividend is payable\nApril 15 t [...]
+'BANCO SANTANDER TO BUY WEST GERMANY\'S CC-BANK &lt;Banco Santander> signed a letter of\nintent with Bank of America &lt;BAC> to purchase its West German\naffiliate &lt;Bankhaus Centrale Credit AG>, CC-Bank, the bank said\nin a statement amplifying an earlier report from Frankfurt.\n    \"The incorporation of CC-Bank in our group will provide a\nmajor boost...For chanelling investment between Spain and the\nEuropean Community,\" the statement said.\n    \"This operation enables us to tak [...]
+'CANADIAN IMPERIAL SEES LOWER LOAN LOSSES &lt;Canadian Imperial Bank of Commerce>,\nearlier reporting higher net income for the first quarter ended\nJanuary 31, said it expects loan losses to be lower than last\nyear\'s 697.0 mln dlrs.\n    However, the bank said it will maintain the high level of\nprovisioning for loan losses established last year because of\nmany market uncertainties. Commerce bank set loan loss\nprovisions of 636.0 mln dlrs in fiscal 1986, ended October 31.\n    The b [...]
+'MERCANTILE STORES CO INC &lt;MST> 4TH QTR NET Qtr ends Jan 31\n    Shr 3.26 dlrs vs 3.17 dlrs\n    Net 47.9 mln vs 46.7 mln\n    Revs 673.1 mln vs 630.2 mln\n    12 mths\n    Shr 7.54 dlrs vs 6.95 dlrs\n    Net 111.1 mln vs 102.4 mln\n    Revs 2.03 billion vs 1.88 billion\n.\n&#3;',0
+'INDIA BOUGHT AT LEAST EIGHT CARGOES SUGAR--TRADE India bought eight cargoes of white\nsugar at a buying tender this week but also gave sellers\noptions to sell an extra eight cargoes at the same prices,\ntraders said.\n    Four international firms shared the business which gave\neach of them sales of two cargoes of Mar/Apr shipment sugar at\n233 dlrs CIF and options on two cargoes of Apr/May.\n    This brings recent options India has given traders to some\n200,000 tonnes at fixed prices [...]
+'UNITEL VIDEO SHAREHOLDER PROPOSES POSSIBLE SALE OR LIQUIDATION OF COMPANY\n ',0
+'ALLEGHENY POWER SYSTEM INC &lt;AYP> SETS PAYOUT Qtly div 73 cts vs 73 cts prior\n    Pay March 31\n    Record March 16\n Reuter\n&#3;',0
+'&lt;SELKIRK COMMUNICATIONS LTD> 4TH QTR NET Oper shr 57 cts vs 73 cts\n    Oper net 6,051,000 vs 7,818,000\n    Revs 50.0 mln vs 56.0 mln\n    Year\n    Oper shr 1.06 dlrs vs 1.24 dlrs\n    Oper net 11,301,000 vs 13,203,000\n    Revs 171.9 mln vs 207.4 mln\n    NOTE: Current oper net excludes extraordinary income of\n180,000 dlrs in qtr and 1,119,000 dlrs in year vs previous\nlosses of 2,345,000 dlrs and 515,000 dlrs, respectively.\n                        \n Reuter\n&#3;',0
+'HOUSTON OIL ROYALTY TRUST &lt;RTH> PAYOUT LOWER Mthly div 2.108 cts vs 2.158 cts prior\n    Pay March 26\n    Record March 16\n Reuter\n&#3;',0
+'ENGELHARD CORP SETS THREE FOR TWO STOCK SPLIT AND RAISES QUARTERLY\n ',0
+'PARIS TRADE DETAILS EC GRAIN TENDER RESULT The EC Commission rejected all bids for\nfree market bread-making and feed wheat and all bids for the\nspecial West German tender at today\'s weekly EC cereals tender,\ntrade sources said here.\n    It granted export licences for 123,000 tonnes of free\nmarket barley at a maximum rebate of 138.75 Ecus per tonne and\n25,000 tonnes of maize at a maximum rebate of 133.75 Ecus, they\nsaid.\n    Licences for 100,000 tonnes of the barley were awarded [...]
+'HOLDER PROPOSES UNITEL &lt;UNV> SALE OR LIQUIDATION Michael Landes, a major stockholder\nin Unitel Video Inc, said he has asked the company to consider\nliquidating, or selling some or all of its assets.\n    \"Mr. Landes has requested the company to implement a\nprogram to maximize shareholder values, which might include a\nsale of all or part of the company or a liquidation,\" he said\nin a filing with the Securities and Exchange Commission.\n    Landes and another Unitel Video invest [...]
+'HUGES TOOL COMPANY SAYS BAKER INTERNATIONAL MERGER PLAN NOT TERMINATED\n ',0
+'ROYAL DUTCH/SHELL GROUP OF COS 4TH QTR NET Shr Royal Dutch Petroleum Co &lt;RD> 2.30 dlrs vs 2.90 dlrs\n    Final Royal Dutch dividend of 8.30 guilders for total 12.80\nguilders vs 12.80 guilders for 1985\n    Shr Shell Transport and Trading Co PLC &lt;SC> 1.38 dlrs vs\n1.65 dlrs\n    Final Shell Transport dividend 118.0 pence for total of\n172.0 pence vs 140.0 pence for 1985\n    Group Net 1.07 billion vs 1.24 billion\n    Group Sales 20.42 billion vs 25.84 billion\n    Year\n    Shr R [...]
+'WORLD GRAIN TRADE RECOVERY MAY BE UNDERWAY World grain trade could be turning\nthe corner and heading toward recovery in the 1986-87 season, a\nCargill, Inc. analyst said.\n    Writing in the March issue of the Cargill Bulletin, David\nRogers of Cargill\'s Commodity Marketing Division cited a\ngradual rise in world wheat trade in recent months, with a slow\nrise in wheat prices after recent historic lows.\n    He said the wheat trade, because wheat can be produced in\nmany nations, is a [...]
+'INVESTMENT FIRM BOOSTS PUROLATOR &lt;PCC> STAKE Halcyon Investments, a New York\ninvestment partnership that deals mainly in risk arbitrage and\nstock trading, said it raised its Purolator Courier Corp stake\nto 726,700 shares, or 9.5 pct, from 474,900, or 6.2 pct.\n    In a filing with the Securities and Exchange Commission,\nHalcyon, whose managing partner is Alan B. Slifka and Co, said\nit bought 201,800 Purolator common shares between Feb 3 and\nMarch 2 at prices ranging from 28.689 [...]
+'AETNA &lt;AET> TO SELL CANADIAN OPERATIONS Aetna Life and Casualty Co said\nits Aetna Life and Casualty of Canada Ltd subsidiary has agreed\nin prnciple to sell its casualty-property subsidiary, Aetna\nCasualty Co of Canada to &lt;Laurentian Group> of Montreal for\nundisclosed terms.\n    The company said the agreement is subject to Canadian\ngovernment approval.\n Reuter\n&#3;',0
+'NPPC DELEGATES APPROVE DISEASE AND DRUG PROGRAMS Delegates from the National Pork\nProducers Council, NPPC, yesterday approved programs for\ncontrol and eradication of pseudorabies and establishment of a\nnational safe drug use program.\n    The delegate body, attending the American Pork Congress in\nIndianapolis, approved a pseudorabies control and eradication\nprogram at the state level after a recommendation from NPPC\'s\nPRV (pseudorabies virus) oversight committee.\n    The PRV com [...]
+'SOUTHERN MINERAL CORP &lt;SMIN> 4TH QTR LOSS Shr loss two cts vs profit three cts\n    Net loss 77,400 vs profit 134,000\n    Revs 418,500 vs 435,900\n    Year\n    Shr profit eight cts vs profit 27 cts\n    Net profit 315,100 vs profit 1,082,700\n    Revs 1,761,900 vs 2,511,200\n    NOTE: Per-share figures adjusted for four-for-three stock\ndistribution effective Dec 14, 1984\n    1985 results include an extraordinary tax benefit of 55,000\ndlrs, or one ct a share in each period\n Reut [...]
+'BANK OF ENGLAND RESISTS PRESSURE FOR RATE CUT The Bank of England again fought against\nmoney and bond market pressure for a pre-Budget interest rate\ncut, leaving the pound to take the strain with a further rise\nin its trade-weighted index to a six-month high.\n    It closed at its best level since September 12, at 71.4 pct\nof its 1975 value on the index, as foreign investors continued\nto buy into a currency which offers high relative returns and\nthe possibility of short-term capit [...]
+'ENGELHARD CORP &lt;EC> SETS STOCK SPLIT Engelhard Corp said its board\ndeclared a three-for-two stock split and raised the quarterly\ndividend to 19-1/2 cts per share presplit from 19 cts, both\npayable March 31 to holders of record March 17.\n Reuter\n&#3;',0
+'EGYPTIAN 1986 CRUDE OIL OUTPUT DOWN ON 1985 Non-Opec Egypt produced 40.3 mln tonnes\n(about 295 mln barrels) of crude in 1986 against 44.3 mln\ntonnes (about 323 mln barrels) in 1985, according to official\nfigures released today by the Egyptian General Petroleum Corp.\n(EGPC).\n    Officials say Egypt can produce up to one mln bpd per day,\nbut production was cut when world prices plunged last year.\n    In an attempt to help OPEC stabilize the world market,\nEgypt cut its 1987 product [...]
+'TRADERS DETAIL IRISH INTERVENTION BARLEY TENDER The European Commission authorised the\nexport of 33,500 tonnes of Irish intervention barley at today\'s\ntender for non-European Community destinations at 53.10 Ecus\nper tonne, grain traders said.\n Reuter\n&#3;',1
+'H AND H OIL TOOL CO &lt;HHOT> 4TH QTR LOSS Shr loss six cts vs profit two cts\n    Net loss 196,000 vs profit 71,000\n    Revs 2,512,000 vs 5,776,000\n    Year\n    Shr loss 1.09 dlrs vs loss 18 cts\n    Net loss 3,509,000 vs loss 587,000\n    Revs 12.0 mln vs 21.0 mln\n    Note: 1986 year includes special charge of 1,600,000 dlrs,\nor 50 cts per shr on write-down of rental equipment.\n Reuter\n&#3;',0
+'CB AND T FINANCIAL CORP &lt;CBTF> YEAR NET Shr 2.10 dlrs vs 1.72 dlrs\n    Shr diluted 1.98 dlrs vs 1.72 dlrs\n    Net 2,228,000 vs 1,730,000\n Reuter\n&#3;',0
+'AMOSKEAG BANK &lt;AMKG> TO ACQUIRE ENTREPO Amoskeag Bank said it signed an\nagreement to acquire &lt;Entrepo Financial Resources Inc>, a\nPhiladelphia-based company which leases and remarkets high\ntechnology equipment.\n    Terms of the acquisition were not disclosed.\n    It said Entrepo has assets of 20 mln dlrs.\n Reuter\n&#3;',0
+'WASHINGTON NATIONAL CORP &lt;WNT> VOTES DIVIDEND Qtly div 27 cts vs 27 cts prior qtr\n    Pay 1 April\n    Record 16 March\n Reuter\n&#3;',0
+'KAINES SELLS JORDAN TWO CARGOES OF WHITE SUGAR Trade house Kaines said it sold Jordan\ntwo cargoes of white sugar at its buying tender today.\n    The sale comprised two 12,000 to 14,000 tonne cargoes (plus\nor minus 10 pct) for Mar/Apr shipment, a Kaines trader said.\n    Traders said the business was done at 235.5 dlrs a tonne\ncost and freight.\n Reuter\n&#3;',0
+'COMMUNITY BANK SYSTEM &lt;CBSI> BUYS NICHOLS BANK Community Bank Systems Inc and\nthe &lt;Nichols National Bank> said they have signed a definitive\nagreement for Nichols to become a member of the CBSI Group of\nbanks for an exchange of stock worth 2.8 mln dlrs.\n    CBSI said it expects to complete the deal, pending Nichols\'\nshareholder and regulatory approval, later this year.\n Reuter\n&#3;',0
+'EASTMAN KODAK ACQUIRES 18.7 PCT INTEREST IN ENZON INC\n ',0
+'TURKEY SEEKING 100,000 TONNES SUGAR - TRADE Turkey is holding a buying tender for\n100,000 tonnes of white sugar on March 24, traders here said.\n    The sugar is being sought for early arrival and will\nprobably be met with April/May shipment sugar, they added.\n    Earlier today newspapers in Turkey carried an advertisement\nfrom Turkish Sugar Factories inviting offers of 100,000 tonnes\nof crystal sugar with a 50 pct option to increase or decrease\nthe amount.\n    Over the 1983/85 p [...]
+'SHAD FAVORS SHORTENING DISCLOSURE PERIOD Securities and Exchange Commission\nChairman John Shad said the SEC favors shortening the current\n10-day period for disclosing takeover attempts but opposes\nputting restrictions on the use of so-called junk bonds.\n    \"We favor shortening the disclosure period to two days,\"\nShad told members of the House Telecommunications and Finance\nsubcommittee when asked for his recommendation.\n    He said the SEC\'s responsibility was to provide full [...]
+'CORRECTED - PEGASUS GOLD INC&lt;PGULF> 4TH QTR NET Shr profit 20 cts vs loss two cts\n    Net profit 2,665,000 vs loss 202,000\n    Revs 12,141,000 vs 5,993,000\n    Year\n    Shr profit 35 cts vs loss 11 cts\n    Net profit 4,653,000 vs loss 1,167,000\n    Revs 35.1 mln vs 18.0 mln\n    NOTE: company corrects reporting period to 4th qtr and year\nfrom 3rd qtr and nine mths\n Reuter\n&#3;',0
+'HUGHES TOOL &lt;HT> SAYS BAKER &lt;BKO> MERGER ALIVE Hughes Tool Co Chairman W.A. Kistler\nsaid its counter proposal to merge with Baker International\nCorp was still under consideration and that a merger was in the\nbest interests of both companies.\n    \"Our hope is that we can come to a mutual agreement that is\ngood for both companies,\" Kistler said of the proposed merger\nthat would result in a 1.2 billion dlr oil field service\ncompany. \"We\'re working very hard on this merger. [...]
+'AEQUITRON MEDICAL INC &lt;AQTN> 3RD QTR LOSS Period ended January 31\n    Shr loss five cts vs profit eight cts\n    Net loss 247,100 vs profit 345,300\n    Sales 4,529,300 vs 3,482,800\n    Nine mths\n    Shr profit six cts vs profit 18 cts\n    Net profit 261,300 vs profit 793,700\n    Sales 12.3 mln vs 9,957,200\n Reuter\n&#3;',0
+'LOWE\'S COS INC &lt;LOW> 4TH QTR JAN 31 NET Shr 18 cts vs 31 cts\n    Net 7,168,000 vs 11.3 mln\n    Sales 497.4 mln vs 475.6 mln\n    Avg shrs 39.6 mln vs 37.1 mln\n    Year\n    Shr 1.34 dlrs vs 1.64 dlrs\n    Net 52.2 mln vs 59.7 mln\n    Sales 2.28 billion vs 2.07 billion\n    Avg shrs 39.0 mln vs 36.5 mln\n    NOTE: Current year net both periods includes charge\n2,885,000 dlrs or seven cts shr from early note retirement and\ncharge seven cts shr from reversal of tax credits.\n    C [...]
+'FRANCE TO SELL STAKE IN SOCIETE GENERALE UNIT The French government is to\nsell to the public its 47.42 pct direct holding in Societe\nGenerale &lt;STGN.PA>\'s regional bank subsidiary &lt;Societe Generale\nAlsacienne de Banque>, SOGENAL, from next Monday, SOGENAL\nofficials said.\n    SOGENAL, founded in 1881 and nationalised in 1982, is the\nleading French regional bank and has branches in Austria,\nBelgium, Luxembourg, East and West Germany and Switzerland.\n    Chairman Rene Geronim [...]
+'MIDLAND &lt;MLA> SETS STOCK SPLIT Midland Co said its board declared a\ntwo-for-one stock split, subject to approval of a doubling of\nauthorized common shares at the annual meeting on April 9, and\nan increase in the quarterly dividend to 12 cts pre-split from\n10 cts.\n    The dividend is payable April 8, record March 17, and the\nsplit would be payable May 7, record April 23.\n Reuter\n&#3;',0
+'PRUDENTIAL INSURANCE YEAR EARNINGS The Prudential Insurance Company of\nAmerica, a privately held company, said today that net income\nin 1986 rose to 2.8 billion dlrs from the 2.3 billion dlrs\nreported the year earlier.\n    Assets under management rose to 177.5 billion dlrs in 1986\nfrom 150.1 billion dlrs in 1985, while consolidated assets\njumped to 134.5 billion dlrs from 115.7 billion dlrs.\n    Discussing its major subsidiaries, the company said that\nPrudential Capital and Inve [...]
+'EC OPENS SPECIAL REBATE FOR MAIZE - PARIS TRADE The EC Commission decided to open a\nspecial daily export rebate today for maize exports to Morocco,\nIsrael, Canary Islands and zone 5c (Sub-Saharan Africa), trade\nsources said here.\n    The rebate was set at 153 European currency units per tonne\nfor March and 133 for April through July.\n Reuter\n&#3;',1
+'AEQUITRON &lt;AQTN> SEES 4TH QTR CHARGE Aequitron Medical Inc said costs\nrelated to its previously announced plan to consolidate Life\nProducts operations in Boulder, Colo, are expected to total\n720,000 dlrs, or eight cts a share for the fourth quarter\nending April 30.\n    It said the costs including moving expenses, severance pay\nand future lease payments.\n    The company said it will consolidate Life Products into the\ncompany\'s headquarters and manufacturing operations in\nMin [...]
+'BIG B INC &lt;BIGB> 4TH QTR JAN 31 NET Shr 23 cts vs 17 cts\n    Net 1,742,000 vs 1,1512,000\n    Sales 62.6 mln vs 53.6 mln\n    Avg shrs 7,854,000 vs 6,617,000\n    Year\n    Shr 61 cts vs 61 cts\n    Net 4,469,000 vs 4,039,000\n    Sales 209.8 mln vs 175.4 mln\n    Avg shrs 78,369,000 vs 6,610,000\n Reuter\n&#3;',0
+'WILSHIRE &lt;WOC> CHIEF NAMED TO JACOBS &lt;JEC> BOARD Wilshire Oil Co of Texas, which has a\n9.8 pct stake in Jacobs Engineering Group Inc, said its\nchairman, Siggi Wilzig, was appointed to the Jabobs board.\n    In a filing with the Securities and Exchange Commission,\nWilshire, which holds 417,100 Jacobs common shares, said Wilzig\nwas appointed to the Jacobs board of directors on March 3 after\nthe company\'s annual shareholder meeting.\n    Wilshire also said that Jacobs Chairman  [...]
+'FEBRUARY U.S. RETAIL SALES NOT SIGN OF UPTURN U.S. retailers posted stronger than\nexpected sales in February, but not enough to prompt analysts\nto change their expectations of sluggish sales growth for the\nfirst half of 1987.\n     \"My feeling is that it (February) borrowed some of the\nbusiness we normally see later in the quarter and the real\nstrength of general merchandise sales will be in the second\nhalf of 1987,\" said Bear Stearns and Co analyst Monroe\nGreenstein.\n    \"I  [...]
+'QUARTZ ENGINEERING AND MATERIALS &lt;QRTZ> 1ST QTR Qtr ended Dec 31\n    Shr nil vs nil\n    Net loss 59,922 vs loss 357,203\n    Revs 714,263 vs 926,964\n Reuter\n&#3;',0
+'KODAK &lt;EK> BUYS STAKE IN ENZON &lt;ENZN> Eastman Kodak Co said it has\nacquired an 18.7 pct equity interest in Enzon Inc, a\npharmaceutical company specializing in protein therapy.\n    Kodak said it secured worldwide marketing rights for three\nof Enzon\'s PEG enzymes used in the treatment of oxygen toxicity\ndisorders, hyperuricemia and gout.\n    The company said it acquired two mln Enzon shares for 15\nmln dlrs, with loans to Enzon of two mln dlrs and interest of\n30,000 dlrs cre [...]
+'GEMCRAFT INC &lt;GEMH> YEAR NET Shr 42 cts vs 1.21 dlrs\n    Net 2,317,000 vs 5,847,000\n    Sales 360.0 mln vs 282.4 mln\n    Avg shrs 5,463,000 vs 4,829,000\n    NOTE: 1986 net includes 4,700,000 dlr pretax charge from\nwritedown of land and abandonment of land and pretax charges of\n5,800,00 dlrs from pending rescission offer, settlements with\nU.S. agencies, adjustment of the prior booking of residuals\narising from collateralized mortgage obligation bond issues,\nwritedowns of land [...]
+'APPLIED SOLAR ENERGY CORP &lt;SOLR> 1ST QTR NET Qtr ended Jan 31\n    Shr profit nine cts vs loss 30 cts\n    Net profit 317,000 vs loss 997,000\n    Sales 6,338,000 vs 3,119,000\n    Note: 1986 net includes extraordinary gain of 90,000 dlrs,\nor two cts per shr.\n Reuter\n&#3;',0
+'PACIFIC NUCLEAR SYSTEMS IN &lt;PACN> 4TH QTR LOSS Shr loss 19 cts vs profit seven cts\n    Net loss 851,000 vs profit 227,000\n    Revs 2,600,000 vs 4,800,000\n    Year\n    Shr loss 46 cts vs profit 19 cts\n    Net loss 2,100,000 vs profit 600,000\n    Revs 9,900,000 vs 15.9 mln\n Reuter\n&#3;',0
+'FED\'S JOHNSON STRESSES PRICE STABILITY Federal Reserve Board Vice Chairman\nManuel Johnson said that maintaining price stability was\ncritical to achieving non-inflationary economic growth in the\nworld and said that progress was being made.\n    \"It is worth reiterating that the Federal Reserve\'s\npromotion of price stability is critical to the successful\nimplementation of virtually all of the important ingredients\nfor growth,\" he told the Eastern Economic Association.\n    Johns [...]
+'ANGLO AMERICAN GOLD INVESTMENT CO LTD &lt;AAGIY> Year to Feb 28\n    Shr 1,700.3 cts vs 1,533.0\n    Pre-tax 373.3 mln rand vs 341.0 mln\n    Net 373.3 mln vs 336.5 mln\n    Tax nil vs 4.5 mln\n    Final div 900 cts making 1,600 cts vs 1,450\n    Div payable April 24, register March 20\n Reuter\n&#3;',0
+'HARRIS CUTS TRIAD SYSTEMS &lt;TRSC> STAKE TO 18 PCT Harris Associates L.P., a Chicago\ninvestment advisory partnership, said it lowered its stake in\nTriad Systems Corp to 1,355,296 shares, or 17.9 pct of the\ntotal outstanding, from 1,463,962 shares, or 19.3 pct.\n    In a filing with the Securities and Exchange Commission,\nHarris said it sold a net 108,666 Triad common shares between\nDec 16 and Feb 23 at prices ranging from 10.00 to 14.25 dlrs a\nshare.\n    It said its dealings in  [...]
+'U.S. TREASURY SAYS NO COMMENT ON YEN VALUE A Treasury Department spokesman\nrefused comment on statements by Robert Ortner, undersecretary\nof economic affairs for the Commerce Department, that the\nJapanese yen was undervalued.\n    Ortner, senior economist at the Commerce Department, told\nan Export-Import Bank conference \"the yen is still a little bit\nundervalued,\" and \"could go up another 10 or 15 pct.\"\n    Asked for reaction, a Treasury spokesman said officials\nwere aware of [...]
+' &#2;\nLIBRA BANK EXPECTS BRAZIL TO REACH DEBT ACCORD LONDON, March 5\n- London-based &lt;Libra Bank Plc> said when announcing its 1986\nannual results that it expected Brazil to reach agreement with\nits creditors over debt repayments.\n    \"In recent years Brazil has demonstrated its ability to\ngenerate surpluses sufficient to service its debt, and I have\nno doubt that, in due course, it will reach an agreement with\nthe banks and its other creditors,\" Libra managing director\nPet [...]
+'IDEA INC &lt;IDEA> TO BUY PRIVATE FIRM IDEA Inc said it signed a\nletter of intent to buy privately-held Structural\nInstrumentation Inc.\n    The purchase, for an undisclosed sum, will be made mostly\nwith IDEA common stock, the company said.\n    IDEA said the purchase will add about 32 cts per share to\nits fiscal 1988 earnings.\n    IDEA reported earnings of four cts per share for the\nquarter ended October 31, 1986.\n Reuter\n&#3;',0
+'DUCOMMUN INC &lt;DCO> SELLS DIVISION Ducommun Inc said it sold its\nAirdrome Parts Co division to a group of investors headed by\nAirdrome\'s management for a cash price of 12 mln dlrs.\n    Ducommun said the sale, coupled with its sale last month of\nMetermaster, were steps taken to improve the company\'s balance\nsheet and that no further sales are being contemplated.\n Reuter\n&#3;',0
+'HOOPER HOLMES SHERLOCK INC &lt;HOOP> 4TH QTR NET Shr 22 cts vs 25 cts\n    Net 472,000 vs 454,000\n    Revs 16.2 mln vs 15.2 mln\n    Avg shrs 2,135,315 vs 1,835,325\n    12 mths\n    Shr 71 cts vs 70 cts\n    Net 1,393,000 vs 1,285,000\n    Rwevs 61,805,000 vs 55,367,000\n    Avg shares 1,960,319 vs 1,835,325\n Reuter\n&#3;',0
+'TEXON ENERGY &lt;TXON> IN TALKS ON ACQUISITION Texon Energy Corp said it has entered\ninto a preliminary agreement to purchase an 80 pct interest in\na privately-held specialty plastics manufacturing company it\ndid not name.\n    Texon said completion of the acquisition is subject to the\nconsent of banks and third parties and the acquisition would be\nmade for promissory notes and common stock.\n Reuter\n&#3;',0
+'ALLIED &lt;ALD> AFFILIATE RESTATES LOSS LARGER Allied-Signal Inc\'s 49.7 pct owned\n&lt;Union Texas Petroleum Co> affiliate said it has restated its\nfourth quarter and full-year losses and revenues to increase\nthe provision for the proposed settlement of a price dispute\ninvolving Indonesian liquefied natural gas.\n    It said the restated increases the provision against 1986\nfourth quarter earnings to 23.5 mln dlrs from 15.5 mln dlrs\nestimated earlier.\n    Union Texas said its fou [...]
+'AMREP CORP &lt;AXR> 3RD QTR JAN 31 NET Shr 12 cts vs 34 cts\n    Net 787,000 vs 2,250,000\n    Revs 23.6 mln vs 23.6 mln\n    Nine mths\n    Shr 70 cts vs 1.06 dlrs\n    Net 4,598,000 vs 6,974,000\n    Revs 73.1 mln vs 73.6 mln\n    NOTE: Share adjusted for three-for-two stock split in\nDecember 1986.\n Reuter\n&#3;',0
+'ICI &lt;ICI> SEES GROWTH IN PHARMACEUTICALS Imperial Chemical Industries PLC\nexpects earnings from its pharmaceuticals operations to grow  \nto about 35 pct of world profits within the next five years\ncompared with a current 30 pct, chairman elect Denys Henderson\ntold financial analysts.\n    \"Over the next five years we expect to launch one major new\nproduct each year,\" Henderson said.\n    He also said research and development spending in this\nbusiness segment will be increased [...]
+'SAFECARD SERVICES &lt;SFCD> SETS SPLIT, UPS PAYOUT SafeCard Services Inc said\nits board declared a three-for-two stock split and is\nmaintaining the quarterly dividend on post-split shares at the\nsame six cts it now pays for an effective 50 pct increase.\n    Both the split and the dividend are payable April 30 to\nholders of record March 31.\n Reuter\n&#3;',0
+'WILTON ENTERPRISES INC &lt;WLTN> 2ND QTR JAN 31 NET Oper shr profit two cts vs loss 31 cts\n    Oper net 72,000 vs loss 1,130,000\n    Sales 7,896,000 vs 9,333,000\n    1st half\n    Oper shr profit 32 cts vs profit eight cts\n    Oper net profit 1,187,000 vs profit 299,000\n    Sales 21.3 mln vs 26.0 mln\n    NOTE: Current year net excludes tax credits of 54,000 dlrs\nin quarter and 945,000 dlrs in year.\n Reuter\n&#3;',0
+'ROTTERDAM PORT SUBSIDY TO END JULY 1 - MINISTER Dutch Social Affairs Minister Louw de\nGraaf announced he is withdrawing the annual 10 mln guilder\nlabour subsidy for Rotterdam\'s strike-hit general cargo sector\nas from July 1.\n    Late last month de Graaf said that if the dispute was not\nsettled by Monday this week he would withdraw the subsidy.\n    The chairman of the port employers\' organization, SVZ,\nJacques Schoufour, said he was unhappy with the decision and\nadded there was [...]
+'S.A.Y.&lt;SAYI> TO TAKE 3RD QTR LOSS FROM SALE S.A.Y. Industries Inc said it\nexpects a loss of about two mln dlrs in its third quarter ended\nFebruary 28 from the proposed sale of its Omnilab Inc health\ncare unit.\n    S.A.Y said its board of directors approved the unit\'s sale\nbecause Omnilab was losing about 140,000 dlrs a quarter.\n    \"We no longer see a near-term prospect for a reasonable\nreturn on our investment,\" Romilly Humphries, S.A.Y. president\nand chief executive offi [...]
+'SONESTA INTERNATIONAL HOTELS CORP &lt;SNST> 4TH QTR Shr profit 26 cts vs loss 86 cts\n    Oper net profit 780,000 vs loss 2,609,000\n    Revs 12.2 mln vs 17.1 mln\n    Year\n    Oper shr profit 5.28 dlrs vs loss 1.11 dlrs\n    Oper net profit 16.1 mln vs loss 3,311,000\n    Revs 64.9 mln vs 69.8 mln\n    NOTE: 1986 year net excludes 598,000 dlr tax credit.\n    1986 net includes pretax gains on sale of property of\n2,330,000 dlrs in quarter and 24.5 mln dlrs in year.\n Reuter\n&#3;',0
+'&lt;DOMCO INDUSTRIES LTD> 1ST QTR JAN 31 NET Shr four cts vs 12 cts\n    Net 248,000 vs 647,000\n    Revs 23.7 mln vs 21.9 mln\n Reuter\n&#3;',0
+'UNICORP AMERICAN &lt;UAC> ACQUISITION ADVANCES Unicorp American Corp said it has\nsigned a definitive agreement for the previously-announced\nacquisition of Lincoln Savings Bank.\n    The company said the transaction is still subject to\nregulatory approvals.\n Reuter\n&#3;',0
+'FIRST EASTERN CORP &lt;FEBC> COMPLETES ACQUISITION First Eastern Corp said it has\ncompleted the acquisition of Peoples Bank of Nanticoke, Pa., in\nan exchange of 11 First Eastern shares for each Peoples share.\n    Peoples has assets of about 24 mln dlrs.\n Reuter\n&#3;',0
+'BISHOP GRAPHICS &lt;BGPH> COMPLETES STORE SALE Bishop Graphics Inc\nsaid it completed the sale of its Newport Beach Art Supply\nCenter to Standard Brands Paint Co\'s &lt;SBP> Art Store unit.\n    Terms were not disclosed.\n    Bishop also said it has opened a new sales and service\noffice in Irvine, Calif.\n   \n Reuter\n&#3;',0
+'STRIKING BRAZILIAN SEAMEN HOLD PAY TALKS Striking Brazilian seamen, who say\nthey have made idle 158 ships and halted Brazilian exports,\ntoday held pay talks in Rio de Janeiro with Labour Minister\nAlmir Pazzianotto, union officials said.\n    Jorge Luis Leao Franco, a senior official of the National\nMerchant Marine Union, told Reuters he was optimistic the talks\nwould lead to an end of the stoppage, which began last Friday.\n    Brazil\'s 40,000 seamen are seeking a pay rise of 275  [...]
+'FED\'S JOHNSON SAYS DOLLAR IS VERY CLOSE TO APPROPRIATE EXCHANGE RATE LEVEL \n ',0
+'BROWN GROUP INC &lt;BG> VOTES REGULAR DIVIDEND Qtly div 37-1/2 cts vs 37-1/2 cts prior qtr\n    Pay 1 April\n    Record 16 March\n Reuter\n&#3;',0
+'BLOCKER ENERGY CORP &lt;BLK> YEAR NET Oper shr profit 11 cts vs loss 2.45 dlrs\n    Oper net profit 3,594,000 vs loss 81.9 mln\n    Revs 38.5 mln vs 48.2 mln\n    NOTE: 1986 net excludes 68.5 mln dlr gain from debt\nextinguishment.\n    1985 net includes 72.0 mln dlr writedown of drilling rigs.\n Reuter\n&#3;',0
+'LTX CORP &lt;LTXX> 2ND QTR JAN 31 LOSS Shr loss 28 cts vs loss 32 cts\n    Net loss 2,585,000 vs loss 2,885,000\n    Sales 27.6 mln vs 23.5 mln\n    Avg shrs 9,352,000 vs 9,049,000\n    1st half\n    Shr loss 63 cts vs loss 94 cts\n    Net loss 5,867,000 vs loss 8,405,000\n    Sales 51.9 mln vs 43.7 mln\n    Avg shrs 9,349,000 vs 8,966,000\n    NOTE: Prior year net includes tax credits of 1,827,000 dlrs\nin quarter and 5,347,000 dlrs in half.\n Reuter\n&#3;',0
+'YEUTTER SAYS U.S. BUDGET DEFICIT REDUCTION KEY TO TRADE DEFICIT SOLUTION\n ',0
+'CALPROP CORP &lt;CPP> 4TH QTR NET Shr 40 cts vs 25 cts\n    Net 1,369,602 vs 628,193\n    Revs 12.5 mln vs 4,909,369\n    Avg shrs 3,460,217 vs 2,610,913\n    Year\n    Shr 97 cts vs 54 cts\n    Net 2,952,830 vs 1,414,369\n    Revs 37.0 mln vs 13.5 mln\n    Avg shr 3,031,494 vs 2,609,313\n    Note: Prior qtr and year per share figures restated for 10\npct stock dividend of December 1986.\n Reuter\n&#3;',0
+'SIS CORP &lt;SISB> YEAR NET Shr one ct vs nil\n    Net 9,949,000 vs 3,799,000\n    Revs 15.5 mln vs 13.5 mln\n Reuter\n&#3;',0
+'AMOSKEAG CO &lt;AMOS> SETS QUARTERLY Qtly div 30 cts vs 30 cts prior\n    Pay March 31\n    Record March Five\n Reuter\n&#3;',0
+'MEDTRONIC INC &lt;MDT> SETS QUARTERLY Qtly div 22 cts vs 22 cts prior\n    Pay April 30\n    Record April 10 \n Reuter\n&#3;',0
+'SCITEX CORP &lt;SCIXF> 4TH QTR LOSS Shr loss 46 cts vs loss 1.17 dlrs\n    Net loss 4,990,000 vs loss 12.8 mln\n    Revs 47.0 mln vs 42.3 mln\n    Year\n    Shr loss 3.08 dlrs vs loss 1.28 dlrs\n    Net loss 33.7 mln vs loss 13.3 mln\n    Revs 132.8 mln vs 132.5 mln\n    Avg shrs 10.9 mln vs 10.4 mln\n    NOTE: Includes losses of 501,000 vs 83,000 in qtr and 2.2\nmln vs 83,000 in year from equity of 50 pct-owned companies.\n Reuter\n&#3;',0
+'STANLEY WORKS &lt;SWK> MAKES ACQUISITIONS Stanley Works said it has acquired Acme\nHolding corp, a maker of sliding and folding door hardware, and\nthe designs, patents and other righs of Plan-A-Flex Designer\nCo, which provides kits for home design and remodeling\nprojects.\n    It said Acme had 1986 sales of over 50 mln dlrs.\n    Terms were not disclosed.\n Reuter\n&#3;',0
+'ANITEC IMAGE TECHNOLOGY CORP &lt;ANTC> SETS PAYOUT Qtly div 7-1/2 cts vs 7-1/2 cts prior\n    Pay April 10\n    Record March 27 \n Reuter\n&#3;',0
+'GREEN MOUNTAIN POWER CORP &lt;GMP> SETS QUARTERLY Qtly div 45 cts vs 45 cts prior\n    Pay March 31\n    Record March 20 \n Reuter\n&#3;',0
+'DUAL-LITE INC &lt;MDT> SETS QUARTERLY Qtly div eight cts vs eight cts prior\n    Pay May 11\n    Record April 24 \n Reuter\n&#3;',0
+'SCIENCE MANAGEMENT CORP &lt;SMG> 4TH QTR OPER NET Oper shr profit 14 cts vs loss 31 cts\n    Oper net profit 374,000 vs loss 707,000\n    Revs 19.1 mln vs 15.5 mln\n    Avg shrs 2,610,000 vs 2,560,000\n    Year\n    Oper shr profit 20 cts vs loss 69 cts\n    Oper net profit 530,000 vs loss 1,376,000\n    Revs 69.1 mln vs 64.3 mln\n    Avg shrs 2,603,000 vs 2,565,000\n    NOTE: Excludes gain of 309,000 dlrs vs loss 72,000 dlrs in\nqtr and gains of 458,000 dlrs vs 23,000 dlrs in year from [...]
+'YEUTTER SAYS BUDGET CUT KEY TO BETTER U.S. TRADE A reduction of the U.S. federal budget\ndeficit will be needed to help eliminate the nation\'s huge\ntrade deficit, U.S. trade representative Clayton Yeutter said.\n    Speaking to the New York Chamber of Commerce and Industry,\nYeutter said \"Capital and trade flows are clearly\ninter-releated now.\n    \"Unless we get the budget deficit down, we will not get the\ntrade deficit down.\"\n    He did not elaborate on his views of the linkag [...]
+'CARMEL CONTAINER SYSTEMS LTD&lt;KML> YEAR OPER NET Oper shr 1.18 dlrs vs 58 cts\n    Oper net 2,266,000 vs 1,037,000\n    Revs 45.8 mln vs 41.4 mln\n    Avg shrs 1,924,000 vs 1,800,000\n    NOTE: Excludes gain of 73,000 dlrs vs 290,000 dlrs from\nbenefit of tax loss carryforward.\n    Results for Tel Aviv, Israel-based company translated at\nrate of one dlr to 1.485 new Israeli shekels.\n Reuter\n&#3;',0
+'NEW CURRENCY PROBLEM SEEN AMONG U.S, EUROPE, JAPAN The highly visible drama involving the\nyen\'s sharp rise against the U.S. Dollar is obscuring the fact\nthat the Japanese currency has hardly budged against major\nEuropean currencies, thus creating a new set of exchange rate\ndistortions, Japanese and European research officials said.\n    The officials, looking beneath the rhetoric of statements\nby the Group of Five (G-5) industrial nations, told Reuters the\ncurrency movements of t [...]
+'TANDEM COMPUTERS &lt;TNDM> SEES HIGHER NET Tandem Computers Inc said it expects\nhigher earnings and revenues in its second fiscal quarter\nending March 31 against a year ago.\n    \"We feel we will continue to see higher growth in the\nquarter,\" James Treybig, president and and chief executive\nofficer, told a meeting of securities analysts.\n    In the second fiscal quarter last year, Tandem earned\n9,950,000 dlrs or 29 cts per share on revenues of 176.3 mln\ndlrs.\n    Treybig decli [...]
+'FED\'S JOHNSON SAYS HE DOES NOT SEE INCREASING PRESSURE ON INTEREST RATES\n ',0
+'AUSTRALIA ATTACKS U.S. GATT FARM RULES EXEMPTION Australia accused the U.S. of increasing\nprotectionism on agricultural products and called for an end to\nWashington\'s special 32-year exemption from certain GATT rules\non agricultural trade.\n    Robert Arnott, Australia\'s delegate to the General\nAgreement on Tariffs and Trade (GATT), made the appeal at a\nspecial annual meeting which reviews the 1955 U.S. waiver.\n    \"Australia today said the United States\' goals of reducing\nU. [...]
+'FIRST UNION &lt;FUNC> TO BUY FLORIDA BANK First Union Corp said it has\nagreed to acquire First State Bancshares Inc of Pensacola,\nFla.,  and its First State Bank of Pensacola subsidiary for\nabout 457,000 common shares.\n    First State has assets of about 110 mln dlrs.  The\nacquisition, expected to be treated as a pooling of interests,\nis expected to be completed in the third quarter of 1987\nsubject to approval by regulatory agencies and First State\nshareholders.\n Reuter\n&#3;',0
+'OPPENHEIMER RAISES NWA &lt;NWA> EARNINGS ESTIMATE Oppenheimer and Co analyst Robert\nMcAdoo raised his 1987 earnings estimate for NWA Inc, parent of\nNorthwest Airlines, following a strong quarterly report by the\ncompany yesterday, according to Oppenheimer market strategist\nMichael Metz.\n    NWA shares rose 1-5/8 to 74-3/8 in active trading.\n    McAdoo raised his 1987 estimate to 7.50 dlrs a share from\nfive dlrs and maintained a buy recommendation on the stock,\nMetz said.\n    McA [...]
+'HOUSE 0/92 FARM PROPOSAL SEEN SPARKING DEBATE A House Agriculture Committee meeting\nlater today to draft a disaster aid bill is expected to spark a\ndebate between lawmakers who want to expand the 0/92, or\n\"de-coupling,\" provision to cover feedgrains, and those who\noppose 0/92 or want it severely limited, Congressional sources\nsaid.\n    The disaster aid bill as it now stands calls for a one-year\n0/92 pilot program for 1987 crop wheat and the 1988 winter\nwheat crop. The bill wou [...]
+'YELLOW FREIGHT &lt;YELL> SEES LOWER 1ST QTR NET Yellow Freight System Inc said\nits expects 1987 first quarter profits to be substantially\nbelow the 14.2 mln dlrs or 50 cts a share earned in the same\nperiod a year ago.\n    Revenues have been depressed by recent price discounting,\nadded costs from expansion programs, lower shipping volumes and\nincreased costs associated with severe weather conditions\non the East coast, company officials told analysts here.\n    An industry-wide rat [...]
+'NOVA SUBSIDIARY RAISES U.S. POLYETHYLENE PRICES Novacor Inc, a unit of &lt;Nova,\nan Alberta Corp>, said it would raise prices for U.S. customers\nby five cts a pound on linear low-density and low-density\npolyethylene, effective April 1.\n    The company did not immediately disclose the actual new\nprices.\n    A Novacor official later said in reply to an inquiry that\nthe new prices, effective April 1, would range from 31 U.S. cts\na pound to about 38 cts.\n    The official said the i [...]
+'MOULINEX STAKE SOLD TO SOME 50 INSTITUTIONS The 20 pct stake in Moulinex SA &lt;MOUP.PA>\nsold by &lt;Scovill Inc> of the U.S. Was spread among at least 50\ninstitutional investors worldwide, a spokesman for brokers\nJames Capel said. Capel handled the deal.\n    The buyers were based in centers ranging from Europe to\nNorth America and Japan, he added.\n    Moulinex\'s capital is split among Jean Mantelet, president\nof the company, with 42 pct, along with private investors\nholding 38 [...]
+'TALKING POINT/PIEDMONT &lt;PIE> Carl Icahn\'s bold takeover bid for\nUSAir Group &lt;U> has clouded the fate of Piedmont Aviation Inc,\nwhich was being courted by USAir.\n    Yesterday, Icahn\'s Transworld Airlines Inc &lt;TWA> made a 1.4\nbillion dlr offer for USAir Group. The move complicated a USAir\ntakeover offer for Piedmont, which was believed to be close to\naccepting the bid.\n    Today, USAir rejected Icahn\'s 52 dlr per share offer and\nsaid the bid was a last-minute effort t [...]
+'BAKER INT\'L &lt;BKO> HOPES TO COMPLETE MERGER Baker International Corp treasurer Eric\nMattson said the company hoped to iron out snags in a proposed\nmerger with Hughes Tool Co &lt;HT> but declined to say if or what\ncompromises might be acceptable to it.\n    The proposed merger that would create a 1.2 billion dlr\noilfield services company was thrown into limbo yesterday when\nHughes management, balking at the terms of a government consent\ndecree, offered a counter-proposal to Bake [...]
+'LUCKY STORES INC REINSTATES QUARTERLY DIVIDEND AT 12.5 CTS PER SHARE\n ',0
+'HOMESTEAD FINANCIAL &lt;HFL> UPS CASH DIVIDEND Homestead Financial Corp\nsaid it has increased the dividend on its Class A common shares\nto 6-1/4 cts a share, from five cts prior, while declaring an\ninitial dividend on its Class B common stock of 3-3/4 cts a\nshare.\n    Homestead said the two classes of stock emerged as part of\nits recapitalization plan which also doubled the number of\nauthorized common, comprising both classes, to 11 mln shares.\n    Homestead said the dividends a [...]
+'ELECTRO-SENSORS INC &lt;ELSE> YEAR OPER NET Oper shr 52 cts vs 51 cts\n    Oper net 626,013 vs 613,127\n    Sales 4,544,929 vs 4,402,572\n    NOTE: Earnings exclude extraordinary securities loss of\n29,532 dlrs, or two cts a share vs a gain of 81,358 dlrs, or\nseven cts a share\n\n Reuter\n&#3;',0
+'CHINA ADDS, CANCELS WHEAT COMMITMENTS - USDA China has added 90,000 tonnes of U.S.\nwheat to its purchases for delivery in the 1987/88 season and\ncancelled 30,000 tonnes of wheat purchases for delivery in the\n1986/87 season, the U.S. Agriculture Department said.\n    According to the department\'s Export Sales Report covering\ntransactions in the week ended February 26, China has\noutstanding wheat commitments for the 1986/87 season of 30,000\ntonnes and 420,000 tonnes for delivery in [...]
+'OPEC PRESIDENT SAYS OUTPUT WELL BELOW CEILING Opec Conference President Rilwanu Lukman\nsaid the group was producing well below the 15.8 mln bpd\nceiling it set in December, partly because liftings had been\ndelayed or postponed by customers unwilling to pay fixed Opec\nprices.\n    Lukman, during a brief visit to London on his way home from\nJamaica, told Reuters in a telephone interview that in\nFebruary, Opec had underproduced partly because members were\nstrictly abiding by producti [...]
+'LUCKY STORES INC &lt;LKS> REINSTATES QUARTERLY DIV Qtly div 12.5 cts vs nil\n    Pay April 3\n    Record March 16\n    Note: in quarters preceeding 4th qtr, dividend was 29 cts.\n Reuter\n&#3;',0
+'CARMEL CONTAINER SYSTEMS LTD&lt;KML> YEAR OPER NET Oper shr 1.18 dlrs vs 58 cts\n    Oper net 2,266,000 vs 1,037,000\n    Revs 45.8 mln vs 41.4 mln\n    Avg shrs 1,924,000 vs 1,800,000\n    NOTE: Excludes gain of 73,000 dlrs vs 290,000 dlrs from\nbenefit of tax loss carryforward.\n    Results for Tel Aviv, Israel-based company translated at\nrate of one dlr to 1.485 new Israeli shekels.\n Reuter\n&#3;',0
+'CUBAN CATTLE THREATENED BY DROUGHT Over 750,000 head of cattle are suffering\nthe effects of a severe shortage of feed as a result of a\nprolonged drought in the normally rich sugar and cattle\nproducing province of Camaguey, the newspaper Granma reported.\n    The province produces 23 pct of Cuba\'s beef and is the\nisland\'s number two province in milk production. Granma said\n20,000 head of cattle are now in imminent danger.\n    The newspaper said a \"cattle emergency\" had been dec [...]
+'U.S. TO SET ORANGE JUICE DUTIES MONDAY The Commerce Department on Monday\nwill set final dumping duties on frozen orange juice from\nBrazil, department officials said.\n    A preliminary duty of 8.54 pct was set last Oct 17 on the\nimports, which run at about 700 mln dlrs a year. Commerce\'s\nruling on Monday will reset the duties on the basis of more\ndetailed cost information, industry officials said.\n    The duties now are being assessed on a temporary basis,\npending a final ruling [...]
+'LONGVIEW FIBRE CO &lt;LFBR> QUARTERLY DIVIDEND Qtly div 40 cts vs 40 cts\n    Pay April 10\n    Record March 25\n Reuter\n&#3;',0
+'BEI HOLDINGS LTD &lt;BEIH> 1ST QTR JAN 31 NET Shr 13 cts vs eight cts\n    Net 1,364,712 vs 881,082\n    Rev 11.6 mln vs 11.5 mln\n    NOTE: Qtr includes extraordinary gain of 586,826 dlrs, or\nsix cts a share, versus 183,850 dlrs or two cts a share in\nfiscal 1986\'s first qtr.\n Reuter\n&#3;',0
+'ENDEVCO &lt;EI> AGREES TO BUY MISSISSIPPI PIPELINE Endevco Inc said it has agreed to acquire\na 17.5-mile, 16-inch pipeline in Marion and Pearl River\nCounties, Mississippi, for undisclosed terms.\n    The company said the pipeline was recently constructed from\nthe Poplarville gas field in Pearl River County to a proposed\ninterconnect with a pipeline operated by Occidental Petroleum\nCorp\'s &lt;OXY> United Gas Pipe Line Co subsidiary in Marion\nCounty but has nmot been placed in serv [...]
+'ATLANTIC CITY ELECTRIC CO &lt;ATE> SETS PAYOUT Qtly div 65-1/2 cts vs 65-1/2 cts prior\n    Pay April 15\n    Record March 19\n Reuter\n&#3;',0
+'KEMPER CORP &lt;KEMC> REGULAR PAYOUT SET Qtly div 15 cts vs 15 cts previously\n    Pay May 29\n    Record May Eight\n Reuter\n&#3;',0
+'FFB &lt;FFCT> SETS INITIAL QUARTERLY DIVIDEND FFB Corp, parent of the First\nFederal Bank of Connecticut FSB, said it declared an initial\nquarterly dividend of five cts per share.\n    The company said the dividend is payable March 31 to\nholders of record March 17.\n Reuter\n&#3;',0
+'UNION CARBIDE SAYS OPERATING PROFITS FOR 4th qtr WERE 181 MLN DLRS VS LOSS THREE MLN DLRS\n ',0
+'MONEY MARKET FUND ASSETS ROSE 552.5 MLN DLRS IN LATEST WEEK TO 237.46 BILLION\n ',0
+'COMBINED INTERNMATIONAL &lt;PMA> SEES STRONG 1987 Combined International Corp should have\nanother strong year, President Patrick G. Ryan told analysts,\nalthough he declined to forecast earnings specifically.\n    In 1986, the company reported operating income of 5.51 dlrs\na share, up from 4.84 dlrs a share a year earlier. Revenues\nincreased to 1.81 billion dlrs from 1.36 billion dlrs.\n    Ryan said Combined is testing a direct response long-term\ncare product through its Union Fide [...]
+'CANADA DLR DRIVEN BY FOREIGN BUYERS - WILSON Finance Minister Michael Wilson said\nlarge inflows of capital into Canada, principally into the\ncountry\'s bond market, is a major reason behind the sharp\nrecovery in the Canadian dollar.\n    He said the inflow of funds, mainly from Japan, Europe and\nthe United States, is the result of \"confidence in the\ndirection this country is going in.\"\n    \"That is the reason why the (Canadian) dollar today is\nhigher than 75 cts (U.S.) compare [...]
+'CHARTWELL GROUP LTD &lt;CTWL> 4th qtr net Shr nine cts vs three cts\n    Net 549,000 vs 72,000\n    Rev 7.0 mln vs 2.8 mln\n    Year\n    Shr 49 cts vs 32 cts\n    Net 2,441,000 vs 801,000\n    Rev 19.6 mln vs 9.7 mln\n   \n Reuter\n&#3;',0
+'PITT-DES MOINES INC &lt;PDM> TO ACQUIRE STEEL UNIT Pitt-Des Moines Inc said it will\nacquire &lt;Chicago Steel Corp> in exchange for a portion of its\nstock.\n Reuter\n&#3;',0
+'GIANT BAY &lt;GBYLF> DETAILS GORDON LAKE DEPOSIT Giant Bay Resources\nLtd said a metallurgical study of its Gordon Lake gold deposit\nindicated an overall recovery of 95 pct to 96 pct of the gold\ncan be achieved by either direct cyanidation of ore or\nflotation followed by cyanidation of concentrate.\n    Continuation of an underground program on the property will\nbegin in June, extending an existing drift along the\n200-foot-level where the main ore zone was encountered, Giant\nBay s [...]
+'CONSENSUS BUILDS FOR WORLD AGRICULTURAL REFORM Top U.S. and European farm trade and\ngovernment representatives called for a sweeping reform of\nworld agriculture to redress a critical demand and supply\nimbalance.\n    Speakers at a conference on world agricultural markets here\ndemonstrated a growing U.S.-European consensus on the need for\nan urgent and collective overhaul of world farm trade and\nproduction.\n    \"It is vital that we work together to bring more freedom and\nharmony [...]
+'REXCOM &lt;RXSC> TO ACQUIRE MARKETING FIRM Rexcom Systems Corp said it agreed to\nbuy all the assets of Postech Inc from Comtech Group\nInternational Ltd, a Canadian computer service company, for 70\npct of Rexcom\'s voting shares.\n    The purchase will be for Rexcom common and preferred stock.\n    Postech, the Canadian firm\'s U.S. marketing arm, sells\ncomputerized restaurant management systems and security systems\nin the U.S.\n    The deal is subject to approval by the boards of P [...]
+'ASCS BUYS PEANUT PRODUCTS, VEG OIL/SHORTENING The Agricultural Stabilization and\nConservation Service (ASCS) bought 2.3 mln pounds of peanut\nproducts at a cost of 2.1 mln dlrs and 7.4 mln pounds of\nvegetable oil/shortening for 2.0 mln dlrs, for domestic\ndistribution April 1-15 and April 16-30, an ASCS spokesman\nsaid.\n Reuter\n&#3;',0
+'GENERAL REFRACTORIES CO &lt;GRX> 4TH QTR NET Shr 17 cts vs 84 cts\n    Net 709,000 vs 3,605,000\n    Rev 86.4 mln vs 87.0 mln\n    Year\n    Shr 1.79 dlrs vs 1.10 dlrs\n    Net 7,452,000 vs 4,695,000\n    Rev 362.8 mln vs 316.0 mln\n    NOTE: 1986 net includes gains from sale of non-operating\nassets of 800,000 dlrsm versus 1.2 mln dlrs in 1985.\n    1985 net includes nonrecurring cost of 2.6 mln dlrs and\nprovision for separation pay of 1.5 mln dlrs.\n Reuter\n&#3;',0
+'HOUSE 0/92 FARM PLAN MARKUP DELAYED TILL TUESDAY A House Agriculture Committee meeting\nto draft a disaster aid bill containing a controversial 0/92\nprovision has been postponed until next Tuesday, committee\nstaff members announced.\n    The bill contains a provision implementing a 0/92 acreage\nreduction plan for 1986 wheat and 1987 winter wheat, thereby\nmaking payments available to farmers who were not able to plant\nlast year\'s winter wheat crop because of flooding.\n    Controve [...]
+'UNION CARBIDE &lt;UK> SAYS LONG TERM DEBT RISES Union Carbide Corp said its 1986\nlong term debt was 3.06 billion dlrs compared to 1.71 billion\ndlrs in 1985.\n    The company released its audited 1986 results.\n    The company also said its long term debt was reduced by\nabout 1.5 billion dlrs from the third quarter to the end of the\nyear by asset sales and equity offerings. Union Carbide sold\nits battery products, home and automobile products and\nagricultural products businesses in [...]
+'FIRST COMMERCIAL BANCORP &lt;FCOB> 4TH QTR LOSS Shr loss 49 cts vs loss 1.36 dlrs\n    Net loss 928,835 vs loss 1,648,665\n    Year\n    Shr loss 33 cts vs loss 4.21 dlrs\n    Net loss 593,533 vs loss 4,970,951\n    Assets 203.9 mln\n    Loans 151.5 mln\n    Deposits 192.0 mln\n    Note: 1986 loss included non-recurring expenses of\n1,275,000 dlrs comprised of asset write-downs, legal proceeding\nand a 930,000-dlr provision for loan losses.\n Reuter\n&#3;',0
+'HARCOURT BRACE JOVANOVICH INC &lt;HBJ> 4TH QTR NET Shr 23 cts vs 28 cts\n    Net 8,877,000 vs 9,530,000\n    Revs 342 mln vs 278.9 mln\n    Avg shrs 39.4 mln vs 34 mln\n    Year\n    Shr 1.91 dlrs vs 1.62 dlrs\n    Net 70.5 mln vs 50.5 mln\n    Revs 1.3 billion vs 990.5 mln\n    Avg shrs 37 mln vs 31.3 mln\n    NOTE: On Dec one, 1986, company acquired Holt, Rinehart and\nWinston and W.B. Saunders and The Dryden Press and their\nforeign subsidiaries. By including these companies for the\ [...]
+'LONE STAR&lt;LCE> AGREES TO BUY CONCRETE OPERATIONS Lone Star Industries Inc said\nit has agreed to acquire ready-mixed concrete and aggregates\nbusinesses from &lt;Riedel International Inc> of Portland, Ore.,\nfor an undisclosed amount of cash.\n    Lone Star\'s one sentence statement gave no further details\nand company spokesmen were not available.\n Reuter\n&#3;',0
+'SHELL FRANCAISE RETURNS TO PROFIT IN 1986 Shell Francaise &lt;SFMF.PA>, a subsidiary of\n&lt;Shell Petroleum NV>, returned to the black last year for the\nfirst time since 1982, with parent company net profit of 43 mln\nfrancs against losses of 968 mln in 1985 and 1.07 billion in\n1984. In 1982 it posted a profit of 329 mln.\n    The company said in a statement that cash flow had improved\nstrongly although it remained negative at 182 mln francs\nagainst 1.34 billion in 1985, due largel [...]
+'BRAZIL SUSPENDS IMPORT OF 500,000 TONNES MAIZE Brazil has suspended the importation\nof 500,000 tonnes of maize ordered last year because of the\nexcellent domestic maize harvest expected this year,\nAgriculture Minister Iris Resende said.\n    The Agriculture Ministry expects a record maize crop of\n27.7 mln tonnes, a 36 pct increase on last year\'s crop of 20.3\nmln tonnes.\n    Brazil\'s total grain crop is expected to be 65.3 mln\ntonnes. \"This is a record in the history of Brazili [...]
+'FAIRMOUNT CHEMICAL CO INC &lt;FMTC> 4TH QTR LOSS Shr loss 28 cts vs loss 29 cts\n    Net loss 584,100 vs loss 459,500\n    Sales 1,339,800 vs 1,6390,800\n    Year\n    Shr loss 64 cts vs loss 79 cts\n    Net loss 1,314,700 vs loss 1,237,100\n    Sales 7,249,600 vs 6,311,500\n Reuter\n&#3;',0
+'HUMANA INC &lt;HUM> REGULAR DIVIDEND Qtly div 19 cts vs 19 cts in prior qtr\n    Payable May one\n    Record April two\n Reuter\n&#3;',0
+'U.S. COMMERCIAL PAPER FALLS 1.27 BILLION DLRS IN FEB 25 WEEK, FED SAYS\n ',0
+'N.Y. BUSINESS LOANS RISE 523 MLN DLRS IN FEB 25 WEEK, FED SAYS\n ',0
+'FINANCIAL CORP &lt;FIN> UNIT BUYS BRANCHES Financial Corporation of\nAmerica\'s American Savings and Loan Association unit said it\nsigned a definitive agreement to buy three retail savings\nbranches from Gibraltar Financial Corp\'s &lt;GFC> Gibraltar\nSavings unit.\n    The purchase, which must be approved by the Federal Home\nLoan Bank and the California Department of Savings and Loans,\nwould increase American Savings\' deposits by about 40 mln dlrs.\n    The branches are in La Jolla [...]
+'PORK DELEGATES VOTE ON FARM BILL, FARM CREDIT Delegates from the National Pork\nProducers Council, NPPC, attending the American Pork Congress\nin Indianapolis, voted overwhelmingly to recommend the U.S.\ncongress not to change the farm bill. While there are no\nspecific pork items in that legislation, feed grain prices\ndirectly affect pork producer profits, the NPPC said.\n    Don Gingerich, a delegate from Iowa, said \"to have\nunpredictable changes come along periodically makes it ve [...]
+'CONFIDENCE IN OPEC FIRMS U.S. ENERGY FUTURES Renewed confidence in OPEC\'s ability to\nlimit production helped U.S. energy futures settle above\nyesterday\'s closing prices, according to analysts.\n    They also said the heating oil contract found additional\nsupport from a short-covering rally on the close.\n    April crude closed 24 cts higher to 17.75 dlrs. April\nheating oil was 1.47 cts higher to 47.91 cts a gallon.\n    \"Most traders expected follow through profit-taking from\nye [...]
+'TREASURY SAYS ONLY REAGAN, BAKER SPEAK ON DLR The U.S. Treasury repeated a White\nHouse statement that only President Reagan and Treasury\nSecretary James Baker are authorized to speak on the dollar.\n    A Department spokesman was commenting on remarks by\nCommerce Department Under-Secretary Robert Ortner that the yen\nwas undervalued 10 or 15 pct against the dollar but European\ncurrencies were fairly priced against the U.S. currency.\n    \"As Larry Speakes said on January 14 this ye [...]
+'USDA COMMENTS ON EXPORT SALES  Corn sales gained 2,494,900 tonnes in\nthe week ended February 26, the highest weekly total since\nAugust 1984 and two and three-quarter times the prior week\'s\nlevel, the U.S. Agriculture Department said.\n    In comments on its Export Sales Report, the department said\nsales of 1.0 mln tonnes to the USSR -- previously reported\nunder the daily reporting system -- were the first sales for\ndelivery to the USSR under the fourth year of the U.S.-USSR\nGrai [...]
+'FAIRFIELD COMMUNITIES INC &lt;FCI> 10 MOS DEC 31 Shr loss 1.62 dlrs vs profit 83 cts\n    Net loss 17.2 mln vs profit 8.3 mln\n    Revs 264.0 mln vs 338.0 mln\n    NOTE:Year ago figures based on 12 months ended February 28,\n1986 because company changed reporting period to end December\n31.\n   1986 10 months loss includes 10.3 mln dlrs writedown of\ncertain assets.\n                        \n Reuter\n&#3;',0
+'CARVER CORP &lt;CAVR> 4TH QTR NET Shr 20 cts vs 17 cts\n    Net 680,000 vs 533,000\n    Sales 6,473,000 vs 5,996,000\n    Year\n    Shr 57 cts vs 84 cts\n    Net 1,967,000 vs 2,099,000\n    Sales 20.8 mln vs 19.0 mln\n Reuter\n&#3;',0
+'INTER-CITY GAS CORP 4TH QTR SHR 36 CTS VS 68 CTS\n ',0
+'UNICORP &lt;UAC>, LINCOLN IN DEFINITVE PACT Unicorp American Corp said it signed a\ndefinitive agreement to acquire Lincoln Savings Bank FSB.\n    Under terms of the agreement announced in January, Lincoln\nwould be acquired by a unit of Unicorp which is minority-owned\nby Lincoln president Alton Marshall.\n    The acquisition will take place through a voluntary \nconversion of Lincoln to a federally chartered stock savings\nbank from a mutual federal savings bank.\n    In connection wi [...]
+'U.S. M-1 MONEY SUPPLY RISES 1.9 BILLION DLRS IN FEB 23 WEEK, FED SAYS\n ',0
+'U.S. BANK DISCOUNT BORROWINGS AVERAGE 233 MLN DLRS A DAY IN MARCH 4 WEEK, FED SAYS\n ',0
+'COFFEE FALL NOT SEEN AFFECTING COLOMBIA\'S DEBT The sharp fall in international coffee\nprices will not affect Colombia\'s external credit situation,\nfinance minister Cesar Gaviria told reuters.\n    He said the current depression on world coffee markets was\nnot totally unexpected and would have no immediate bearing on\nColombia\'s financial state which he described as sound.\n    \"Our foreign debt is high, but we can pay and I hope the\nforeign banking community will maintain its po [...]
+'U.S. M-1 MONEY SUPPLY RISES 1.9 BILLION DLRS U.S. M-1 money supply rose 1.9 billion\ndlrs to a seasonally adjusted 738.5 billion dlrs in the\nFebruary 23 week, the Federal Reserve said.\n    The previous week\'s M-1 level was revised to 736.6 billion\ndlrs from 736.7 billion dlrs, while the four-week moving\naverage of M-1 rose to 736.7 billion dlrs from 735.0 billion.\n    Economists polled by Reuters had forecast M-1 in a range\nfrom down 500 mln dlrs to up 4.5 billion dlrs.\n    The  [...]
+'HUMANA &lt;HUM> DECLARES SHAREHOLDERS RIGHTS PLAN Humana Inc said its board\napproved a shareholder rights plan, or so-called poison pill\nplan, to ensure its shareholders receive fair treatment in the\nevent of a proposed takeover.\n    Humana said it is now aware of any effort to gain control\nof the company.\n    Under the plan its board declared a dividend distribution\nof one right for each outstanding common share held as of March\n16. It said each right entitles holders to purcha [...]
+'FREMONT GENERAL CORP &lt;FRMI> 4TH QTR OPER NET Oper shr profit 63 cts vs loss 1.15 dlrs\n    Oper net profit 6,629,000 vs loss 12.4 mln\n    Revs 23.6 mln vs 22.4 mln\n    Year\n    Oper shr profit 1.65 dlrs vs loss 1.28 dlrs\n    Oper net profit 17.5 mln vs loss 13.8 mln\n    Revs 93.1 mln vs 86.8 mln\n    Note: Oper data does not include loss from discontinued\noperations of 7,932,000 dlrs, or 73 cts per shr in 4th qtr\n1985, loss of 40.5 mln dlrs, or 3.83 dlrs per shr in the 1986\ny [...]
+'GREAT WESTERN FINANCIAL &lt;GWF> UNIT BUYS BANKS Great Western Financial\nCorp\'s subsidiary Great Western Bank said it will purchase\nthree retail banking branches in south Florida with total\ndeposits of 90 mln dlrs.\n    Great Western said it will purchase branches in Deerfield\nBeach and Hollywood with approximately 80 mln dlrs in deposits\nfrom Guardian Savings and Loan Association, and one in Palm\nBeach with approximately 10 mln in deposits from Goldome\nSavings Bank.\n Reuter\n&#3;',0
+'HUGHES &lt;HT> CHANGES STANCE ON MERGER AFTER SUIT A one billion dlr lawsuit pushed\nHughes Tool Co into an about-face on its rejection of a\nproposed merger with Baker International Corp &lt;BKO>, Wall\nStreet analysts said.\n    Last night, Hughes said the planned merger with Baker was\noff. Baker then filed a suit seeking punitive damages from\nHughes for calling off the merger. At midday today Hughes said\nit was still interested in the merger.\n    The analysts also said Hughes may [...]
+'ARMTEK &lt;ARM> SELLS TIRE, TRUCK TIRE BUSINESS Armtek Corp, formerly known as\nArmstrong Rubber Co, said it signed agreements with &lt;Condere\nCorp> for the sale of its Natchez, Miss. tire plant and its S\nand A Truck Tire Sales and Services Corp.\n    Terms were not disclosed. Armtek spokesman John Sievers\nsaid S and A is a 50 mln dlr business.\n    Earlier this week, Armtek announced the sale of its\nindustrial tire and assembly business division to Dyneer Corp\nof Scotsdale, Ariz. [...]
+'ELXSI LTD &lt;ELXSF> 4TH QTR LOSS Shr loss four cts vs loss 34 cts\n    Net loss 2,922,000 vs loss 19.9 mln\n    Revs 4,071,000 vs 8,012,000\n    Year\n    Shr loss 23 cts vs loss 79 cts\n    Net loss 17.3 mln vs loss 46.2 mln\n    Revs 22.4 mln vs 28.6 mln\n Reuter\n&#3;',0
+'&lt;NEWSCOPE RESOURCES LTD> YEAR LOSS Shr loss 94 cts vs profit 28 cts\n    Net loss 6,319,337 vs profit 1,702,016\n    Revs 2,899,513 vs 5,239,106\n    Note: 1986 net includes 5,250,000 dlr writedown of oil and\ngas properties.\n Reuter\n&#3;',0
+'FERC ISSUES TAKE-OR-PAY GAS POLICY PLAN The Federal Energy Regulatory\nCommission (FERC) issued a proposed policy statement for the \nrecovery of take-or-pay costs imposed by existing natural gas\ncontracts between producers and pipelines.\n    It put out the statement, by 5-0 vote, for a 30-day comment\nperiod. It also put out an alternative policy statement by\nCommissioner Charles Stalon.\n    FERC said in a press release that \"the proposed policy\nstatement estblishes an exception  [...]
+'TIMES MIRROR CO &lt;TMC> QUARTERLY DIVIDEND Qtly div 41 cts vs 41 cts\n    Pay June 10\n    Record May 29\n Reuter\n&#3;',0
+'INTER-CITY GAS CORP &lt;ICG> 4TH QTR NET Shr 36 cts vs 68 cts\n    Net 10.0 mln vs 16.1 mln\n    Revs 441.6 mln vs 470.8 mln\n    YEAR\n    Shr 86 cts vs 1.77 dlrs\n    Net 29.1 mln vs 44.1 mln\n    Revs 1.43 billion vs 1.54 billion\n    Note: 1986 fl-yr net includes 9.3 mln dlr writedown of U.S.\noil and gas properties partly offset by 1.1 mln dlr\nextraordinary gain from tax gains and proceeds from sale of\nMinnesota utility operations. 1985 net includes extraordinary\ngain of 892,000 [...]
+'BROWN TRANSPORT CO INC &lt;BTCI> 4TH QTR NET Shr profit 26 cts vs profit 10 cts\n    Net profit 1,371,000 vs profit 482,000\n    Revs 48 mln vs 45.7 mln\n    Avg shrs 5.20 mln vs 5.15 mln\n    12 mths\n    Shr profit 1.05 dlrs vs loss 34 cts\n    Net profit 5,454,000 vs loss 1,766,000\n    Revs 191.7 mln vs 185.2 mln\n    Avg shrs 5.20 mln vs 5.15 mln\n Reuter\n&#3;',0
+'METRO MOBILE CTS INC &lt;MMCT> FIRST QTR LOSS Qtr ends Dec 31\n    Shr loss 33 cts vs loss 16 cts\n    Net loss 5,632,426 vs loss 2,373,358\n    Revs 3,277,976 vs 1,535,550\n    Avg shrs 16.9 mln vs 14.4 mln\n Reuter\n&#3;',0
+'&lt;SPAR AEROSPACE LTD> YEAR NET Shr basic 42 cts vs 1.41 dlrs\n    Shr diluted 42 cts vs 1.33 dlrs\n    Net 4,394,000 vs 13,070,000\n    Revs 191.0 mln vs 223.3 mln\n Reuter\n&#3;',0
+'PESCH UNIT SEEKS BALANCE OF REPUBLIC HEALTH Alpha Health Systems Corp, a\nwholly-owned subsidiary of Pesch and Co, said it submitted a\nmerger proposal to the board of REPH Acquisition Co, the parent\ncompany of Republic Health Corp, which is 64 pct owned by Pesch\ninterests.\n    The balance of REPH\'s common stock is owned by members of\nRepublic management, McDonnell Douglas Corp &lt;MD>, Donaldson,\nLufkin and Jenrette and Pacific Asset Holdings L.P.\n    Republic currently owns 44  [...]
+'SPAR SEES SEES STRONG FIVE-YEAR GROWTH &lt;Spar Aerospace Ltd>, reporting a\nsharply lower 1986 profit, said it anticipated solid profit and\nrevenue growth during the next five years.\n    \"Looking to the longer term, Spar is confident that its\ncontinuing concentration on advanced robotics, satellite-based\ncommunications and electro-optical defense systems will lead to\nsignificant growth in revenues and earnings over the next five\nyears,\" the company said.\n    It also forecast h [...]
+'CHESAPEAKE UTILITIES CORP &lt;CHPK> REGULAR DIV Qtly div 28-3/4 cts vs 28-3/4 cts prior\n    Pay April three\n    Record March 13\n Reuter\n&#3;',0
+'MEATPACKERS REJECT OCCIDENTAL &lt;OXY> UNIT OFFER United Food and Commercial Workers Union\nLocal 222 rejected a new contract proposal from Iowa Beef\nProcessors Inc and remain out of work, union spokesman Allen\nZack said.\n    In mid-December, Iowa Beef, a subsidiary of Occidental\nPetroleum Corp, closed its beef processing plant at Dakota\nCity, Nebraska, because it said \"it had no alternative to\nthreats by meatpackers to disrupt operations.\"\n    About 2,800 UFCWU members are aff [...]
+'SWIFT INDEPENDENT PACKING CO &lt;SFTPr> 1ST QTR NET Periods ended January 31\n    Net 1,443,000 vs 3,539,000\n    Revs 765.2 mln vs 685.8 mln\n Reuter\n&#3;',0
+'CHEMLAWN SAYS IT REJECTS 27 DLRS PER SHARE TENDER OFFER FROM WASTE MANAGEMENT\n ',0
+'FRANCE, YUGOSLAVIA COMMISSION TO BOOST TRADE France and Yugoslavia agreed to set up a\njoint economic commission as part of efforts to promote\ncommercial links and industrial cooperation between the two\ncountries.\n    The French Finance Ministry said the commission, to be\ncomposed of businessmen, was agreed during talks between\nForeign Trade Minister Michel Noir and Yugoslavian minister\nwithout portfolio Egon Padovan.\n    A ministry statement said both sides had agreed on the nee [...]
+'CHEMLAWN &lt;CHEM> REJECTS WASTE\'S &lt;WMX> OFFER ChemLawn Corp said its board\nrejected Waste Management Inc\'s 27 dlr-per-share tender offer\nand urged its shareholders not to tender their shares.\n    ChemLawn said its board asked management and its financial\nadvisor, Smith Barney, Harris Upham And Co Inc, to seek other\npurchasers of the company to maximize shareholder value.\n    ChemLawn also said it adopted a shareholder rights plan, or\n\"poison pill,\" during a 120-intermin s [...]
+'(CAMBIOR INC) FIVE MTHS DEC 31 NET Shr 39 cts vs not given\n    Net 8,801,000 vs not given\n    Revs 33.2 mln vs not given\n Reuter\n&#3;',0
+'CONAGRA &lt;CAG> TO ACQUIRE MONFORT &lt;MMFT> ConAgra Inc agreed to acquire\nMonfort of Colorado Inc in a stock transaction, both companies\nsaid.\n    According to the letter of intent signed by the companies,\nConAgra will acquire all of Monfort\'s 4.3 mln outstanding\nshares for 10.75 mln of its own shares.\n    Based on ConAgra\'s closing price of 34 dlrs today, the\ntransaction is worth about 356.5 mln dlrs. The merger is\nexpected to be completed in June, they said.\n    The compa [...]
+'HOUSE 0/92 PLAN SEEN SCALED-BACK TO 1987 WHEAT Key members of the House Agriculture\ncommittee have agreed to scale-back the 0/92 provision of a\npending disaster aid bill to cover only 1987 crop wheat, but a\nbroader 0/92 proposal is likely to be resurrected later,\nCongressional sources said.\n    The sources said key lawmakers including Reps. Glenn\nEnglish (D-Okla.), and Dan Glickman (D-Kan.) agreed to support\nan amendment to be offered next week by Rep. Charles Stenholm\n(D-Tex.)  [...]
+'FAVORED TRADE STATUS FOR MOSCOW STILL OPPOSED The Reagan administration wants to\nencourage expanded trade with the Soviet Union but does not\nbelieve Moscow yet warrants most-favored-nation treatment,\nDeputy Secretary of State John Whitehead said.\n    \"It seems to me that more trade between us is better than\nless trade,\" he told a forum on U.S.-Soviet trade relations.\n    To that end, the administration in January allowed foreign\npolicy controls on the export of oil and gas equi [...]
+'MCDONNELL DOUGLAS &lt;MD> NOT APPROACHED BY PESCH McDonnell Douglas Corp, which has a five\nmln dlr investment in Republic Health Corp &lt;REPH>, said it has\nnot been approached to sell its shares in Republic Health.\n    Earlier, Alpha Health Systems Corp, a unit of Pesch and Co,\nsaid it submitted a merger proposal to the board of REPH\nAcquisition Co, the parent of Republic Health. LeRoy A. Pesch\nis the principal stockholder of Pesch.\n    \"We have not been approached by Mr. Pesch [...]
+'PARADYNE &lt;PDN> PLEADS GUILTY TO CRIMINAL CHARGE Paradyne Corp said it pleaded guilty\nto criminal charges of conspiracy to defraud the Social\nSecurity Administration and agreed to pay 1.2 mln dlrs in fines\nand costs to the U.S. Government.\n    The company also reached agreements in principle for an 8.1\nmln dlr settlement of class action law suits.\n    About 2.9 mln dlrs of the class action settlement will be\nprovided by Paradyne\'s insurance carrier. The settlement is\ncontinge [...]
+'SOUTH AFRICAN FIRM TO CONTINUE TESTS South Africa\'s state-owned energy\nfirm Soekor said it would continue tests after striking oil\nsome 120 kms (75 miles) south-southwest of Mossel Bay.\n    During production tests, about 5,000 barrels of oil and\nfive mln cubic feet of gas per day were produced, it said.\n    \"This oil discovery will be followed-up as soon as possible\nby further seismic surveys and drilling. Should further\ndrilling and tests in the area yield positive results oil [...]
+'GREECE REPEATS IT CAN DECIDE ON AEGEAN DRILLING Greece, replying to a warning from Turkey\nthat it will stop Athens from seeking oil in the Aegean Sea,\nrepeated today that it has an exclusive right to decide where\nor when to drill in the area.\n    A government spokesman said in a statement that if Ankara\nbelieved Greece was contravening international law, it could\nbring the issue before the courts.\n    The spokesman was responding to a statement by Turkish\nForeign Ministry spokes [...]
+'NCA CORP &lt;NCAC> 4TH QTR LOSS Shr loss 45 cts vs loss 1.34 dlrs\n    Net loss 1,240,000 vs loss 3,621,000\n    Revs 6,264,000 vs 4,626,000\n    Year\n    Shr loss 90 cts vs loss 2.01 dlrs\n    Net loss 2,487,000 vs loss 5,406,000\n    Revs 20.8 mln vs 21.7 mln\n Reuter\n&#3;',0
+'BIOMEDICAL DYNAMICS CORP &lt;BMDC> 4TH QTR NET Shr profit one ct vs loss two cts\n    Net profit 52,405 vs loss 67,967\n    Sales 289,572 vs 188,713\n    Year\n    Shr loss one cts vs loss five cts\n    Net loss 51,019 vs loss 201,680\n    Sales 1.1 mln vs 490,935\n Reuter\n&#3;',0
+'SANTA FE SOUTHERN PACIFIC APPEALS MERGER RULING Santa Fe Southern Pacific Corp will\nlater today formally ask the U.S. Interstate Commerce\nCommission (ICC) to reconsider its earlier rejection of the\nmerger of the holding company\'s railroad assets, a company\nspokesman said.\n    \"We expect to file papers late tonight\" asking the ICC to\nreopen the rail merger case, spokesman Rich Hall said in a\ntelephone interview from the company\'s Chicago headquarters.\n    The ICC had rejected [...]
+'BRAZIL DEBT SEEN PARTNER TO HARD SELL TACTICS Brazil\'s recent announcement of a\nsuspension in interest payments on 68 billion dlrs of foreign\ndebt gave the banking system the jitters and confirmed views\namong many international economists and commodities analysts\nthat Brazil will continue to flex its trading muscles in 1987.\n    The developing world\'s most indebted nation is also its\nmost prolific exporter of agricultural commodities such as\ncoffee and soybeans, and might maxim [...]
+'IEA SAYS OPEC FEBRUARY CRUDE OUTPUT 16.1 MLN BPD OPEC produced an average 16.1 mln barrels\nper day (bpd) of crude oil in February, down from 16.5 mln the\nprevious month and an overall 17.3 mln bpd in fourth quarter\n1986, the International Energy Agency said.\n    A few OPEC countries last month exceeded the production\nquotas set at their last conference in December, but liftings\nwere reduced from several countries, it said in its latest\nmonthly oil market report.\n    These cutbac [...]
+'U.S. SENATE GROUP URGES SUBSIDIES FOR USSR A majority of the Senate Agriculture\nCommittee urged President Reagan to reverse his opposition to\nexport subsidies to the Soviet Union as a way to get its\nnegotiators to purchase some 500 mln dlrs in American wheat.\n    The group, led by committee chairman Patrick Leahy, a\nVermont Democrat, urged Reagan to step up negotiations with the\nSoviet Union by providing export subsidies to help U.S.\nfarmers.\n Reuter\n&#3;',1
+'ENFIELD CORP PLANS NOTES, PREFERRED ISSUE &lt;Enfield Corp Ltd> said it planned to\nissue 60 mln dlrs principal amount of notes and 1.6 mln class E\npreferred shares at 25 dlrs a share.\n    The notes would bear 8 pct yearly interest, mature March\n31, 2002 and be convertible to common shares on either March\n31, 1997 or the business day before a fixed redemption date at\n13.50 dlrs a share, Enfield said.\n    It said each preferred share would be convertible to 1.85\ncommon shares on e [...]
+'WICHITA &lt;WRO> TO BUY FOUNTAIN OIL &lt;FGAS> Wichita Industries Inc said it\nagreed to buy Fountain Oil and Gas Inc.\n    Wichita said it it will acquire all of the outstanding\nshares of Fountain in an exchange for about 11 mln newly issued\nWichita common shares. Wichita presently has about 3.6 mln\nshares outstanding.\n    The transaction calls for the issuance of 1-1/2 shares of\nWichita common for each outstanding Fountain share.\n    Wichita also said it made a number of refinan [...]
+'ARGENTINE INFLATION ROSE 6.5 PCT IN FEBRUARY Argentina\'s cost of living index\ngrew 6.5 pct in January, down from last month\'s 7.6 pct, the\nNational Statistics Institute said.\n    It said consumer prices rose 98.9 pct over the last 12\nmonths, against 81.9 pct inflation in the calendar year 1986.\n Reuter\n&#3;',0
+'PEMEX LOWERS FEBRUARY FAR EAST CRUDE OIL PRICES The Mexican state oil company\nPetroleos Mexicanos (PEMEX) said its Far East customers would\nbe charged 17.25 dlrs per barrel for Isthmus crude in February\nand 14.45 dlrs for the heavier Maya.\n    Pemex said this was 32 cts less than January Isthmus and 15\ncts less than January Maya.\n    Far East customers, primarily Japan which buys an average\n180,000 barrels per day of which 150,000 is Isthmus, pay\nretroactively while European and [...]
+'N.Z. DECEMBER QUARTER RETAIL SALES FALL 13.2 PCT Retail sales in the quarter ended\nDecember 31 fell a seasonally adjusted 13.2 pct compared with a\n7.8 pct rise in the September quarter and a 1.3 pct fall a year\nago period, the Statistics Department said.\n    Actual retail sales in the December quarter totalled 6.17\nbillion N.Z. Dlrs compared with 6.70 billion in the previous\nquarter and 6.10 billion a year ago period.\n    The largest decreases in the December quarter were recorde [...]
+'REPH ACQUISITION TO NEGOTIATE PESCH MERGER BID REPH Acquisition Co said its board\nappointed a special committee to negotiate the terms of an\noffer made earlier today by &lt;Pesch and Co> to merge with its\nRepublic Health Corp &lt;REPH> unit.\n    Pesch, through its Alpha Health Systems Corp unit, offered\nto acquire the 36 pct of Republic Health stock that it does not\nalready own.\n    Terms of Pesch\'s offer have not been disclosed.\n   \n Reuter\n&#3;',0
+'HUNT GROUP HAS COMDATA STAKE, SEEKS INFLUENCE An investor group led by members of\nthe Hunt family of Dallas, Texas, told the Securities and\nExchange Commission it has acquired a 6.2 pct stake in Comdata\nNetwork Inc &lt;CDN> and may try to influence company policy.\n    The investor group, led by Rosewood Financial Inc, said it\nopposes a company recapitalization plan worked out between\nComdata and Mason Best Co, a Texas investment firm, which last\nreported holding about 9.5 pct of  [...]
+'ARGENTINA-BRAZIL TRADE JUMPED 90 PCT IN 1986 Trade between Argentina and Brazil\njumped 90 pct in 1986 versus 1985, Foreign Minister Dante\nCaputo said.\n    Speaking to reporters, Caputo said the near doubling in\ntrade showed the \"tangible and immediate results\" of a wide-\nranging economic integration accord signed by the presidents of\nboth countries last July.\n    He said trade last year totalled 1.3 billion dlrs versus\n700 mln dlrs in 1985.\n    The accord provided for capital [...]
+'SANTA FE SOUTHERN PACIFIC APPEALS MERGER RULING Santa Fe Southern Pacific Corp will\nlater today formally ask the U.S. Interstate Commerce\nCommission (ICC) to reconsider its earlier rejection of the\nmerger of the holding company\'s railroad assets, a company\nspokesman said.\n    \"We expect to file papers late tonight\" asking the ICC to\nreopen the rail merger case, spokesman Rich Hall said in a\ntelephone interview from the company\'s Chicago headquarters.\n    The ICC had rejected [...]
+'E.A. VINER HOLDINGS LTD &lt;EAVKF> 4TH QTR LOSS Shr loss 10 cts vs profit seven cts\n    Net loss 918,000 vs profit 585,000\n    Revs 5,475,000 vs 4,430,000\n    YEAR\n    Shr profit 32 cts vs loss 24 cts\n    Net profit 2,909,000 vs loss 1,501,000\n    Revs 23.7 mln vs 15.0 mln\n    Note: 1986 4th qtr net includes 1.5 mln U.S. dlr, or 17 ct\nshr, writedown of stake in Heck\'s Inc &lt;HEX> and 300,000 U.S.\ndlr, or three ct shr, writedown of arbitrage positions. 1986\nfl-yr net includes [...]
+'CARPET FIRM UNIT CUTS ALLIED PRODUCTS&lt;ADP> STAKE A group led by GFI Nevada Inc, a\nsubsidiary of General Felt Industries, a Saddlebrook, N.J.\ncarpet maker, said it cut its stake in Allied Products Corp to\n169,888 shares, or 3.4 pct, from 288,652 shares, or 5.8 pct.\n    In a filing with the Securities and Exchange Commission,\nGFI said it sold 114,000 Allied Products common shares on March\n3 at 42 dlrs each and donated another 4,746 shares to two\nuniversities.\n    It said its de [...]
+'TALKS FAIL TO END BRAZILIAN SEAMEN\'S STRIKE Pay talks aimed at ending a\nweek-old national seamen\'s strike collapsed today and the\nstrike will continue, a union official said.\n    The walkout by Brazil\'s 40,000 seamen has idled 160 ships\nin various ports, Jorge Luis Leao Franco, a senior official of\nthe National Merchant Marine Union, told Reuters.\n    The strikers, who are seeking a 275 pct pay increase, have\nrejected offers of a 100 pct raise from the state oil company\nPetro [...]
+'SHEARSON HAS 5.4 PCT OF CHICAGO MILWAUKEE &lt;CHG> Shearson Lehman Brothers Inc, the\nbrokerage subsidiary of American Express Co &lt;AXP>, said it has\nacquired 131,300 shares of Chicago Milwaukee Corp, or 5.4 pct\nof its total outstanding common stock.\n    In a filing with the Securities and Exchange Commission,\nShearson said it bought the stake for 18.8 mln dlrs for\ninvestment purposes and has no intention of seeking control of\nthe company.\n Reuter\n&#3;',0
+'VINER &lt;EAVKF> VIABLE AFTER HECK\'S &lt;HEX> MOVE E.A. Viner Holdings Ltd said the earlier\nreported Chapter 11 bankruptcy filing of Heck\'s Inc &lt;HEX>, in\nwhich Viner holds 408,000 shares, would not materially affect\nViner\'s capital position or its ability to carry on its\nprofitable brokerage business.\n    Viner said its brokerage subsidiary, Edward A. Viner and Co\nhad regulatory capital of 24.5 mln U.S. dlrs at year-end 1986.\n    The company said Heck\'s Chapter 11 filing c [...]
+'TWA &lt;TWA> SUES USAIR &lt;U> OVER POISON PILL Trans World Airlines Inc said it filed\nsuit in Delaware Chancery Court against USAir Group Inc and its\nboard of directors seeking to invalidate its \"poison pill\"\nanti-takeover plan.\n    TWA vice president and general counsel Mark Buckstein said\nTWA also sought a declaratory judgement from the court that its\n52 dlr per share takeover offer for USAir would in no way\ninterfer with USAir\'s possible buyout of Peidmont Aviation Inc\n&l [...]
+'&lt;FOUR SEASONS HOTELS INC> YEAR NET Oper shr 99 cts vs 54 cts\n    Oper net 9,515,000 vs 3,449,000\n    Revs 509.3 mln vs 440.5 mln\n    Note: 1985 net excludes extraordinary gain of 1.2 mln dlrs.\n Reuter\n&#3;',0
+'&lt;IVEY PROPERTIES INC> RAISES QUARTERLY DIVIDEND Ivey Properties Inc said it\nraised its quarterly dividend to 18 cts a share from 14 cts and\ndeclared both an extra dividend of 27 cts a share and a 50 pct\nstock dividend.\n    It said the dividends will be paid April one to\nshareholders of record March  16.\n    For the stock dividend, Ivey said it will pay for\nfractional shares at 25 dlrs per share.\n   \n Reuter\n&#3;',0
+'MEXICO SUSPENDS OVERSEAS COFFEE SALES Mexico has temporarily suspended\noverseas coffee sales due to falling prices triggered by the\nfailure of the International Coffee Organisation (ICO) meeting\nto agree a quota system at its latest meeting, the official\nNotimex news agency said.\n    \"We\'re just waiting a while for prices to improve,\" an\nunidentified Mexican trader told the agency.\n    Mexico has already sold 80 pct of its export coffee\nproduced in the year to last September, [...]
+'GROUP BOOSTS SCANDINAVIA FUND &lt;SCF> STAKE A shareholder group led by a Swedish\ninvestment firm and a Norwegian investor said it raised its\nstake in the Scandinavia Fund Inc to 2,165,300 shares, or 33.3\npct of the total, from 1,978,900 shares, or 30.5 pct.\n    In a filing with the Securities and Exchange Commission,\nthe group, which includes Ingemar Rydin Industritillbehor AB,\nthe firm, and investor Erik Martin Vik, said it bought the\nadditional shares between Feb 24 and March  [...]
+'OFFSHORE INVESTMENT FIRM UPS FRANCE FUND STAKE VBI Corp, an offshore-based\ninvestment firm, told the Securities and Exchange Commission it\nraised its stake in the France Fund Inc &lt;FRN> to 681,800\nshares, or 9.1 pct of the total, from 551,000, or 7.4 pct.\n    VBI, which is based in Turks and Caicos Islands, the\nBritish West Indies, said it bought the additional shares\nbetween Feb 24 and March 4.\n    It has said it bought its France Fund stake for investment\npurposes only.\n Re [...]
+'COSTA RICA OPTIMISTIC ABOUT REFORMING ICO Costa Rica\'s economy minister said he\nsees new hope for winning changes in the International Coffee\nOrganisation system of export quotas.\n    Minister Luis Diego Escalante, who serves as president of\nthe Costa Rican Coffee Institute, said he was hopeful because\nof the support offered Costa Rica and other smaller producing-\nnations by such major consumers as the United States, Britain\nand the Netherlands at last week\'s ICO meeting in lon [...]
+'U.S. MONEY GROWTH SLOWS SHARPLY, ECONOMISTS SAY U.S. money supply growth is slowing\ndown rapidly, and some economists believe that all three of the\nFederal Reserve\'s main monetary aggregates may even have\ncontracted in February.\n    A contraction is unlikely to be a major concern for the\nFed, especially as it would follow a long period of torrid\ngrowth, but it could give the central bank extra leeway in the\nweeks ahead if it decided that a relaxation of monetary policy\nwas just [...]
+'ECUADOR\'S CONSUMER PRICES RISE 2.5 PCT IN FEBRUARY Ecuador\'s consumer price index rose 2.5\npct in February to 562.4 (base 1978), the National Statistics\nand Census Institute said.\n    The rise compared to a 1.8 pct rise in January and a 2.5\npct rise in February 1986.\n    The Institute said accumulated overall inflation for the\nfirst two months of this year was 4.0 pct compared to 5.0 pct\nfor the same period last year.\n    Inflation for the 12 months ending February 1987 was 25 [...]
+'WEST GERMAN FISHMEAL IMPORTS HIGHEST IN 15 YEARS West German gross fishmeal imports rose\n60,260 tonnes, or 14.6 pct, last year to 471,891 tonnes, the\nhighest level since 1972, trade sources said.\n    Re-exports fell by 6.6 pct, resulting in a surge in net\nimports from 175,901 to 251,708 tonnes, an increase of 43 pct.\n    Total West German consumption was estimated at around a\nhigh 287,000 tonnes, largely reflecting attractive prices. The\nsources, however, could not give comparati [...]
+'TPA OF AMERICA INC &lt;TPS> 4TH QTR LOSS Shr loss five cts\n    Net loss 753,000\n    Revs 8,932,000\n    Avg shrs 16.0 mln\n    Year\n    Shr loss seven cts\n    Net loss 995,000\n    Revs 27.9 mln\n    Avg shrs 14.8 mln\n    NOTE: Company started operating in August 1985.\n    Results reflect change in fiscal year from November 30 end.\n Reuter\n&#3;',0
+'SILVER STATE MINING &lt;SSMC> SEES PRODUCTION RISE Silver State Mining Corp said it expects\ngold production this year to be more than double 1986\'s 17,458\nounces.\n    The company\'s 1985 production was 2,050 ounces.\n Reuter\n&#3;',0
+'MCGRATH RENTCORP &lt;MGRC> SEES NET RISING McGrath RentCorp said as a\nresult of its December acquisition of Space Co, it expects\nearnings per share in 1987 of 1.15 to 1.30 dlrs per share, up\nfrom 70 cts in 1986.\n    The company said pretax net should rise to nine to 10 mln\ndlrs from six mln dlrs in 1986 and rental operation revenues to\n19 to 22 mln dlrs from 12.5 mln dlrs.\n    It said cash flow per share this year should be 2.50 to\nthree dlrs.\n Reuter\n&#3;',0
+'SILVER STATE MINING CORP &lt;SSMC> 4TH QTR NET Shr one ct vs one ct\n    Net 528,790 vs 286,969\n    Revs 2,537,803 vs 773,729\n    Year\n    Shr seven cts vs one ct\n    Net 2,429,576 vs 404,394\n    Revs 6,726,327 vs 1,150,961\n Reuter\n&#3;',0
+'SIZZLER RESTAURANTS INTERNATIONAL INC &lt;SIZZ> NET Shr 15 cts vs 14 cts\n    Net 2,547,000 vs 2,242,000\n    Revs 56.7 mln vs 44.0 mln\n    Avg shrs 17.6 mln vs 15.6 mln\n    Nine mths\n    Shr 54 cts vs 54 cts\n    Net 9,249,000 vs 8,334,000\n    Revs 173.3 mln vs 134.3 mln\n    Avg shrs 17.1 mln vs 15.5 mln\n Reuter\n&#3;',0
+'MCANDREWS AND FORBES ARE OFFERING 18.50 DLRS PER SHARE FOR REVLON STOCK\n ',0
+'U.K. MONEY MARKET DEFICIT REVISED TO 550 MLN STG The Bank of England said it had revised\nits estimate of the shortage in the money market back to its\ninitial forecast of 550 mln stg.\n    At midsession the central bank changed the shortfall to 500\nmln and provided assistance worth 96 mln stg through bank bill\npurchases in bands one and two at established dealing rates.\n REUTER\n&#3;',0
+'DONEGAL GROUP INC &lt;DGIC> YEAR NET Shr six cts\n    Net 155,764\n    Revs 6,506,792\n    NOTE: Company formed in August 1986.\n Reuter\n&#3;',0
+'PETER MILLER APPAREL GROUP 3RD QTR JAN 31 LOSS Shr loss 28 cts vs profit seven cts\n    Net loss 931,000 vs profit 7,000\n    Revs 2.3 mln vs 2.0 mln\n    Nine mths\n    Shr loss 55 cts vs profit seven cts\n    Net loss 1,619,000 vs profit 185,000\n    Revs 7.7 mln vs 7.1 mln\n    NOTE: Shr figures adjusted for issue of 600,000 shares in\nOctober, 1986. Avg shrs not given.\n    Full name is &lt;Peter Miller Apparel Group Inc>.\n Reuter\n&#3;',0
+'KRELITZ INDUSTRIES INC &lt;KRLZ> 3RD QTR NET Period ended Jan 31\n    Shr seven cts vs 14 cts\n    Net 136,000 vs 274,000\n    Sales 48.4 mln vs 38.2 mln\n    Nine mths\n    \n    Shr 30 cts vs 17 cts\n    Net 573,000 vs 328,000\n    Sales 140.0 mln vs 102.4 mln\n    NOTE: Prior year period ended Sept 30\n    Comparable periods reflect change in fiscal yearend to\nApril from December\n Reuter\n&#3;',0
+'DONEGAL &lt;DGIC> PROJECTS FULL YEAR RESULTS Donegal Group Inc, which today\nreported earnings of 155,764 dlrs on revenues of 6,506,792 dlrs\nfor the period from August 26 startup through the end of 1986,\nsaid it expects \"much improved\" profits for the full year 1987\non revenues of about 32 mln dlrs.\n Reuter\n&#3;',0
+'MACANDREWS AND FORBES HOLDINGS BIDS FOR REVLON McAndrews and Forbes Holdings Inc said\nit will offer 18.50 dlrs per share for all of Revlon Group\nInc\'s &lt;REV> outstanding common stock.\n    McAndrews said terms of the acquisition have not been\ndetermined and are subject to the acquisition of financing.\n    Revlon closed yesterday on the New York Stock Exchange at\n14-3/4.\n    The company said it would bid for all stock it or its\naffiliates do not already own.\n    McAndrews and  [...]
+'HOG AND CATTLE SLAUGHTER GUESSTIMATES Chicago Mercantile Exchange floor\ntraders and commission house representatives are guesstimating\ntoday\'s hog slaughter at about 300,000 to 305,000 head versus\n292,000 week ago and 316,000 a year ago.\n    Saturday\'s hog slaughter is guesstimated at about 30,000 to\n55,000 head.\n    Cattle slaughter is guesstimated at about 128,000 to\n130,000 head versus 129,000 week ago and 119,000 a year ago.\n    Saturday\'s cattle slaughter is guesstimated [...]
+'BOREALIS IN GOLD EXPLORATION PACT WITH FARAWAY &lt;Borealis Exploration Ltd> said\nit entered into an agreement with &lt;Faraway Gold Mines Ltd> of\nVancouver, British Columbia, under which Faraway will acquire\nan interest in Borealis\'s Whale Cove Gold Property in the\nKeewatin district of the Northwest Territories.\n    Faraway will spend 1.5 mln dlrs on exploration over three\nyears and will hold 50 pct of the property until all expenses\nare paid out, when the interest will drop to [...]
+'U.K. MONEY MARKET GETS 350 MLN STG AFTERNOON HELP The Bank of England said it provided\nassistance worth 350 mln stg during the afternoon session which\ntakes total help so far today to 446 mln stg against a shortage\nestimated at around 550 mln stg.\n    The central bank purchased outright bank bills comprising\n120 mln stg in band one at 10-7/8 pct and 227 mln stg in band\ntwo at 10-13/16 pct. It also bought treasury bills worth one\nmln stg in band one and two mln stg in band two at  [...]
+'IMRE &lt;IMRE> SELLS STOCK TO EUROPEAN INSTITUTIONS IMRE Corp said it has received\ncommitments for a group of European institutions to buy about\n400,000 IMRE shares for 2,500,000 dlrs, with closing expected\non March 16.\n                                                   \n Reuter\n&#3;',0
+'INSTRUMENTARIUM ACQUIRES NOKIA SUBSIDIARY Finland\'s medical group Instrumentarium\nOy &lt;INMR.HE> said it has acquired electronics components\nimporters and marketers &lt;Ferrado Oy> and &lt;Insele Oy>,\nsubsidiaries of Finland\'s electronics group Nokia Oy &lt;NOKS.HE>.\n    It said in a statement Ferrado and Insele will be merged\ninto Instrumentarium\'s Professional Electronics and Information\nSystems Division.\n    It did not disclose a price for the acquisitions but said\nit had [...]
+'FUQUA INDUSTRIES INC &lt;FQA> SETS QUARTERLY Qtly div six cts vs six cts prior\n    Pay April One\n    Record March 20\n Reuter\n&#3;',0
+'&lt;M-CORP INC> YEAR DEC 28 NET Shr 73 cts vs 55 cts\n    Net 1,691,878 vs 1,117,747\n    Revs 7.1 mln vs 4.9 mln\n    Avg shrs 2.3 mln vs 2.0 mln\n    NOTE: Share results reflect two-for-one stock split in\nJune, 1986.\n Reuter\n&#3;',0
+'DOME PETROLEUM REAFFIRMS DOME MINES STAKE FOR SALE AT RIGHT PRICE, SPOKESMAN SAYS\n ',0
+'COMMONWEALTH MORTGAGE &lt;CCMC> BUYS ARMONK FIRM Commonwealth Mortgage Co said\nit purchased Westfiar Funding Corp of Armonk, N.Y., for an\nundisclosed amount of cash.\n    Commonwealth said Westfair originated 60 mln dlrs of\nresidential mortgage loans during 1986.\n Reuter\n&#3;',0
+'&lt;M-CORP INC> RAISES DIVIDEND Semi-annual div 7-1/2 cts vs five cts\n    Pay April nine\n    Record March 26\n Reuter\n&#3;',0
+'PERMIAN &lt;PBT> RAISES CRUDE PRICES Permian Corp said that effective march 5\nit raised its posted prices for crude oil 50 cts a barrel.\n    The raise brought its posted prices for West texas\nIntermediate up by 50 cts to 17.00 dlrs a barrel.\n    West Texas Sour was also raised by 50 cts to 17.00 dlrs a\nbarrel.\n    A Permian spokesman said that the South Louisiana sweet\nposted prices was also raised 50 cts a barrel to 17.35 dlrs.\n Reuter\n&#3;',0
+'AMERICAN STORES CO 4TH QTR SHR 1.57 DLRS VS 1.60 DLRS\n ',0
+'CENTRAL SPRINKLER CORP &lt;CNSP> 1ST QTR JAN 31 NET Shr 19 cts vs 20 cts\n    Shr diluted 18 cts vs 18 cts\n    Net 578,000 vs 554,000\n    Sales 10.7 mln vs 10.4 mln\n    Avg shrs 3,006,s302 vs 2,795,820\n    Avg shrs diluted 4,271,488 vs 4,081,534\n Reuter\n&#3;',0
+'&lt;FAR WEST INDUSTRIES INC> RAISES DIVIDEND Annual div four cts vs 1.76 cts\n    Pay March 20\n    Record March 15\n Reuter\n&#3;',0
+'&lt;FAR WEST INDUSTRIES INC> YEAR NET Shr 23 cts vs 17 cts\n    Net 761,000 vs 490,000\n    Revs 7.3 mln vs 4.5 mln\n\n Reuter\n&#3;',0
+'U.K. OFFICIALS STUDY SALMONELLA/CALF FEED LINK U.K. Officials are studying the possible\nlink between the use of antibiotics in calf feeds and the\nspread of drug-resistant strains of salmonella in humans, a\nMinistry of Agriculture official said.\n    A study published in the New England Journal of Medicine\nyesterday stated that the spread of an unusual strain of\nsalmonella that is resistant to the drug chloramphenicol had\nbeen shown to be linked to farms that used the drug to promo [...]
+'CANADA RULES U.S. CORN INJURING CANADIAN FARMERS, UPHOLDS DUTY \n ',1
+'DOME&lt;DMP> REPEATS DOME MINES&lt;DM> STAKE FOR SALE Dome Petroleum Ltd\'s 23.2 pct stake of\ngold producer Dome Mines Ltd continues to be for sale \"at the\nright price,\" spokesman David Annesley said in response to an\ninquiry.\n    Reaffirming remarks made last year by chairman Howard\nMacdonald, Annesley said the company is considering selling its\nstake in Dome Mines.\n    Concerning Dome Petroleum\'s 42 pct stake in &lt;Encor Energy\nCorp Ltd>, Annesley said \"Encor is a strateg [...]
+'CANADA RULES U.S. CORN INJURING CANADIAN  FARMERS, UPHOLDS DUTY\n ',1
+'NEW DUTCH SPECIAL ADVANCES ANNOUNCED AT 5.3 PCT The Dutch central bank announced new\neleven-day special advances at an unchanged 5.3 pct to aid\nmoney market liquidity, covering the period March 9 to 20.\n    The amount will be set at tender on Monday March 9 between\n0800 and 0830 GMT. The new facility will replace the current\n4.8 billion guilders of seven-day advances expiring Monday.\n    Money dealers estimated today\'s money market shortage at 11\nto 11.25 billion guilders, barel [...]
+'SELECTERM INC &lt;SLTM> 4TH QTR LOSS Shr loss not given vs profit 16 cts\n    Net loss 309,000 vs profit 426,000\n    Revs 6,358,000 vs 6,747,000\n    Year\n    Shr profit 27 cts vs profit 76 cts\n    Net profit 713,000 vs profit 2,021,000\n    Revs 24.9 mln vs 27.1 mln\n    NOTE: Pretax net profits 113,000 dlrs vs 824,000 dlrs in\nquarter and 1,863,000 dlrs vs 3,606,000 dlrs in year.\n Reuter\n&#3;',0
+'STONE CONTAINER &lt;STO> COMPLETES WAITING PERIOD Stone Container Corp said it and\nSouthwest Forest Industries Inc &lt;SWF> completed all waiting\nperiod requirements under the Hart-Scott-Rodino Anti-Trust\nImprovements Act of 1976.\n    Stone said it will proceed with its previously proposed\nacquisition of Southwest.\n Reuter\n&#3;',0
+'ICO QUOTA TALKS FAILURE PARALYSE HAMBURG MARKET The failure of International Coffee\nOrganization talks on the reintroduction of quotas has\nparalysed business on the Hamburg green coffee market in the\npast week, trade sources said.\n    There was only sporadic activity for spot material, which\nwas mainly requirement buying, they said, adding that\npre-registered coffees were no longer available.\n    They said they expected Brazil and Colombia to open export\nregistrations for May sh [...]
+'RESIDENTIAL MORTGAGE INVESTMENTS INC &lt;RMI>PAYOUT Qtly div 24 cts vs 24 cts prior\n    Pay April 10\n    Record March 31\n Reuter\n&#3;',0
+'SOUTHWEST &lt;SWF>, STONE &lt;STO> COMPLY FOR MERGER Southwest Forest Industries said\nit and Stone Container Corp have complied with all federal\nwaiting period requirements for Stone\'s proposed 32.25 dlr per\nshare cash acquisition of Southwest.\n    Southwest currently has 12.3 mln shares outstanding. The\ncompanies entered into a merger agreement on January 27, and\nmade their initial findings with the Department of Justice and\nthe Federal Trade Commission on February three.\n     [...]
+'OKC LIMITED PARTNERSHIP &lt;OKC> SETS LOWER PAYOUT OKC Limited Partnership said it will make\na five ct per share distribution to unitholders, down from 15\ncts in December and payable March 30 to holders of record March\n18.\n    The partnership said the payout is the largest quarterly\ncash distribution allowable under terms of its letter of credit.\n Reuter\n&#3;',0
+'BIOTECH RESEARCH LABORATORIES INC &lt;BTRL> 4TH QTR Shr profit one ct vs loss seven cts\n    Net profit 63,761 vs loss 43,006\n    Revs 1,961,219 vs 1,413,859\n    Year\n    Shr loss seven cts vs loss 20 cts\n    Net loss 380,273 vs loss 1,108,151\n    Revs 6,245,012 vs 5,368,522\n    Shr out 5,950,000 vs 5,462,547\n Reuter\n&#3;',0
+'CANADA UPHOLDS COUNTERVAIL DUTY ON U.S. CORN The Canadian Import Tribunal ruled today\nsubsidized U.S. corn imports were injurious to Canadian growers\nand upheld a countervailing duty of 84.9 U.S. cts a bushel set\nearlier this year.\n    The ruling is the result of trade action launched in 1985\nby the Ontario Corn Producers Association that contended U.S.\nsubsidies were driving American corn prices below Canadian\nproduction costs.\n    A spokesman for the Department of Revenue said [...]
+'FEBRUARY U.S. JOBS GAINS SHOW STRONGER ECONOMY Momentum in th U.S. economy may be\npicking up given solid across-the board increases in the\nFebruary U.S. employment report, economists said.\n    U.S. non-farm payroll employment rose 337,000 in February,\ntwice what the financial markets expected. This follows a\n319,000 gain in January, revised down from a previously\nreported 448,000 increase.\n    \"Even if you look at January and February together, this is\nstill a much stronger rep [...]
+'AMERICAN STORES CO &lt;ASC> 4TH QTR NET Shr 1.57 dlrs vs 1.60 dlrs\n    Net 55.7 mln vs 56.5 mln\n    Revs 3.7 billion vs 3.6 billion\n    Year\n    Shr 3.79 dlrs vs 4.11 dlrs\n    Net 144.5 vs 154.5 mln\n    Revs 14.0 billion vs 13.9 billion\n    NOTE: 1986 4th qtr and yr per shr amts includes reduction\nof 15 cts per shr for establishment of reorganization reserves.\nTax increase reduced 1986 yr per shr by 26 cts.\n Reuter\n&#3;',0
+'BAKER SAYS G-6 PACT JUST A START Treasury Secretary James Baker said\nthe agreement among industrial nations in Paris last month is\nonly a start in Washington\'s drive to intensify economic\ncooperation among leading countries.\n    In a speech to the National Newspaper Association, Baker\nsaid \"the six steps beginning with the Plaza Agreement and\nculminating in the Paris Accord, are only a start.\"\n    He added \"we see our role as a steward of a process in which\nwe sit down with  [...]
+'TREASURY\'S BAKER FORECASTS REDUCTION IN JAPANESE TRADE SURPLUS THIS YEAR\n ',0
+'TREASURY\'S BAKER SAYS THERE HAS BEEN NO CHANGE IN U.S. POLICY ON DOLLAR\n ',0
+'FED NOT EXPECTED TO ACT IN MONEY MARKETS The Federal Reserve is unlikely to\noperate in the U.S. government securities market during its\nusual intervention period this morning, economists said.\n    Fed funds opened comfortably at 5-15/16 pct and remained at\nthat level. Yesterday Fed funds averaged 5.99 pct.\n Reuter\n&#3;',0
+'BOSTON BANCORP &lt;SBOS> SETS TWO FOR ONE SPLIT Boston Bancorp said its board declared a\ntwo-for-one stock split, payable March 31, record March 17.\n Reuter\n&#3;',0
+'BAKER DENIES CHANGE IN U.S. POLICY ON DOLLAR Treasury Secretary James Baker said\nthere has been no change in U.S. policy on the value of the\ndollar.\n    Baker, when asked if the policy was changed in view of\ncomments yesterday by a senior Commerce Department official who\nsaid he thought the Japanese yen was undervalued against the\ndollar by 10 to 15 pct, replied, \"No.\"\n    Yesterday Robert Ortner, Undersecretary of Commerce for\nEconomic Affairs, said he thought the yen was und [...]
+' &#2;\nCORRECTION - MACANDREWS AND FORBES HOLDINGS\n    In New York story headlined \"MacAndrews and Forbes Holdings\nbids for Revlon,\" pls read in headline and first paragraph,\n\"MacAndrews and Forbes considers bid for Revlon,\" and in first\nparagraph, \"MacAndrews and Forbes holdings Inc said it is\nconsidering making a proposal.\" (Corrects from \"bids for\nRevlon,\" in headline and \"will offer\"in first paragraph)\n&#3;\n\n',0
+'SOME SHIPPING RESTRICTIONS REMAIN ON RHINE Limited shipping restrictions due to high\nwater remain in force on parts of the West German stretch of\nthe Rhine river between the Dutch border and the city of Mainz\nbut most are expected to be lifted this weekend.\n    water authority officials said The restrictions, caused by\nhigh water levels, include speed limits and directives to keep\nto the middle of the river to prevent damage to the river\nbanks. The high water was expected to rece [...]
+'HAWKER SIDDELEY OFFER FOR CLAROSTAT &lt;CLR> ENDS &lt;Hawker Siddeley Group PLC>\'s offer of\n74 dlrs a share for all of Clarostat Mfg Co Inc\'s stock was\nscheduled to expire at 2400 EST yesterday.\n    Company officials were unavailable for comment as to why\nthe American Stock Exchange had stopped trading in Clarostat\'s\nstock for a pending news announcement.\n Reuter\n&#3;',0
+'TAFT &lt;TFB> GIVEN DEADLINE ON BUYOUT PROPOSAL Narragansett Capital Inc &lt;NARR>\nsaid it and Dudley S. Taft have requested a response from Taft\nBroadcasting Co by March 12.\n    Earlier today, Taft Broadcasting said Taft, the company\'s\nvice chairman, and Narragansett had offered 145 dlrs for each\nof Taft\'s 9.2 mln outstanding shares.\n    The company said the offer is conditioned on approval of\nits board, but a spokesman declined comment on whether or not\nthe board has schedul [...]
+'&lt;PETER MILLER APPAREL GROUP INC> 3RD QTR LOSS period ended January 31\n    Shr loss 28 cts vs profit seven cts\n    Net loss 931,000 vs profit 7,000\n    Sales 2,303,000 vs 2,006,000\n    Nine mths\n    Shr loss 55 cts vs profit seven cts\n    Net loss 1,619,000 vs profit 185,000\n    Sales 7,684,000 vs 7,059,000\n    Note: per share reflects issue of 600,000 shares in October\n1986.\n Reuter\n&#3;',0
+'SANTA FE SOUTHERN &lt;SFX> APPEALS MERGER RULING Santa Fe Southern Pacific Corp said it\nfiled a petition asking the U.S. Interstate Commerce Commission\nto reconsider its earlier rejection of the merger of the\nholding company\'s railroad assets.\n    The ICC had rejected in July the merger of the Santa Fe and\nSouthern Pacific Railroads on the grounds that it would reduce\ncompetition.\n    Santa Fe in its petition outlines an array of\npro-competitive agreements with other railroads  [...]
+'BAKER SEES LOWER JAPANESE TRADE SURPLUS U.S. Treasury Secretary James Baker\nsaid the Japanese trade surplus would begin to decline this\nyear.\n    He told the National Newspaper Association \"You\'re going to\nsee a reduction in the Japanese trade surplus -- some of it\nthis year\".\n    But he said the reduction would be due principally to the\nexchange rate shifts since the Plaza Agreement, and these\nshifts would take a long time to work their way through the\nsystem.\n Reuter\n&#3;',0
+'CINEPLEX ODEON CORP YEAR OPER SHR BASIC 1.04 DLRS VS 77 CTS\n ',0
+'MONFORT &lt;MNFT> SOARS ON ACQUISITION AGREEMENT Monfort of Colorado Inc soared 21-1/2\nto 75 in over-the-counter trading, responding to an\nannouncement late yesterday that the firm will be acquired by\nConagra Inc &lt;CAG>.\n    According to a letter of intent signed by both companies,\nConagra will offer 2.5 of its own shares for each of Monfort\'s\n4.3 mln outstanding shares.\n    Conagra fell one to 33 on the New York Stock Exchange.\nMonfort is an integrated beef and lamb producer [...]
+'NORDBANKEN TO AUCTION ITS FERMENTA SHARES Sweden\'s &lt;Nordbanken> banking group\nsaid it would sell the 4.2 mln B free shares deposited as loan\ncollateral by Fermenta AB\'s &lt;FRMS.ST> founder and former chief\nexecutive Refaat el-Sayed and it planned to buy them up itself.\n    The bank said the sale - by public auction on March 16 --\nwas because of a debtor\'s inability to repay an overdue loan.\n    The B free shares closed at 16.50 crowns on the bourse\'s\nunofficial list -- do [...]
+'UNITED INDUSTRIAL CORP &lt;UIC> 4TH QTR LOSS Shr loss 1.27 dlrs vs profit 43 cts\n    Net loss 17.0 mln vs profit 5,667,000\n    Sales 67.8 mln vs 70.1 mln\n    Year\n    Shr loss 69 cts vs profit 2.18 dlrs\n    Net loss 9,174,000 vs profit 29.1 mln\n    Sales 272.5 mln vs 269.4 mln\n    Avg shrs 13.3 mln vs 13.4 mln\n    NOTE: 1986 net includes tax credits of 14.5 mln dlrs in\nquarter and 8,408,000 dlrs in year.\n    1985 year net includes 616,000 dlr loss from discontinued\noperations [...]
+'&lt;CINEPLEX ODEON CORP> YEAR NET Oper shr basic 1.04 dlrs vs 77 cts\n    Oper shr diluted 89 cts vs 60 cts\n    Oper net 31.6 mln vs 12.5 mln\n    Revs 500.6 mln vs 170.9 mln\n    Avg shrs 29.1 mln vs 14.3 mln\n    Note: 1985 net excludes extraordinary gain of 1,756,000\ndlrs or 12 cts shr basic and eight cts shr diluted.\n    1986 net involves 53-week reporting period to reflect\nchange in yr-end to coincide with calendar yr.\n Reuter\n&#3;',0
+'MINE SAFETY APPLIANCES &lt;MNES> TO SELL UNIT Mine Safety Appliances Co said it\nagreed to sell its filter products division to Donaldson Co Inc\n&lt;DCI> for undisclosed terms.\n    It said the filter products unit will be relocated from its\nplant in Pennsylvania to a Donaldson facility in Illinois. It\nsaid it expects a number of the unit\'s 100 employees will be\noffered positions with Donaldson.\n Reuter\n&#3;',0
+'PROSPECT GROUP INC &lt;PROSZ> 4TH QTR LOSS Shr loss 10 cts vs loss 50 cts\n    Net loss 1,830,000 vs loss 3,584,000\n    Revs 40.7 mln vs 26.8 mln\n    Avg shrs 19.2 mln vs 7,115,847\n    12 mths \n    Shr profit 10 cts vs loss 91 cts\n    Net profit 1,422,000 vs loss 6,195,000\n    Revs 185.7 mln vs 126.9 mln\n    Avg shrs 14.8 mln vs 6,811,280\n    NOTES: In May 1986 Prospect raised 101,810,0000 dlrs from\nan initial public offering of common stock.\n    The company purchased in March [...]
+'FRANCE FUND INC &lt;FRN> SETS INITIAL DIVIDEND France Fund Inc said its board declared\nan initial dividend of 1.12 dlrs per share, payable April six,\nto holders of record March 20.\n    The fund said the dividend represents two cts per share for\nnet investment income realized during 1986 and 1.10 dlrs from\nnet taxable gains realized during the year.\n Reuter\n&#3;',0
+'HEINEKEN N.V. &lt;HEIN.AS> 1986 YEAR Pre-tax profit 513.2 mln guilders vs 545.5 mln\n    Net profit 285.3 mln guilders vs 265.4 mln\n    Consolidated net turnover 6.68 billion guilders vs 6.40\nbillion\n    Net profit per 25.00 guilder nominal share 11.11 guilders\nvs 10.33, taking into account one-for-three scrip issue last\nyear\n    Final dividend two guilders vs same, making total 3.50\nguilders vs same\n REUTER\n&#3;',0
+'NATIONAL SECURITY INSURANCE CO &lt;NSIC> 4TH QTR Oper shr loss 15 cts vs profit 57 cts\n    Oper net loss 151,000 vs profit 570,000\n    Year\n    Oper shr profit 2.08 dlrs vs loss 12 cts\n    Oper net profit 2,122,000 vs loss 127,000\n    NOTE: Net excludes realized capital loss 19,000 dlrs vs\ngain 896,000 dlrs in quarter and gains 1,646,000 dlrs vs\n1,331,000 dlrs in year.\n    1986 net both periods excludes tax credit 1,288,000 dlrs.\n Reuter\n&#3;',0
+'CYPRUS MINERALS &lt;CYPM> NAMED IN SUITS Cyprus Minerals Co said along with about\n40 other companies, it has been named a defendant in 23 product\nliability lawsuits filed in California by individual\ntireworkers aleging injury as a result of exposure to talc and\nother products.\n    It said other suits are expected to be brought.\n    Cyprus, which produces talc, said it has significant\nfactual and legal defenses and substantial insurance coverage\nand does not expect the suits to h [...]
+'DONALDSON &lt;DCI> TO BUY MINE SAFETY &lt;MNES> UNIT Donaldson Co Inc said it reached an\nagreement to buy the assets of the Filter Products Division of\nMine safety Appliances Co for undisclosed terms.\n    It said Filter Products will operate as part of Donaldson\'s\nIndustrial Group and its manufacturing operations will be\nrelocated to Dixon, Ill., from Evans City, Pa.\n    Donaldson said the acquisition complements its\nmicrofiltration business and internal research and development [...]
+'ARUNDEL CORP &lt;ARL> 4TH QTR NET Shr 1.73 dlrs vs 1.66 dlrs\n    Net 3,637,000 vs 3,789,000\n    Revs 27.6 mln vs 26.6 mln\n    Year\n    Shr 3.47 dlrs vs 2.34 dlrs\n    Net 7,815,000 vs 5,340,000\n    Revs 94.3 mln vs 81.9 mln\n Reuter\n&#3;',0
+'GULF STATES UTILITIES &lt;GSU> GETS QUALIFIED AUDIT Gulf States Utilities Co said\nauditor Coopers and Lybrand has issued a qualified opinion on\n1986 financial statements.\n    Gulf States said the audit opinion satated that without\nsufficient rate increases or funds from other sources, Gulf\nstates may be unable to maintain its financial viability,\nwhich is necessary to permit the realization of its assets and\nthe liquidation of its liabilities in the ordinary course of\nbusiness.\ [...]
+'FED SETS ONE BILLION DLR CUSTOMER REPURCHASE, FED SAYS\n ',0
+'MIDMISSISSIPPI RIVER OPENS TODAY FOR SEASON The Mississippi River is now open for\nbarge traffic up to the Twin Cities in Minnesota after repairs\nwere completed and the first barges moved upstream through Lock\nand Dam 20 near Quincy, Ill at 0600 CST today, an Army Corps of\nEngineers spokesman said.\n    About 14 to 15 inches of ice were reported between locks\nthree and four on the upper Mississippi River, but other\nsections were generally free of ice, the spokesman said.\n    Midwe [...]
+'FED SETS ONE BILLION DLR CUSTOMER REPO The Federal Reserve entered the\ngovernment securities market to arrange one billion dlrs of\ncustomer repurchase agreements, a spokesman for the New York\nFed said.\n    Fed funds were trading at 5-15/16 pct at the time of the\nindirect injection of temporary reserves, dealers said.\n Reuter\n&#3;',0
+'GERMAN CASH IN CIRCULATION UP AT FEBRUARY\'S CLOSE Cash in circulation in West Germany\nrose by 2.8 billion marks in the last week of February to 121.5\nbillion, a gain of 8.3 pct over the same month last year, the\nBundesbank said.\n    Cash in circulation is one of two components of the West\nGerman money supply which the German central bank is targeting\nto grow between three and six pct this year.\n    Gross currency reserves in the week rose by 200 mln marks\nto 109.5 billion. Fore [...]
+'SUN ELECTRIC CORP &lt;SE> 1ST QTR JAN 31 NET Shr profit 15 cts vs loss six cts\n    Net profit 1,051,000 vs loss 381,000\n    Revs 50.8 mln vs 41.8 mln\n    Avg shrs 7,033,00 vs 6,557,000\n    NOTE: 1987 net includes tax credits equal to six cts vs one\ncent in 1986.\n Reuter\n&#3;',0
+'ECUADOR SAYS SUSPENDS OIL EXPORTS DUE EARTHQUAKE Ecuador today suspended its crude oil\nexports indefinitely due to an earthquake last night that\ndamaged pumping and crude transport installations, an Energy\nand Mines MInistry statement said.\n    It said the state oil firm Corporacion Estatal Petrolera\nEcuatoriana (CEPE) notified foreign customers that it was\ndeclaring force majeure on its crude exports due to the tremor.\n    Ecuador\"s OPEC oil output quota is 210,000 barrels per  [...]
+'LEASEWAY TRANSPORTATION CORP &lt;LTC> 4TH QTR LOSS Oper shr loss 39 cts vs profit 62 cts\n    Oper net loss 4,628,000 vs profit 7,256,000\n    Revs 338.1 mln vs 327.9 mln\n    Year\n    Oper shr profit 1.12 dlrs vs profit 1.88 dlrs\n    Oper net profit 13.2 mln vs 22.2 mln\n    Revs 1.32 billion vs 1.29 billion\n    NOTE: Net excludes gains from discontinued leasing\noperations of 37.6 mln dlrs vs 40.3 mln dlrs in year and 32.6\nmln dlrs vs 34.3 mln dlrs in quarter.  Results restated fo [...]
+'NCH CORP &lt;NCH> 3RD QTR JAN 31 NET Shr 51 cts vs 44 cts\n    Net 4,710,000 vs 4,086,000\n    Sales 109.2 mln vs 98.2 mln\n    Nine mths\n    Shr 1.62 dlrs vs 1.39 dlrs\n    Net 15.0 mln vs 13.6 mln\n    Sales 314.6 mln vs 279.7 mln\n Reuter\n&#3;',0
+'NATIONWIDE HAD 1986 PROPERTY-CASUALTY LOSS &lt;Nationwide Mutual Insurance Co>\nsaid its property-casualty companies had a net loss of 56 mln\ndlrs last year while its life insurance operations earned 66.8\nmln dlrs.\n    Nationwide said its property-casualty group, the\nfourth-largest U.S. property-casualty insurer had a 106 mln dlr\nloss in 1986. Nationwide Life Insurance Co earned 62.8 mln dlrs\nin 1985, with last year\'s profit including record capital gains\nof 14.4 mln dlrs, up fr [...]
+'SUN &lt;SUN> RAISES HEATING OIL BARGE PRICE Sun Co\'s Sun Refining and Marketing\nsubsidiary said it increased the price it charges contract\nbarge customers for heating oil in New York harbor 0.50 cent a\ngallon, effective today.\n    They said the 0.50 cent increase brings Sun\'s contract\nbarge price to 49 cts. The recent price hike represents the\nfifth this week, totalling 4.75 cts. The increases are\nfollowing sharp spot and futures price rises, the company said.\n Reuter\n&#3;',0
+'FRENCH PRIMARY BOND MARKET SHOWS NEW SPARKLE The French primary bond market is showing\nsigns of renewed effervescence after several weeks of lethargy\nand the trend is expected to continue if hopes of imminent\ninterest rate cuts are fulfilled, market operators said.\n    The Bank of France is generally expected to give a signal\nto the market, possibly at the beginning of next week, by\nannouncing a quarter point cut in its intervention rate, which\nhas stood at eight pct since Januar [...]
+'FIRST WOMEN\'S BANK INVESTOR GROUP OFFER EXPIRES The investor group owning about 42 pct\nof the outstanding capital stock of &lt;The First Women\'s Bank>\nsaid a cash tender offer for the bank\'s remaining outstanding\nshares at 11 dlrs per share expired on March three.\n    The investors said about 132,000 shares, or about 20 pct of\nthe outstanding, had been tendered.\n Reuter\n&#3;',0
+'COMPUTER MEMORIES INC &lt;CMIN> 3RD QTR LOSS Period ended December 31.\n    Shr loss nine cts vs loss 1.92 dlrs\n    Net loss 950,000 vs loss 21,334,000\n    Revs 580,000 vs 22.2 mln\n    Nine Mths\n    Shr loss six cts vs loss 1.23 dlrs\n    Net loss 694,000 vs loss 13,710,000\n    Revs 5,129,000 vs 111.9 mln\n    Note: Current qtr includes tax loss of 118,000 vs loss of\n476,000 dlrs.\n Reuter\n&#3;',0
+'TRENWICK GROUP INC &lt;TREN> 4TH QTR NET Oper shr profit 18 cts vs loss four cts\n    Oper net profit 1,847,000 vs loss 282,000\n    Revs 25.9 mln dlrs vs 8,626,000 drs\n    12 mths\n    Oper shr profit 39 cts vs loss 24 cts\n    Oper net profit 3,262,000 vs loss 1,555,000\n    revs 67.5 mln vs 27.9 mln dlrs.\n    NOTE: 1986 qtr and year excludes investment gains of\n1,541,000 and 1,865,000, respectively, and 1985 qtr and year\nincludes investment gains of 301,000 dlrs and 1,424,000.\n  [...]
+'IMF URGES BELGIUM TO MAKE FURTHER SPENDING CUTS The Belgian government, which\nintroduced large-scale public spending reductions last year,\nhas been told by an International Monetary Fund team there is\nscope for further cuts in 1988.\n    The suggestion is contained in the preliminary conclusions\nof the annual IMF consultations with Belgium on its economic\npolicy, a copy of which was distributed to journalists at the\nweekly press conference following meetings of the cabinet.\n    T [...]
+'BUSH &lt;BSH> REVISES 4TH QTR, YEAR RESULTS UP Bush Industries Inc said that\nafter an audit it has revised upwards its 1986 fourth quarter\nand year end results. On February 12 it reported unaudited\nresults.\n    Under the audited amounts, 1986 fourth quarter income was\n1,098,978 mln dlrs, or 55 cts a share. The unaudited income for\nthe period was 1,014,000, or 51 cts per share.\n    For the year, the audited amounts showed earnings of\n2,505,978, or 1.25 dlrs per share. The prior r [...]
+'FURNITURE (UFURF) UPS BENCH CRAFT (SOFA) STAKE Universal Furniture Ltd said in a\nfiling with the Securities and Exchange Commission that it had\nincreased its stake in Bench Craft Inc common stock to\n2,548,975 shares or 45.3 pct of the total outstanding.\n    Universal said its Universal Furniture Industries N.V. unit\nbought 235,750 Bench Craft shares March 4 in the\nover-the-counter market.\n Reuter\n&#3;',0
+'CLEVITE INDUSTRIES INC &lt;CLEV> 4TH QTR OPER LOSS Oper net loss 411,000 vs profit 875,000\n    Sales 69.7 mln vs 70.5 mln\n    Year\n    Oper net profit 6,258,000 vs profit 4,785,000\n    Sales 299.5 mln vs 297.2 mln\n    Note: Company made initial public offering in June, 1986.\nAssuming the offering had occurred on Jan. 1, 1986, operating\nnet income per share would have been 85 cts a share for 1986.\n    1986 oper net excludes one-time charge of 16.8 mln dlrs, or\n2.46 dlrs a share, [...]
+'CMS ADVERTISING SETS 3-FOR-2 STOCK SPLIT &lt;CMS Advertising Inc> said its\nboard has approved a three-for-two stock split in the form of a\ndividend payable March 30 to holders of record March 16.\n    The company said a similar split was paid December eight,\nleaving it with 2,344,200 shares outstanding.\n    CMS Advertising said the next split will result in a\nproportionate reduction in the exercise price of its stock\npurchase warrants to 1.67 dlrs a share from 2.50 dlrs.\n Reuter\ [...]
+'CIE FINANCIERE DE PARIBAS &lt;PARI.PA> 1986 YEAR Parent company net profit 385 mln francs vs 226.9 mln\n    Dividend five francs vs no comparison\n    Note - The financial and banking group was privatised by\nthe government in January this year.\n Reuter\n&#3;',0
+' &#2;\nCORRECTION - HEINEKEN 1986 YEAR\n    In item headlined \"HEINEKEN N.V. &lt;HEIN.AS> 1986 YEAR\" please\nread in first line pre-tax profit 513.2 mln guilders vs 454.5\nmln.\n    Corrects year ago comparison to 454.5 mln from 545.5 mln.\n Reuter\n&#3;\n\n',0
+'BANK OF ENGLAND PRESSURE HOLDS BASE RATES This week\'s Bank of England resistance to\nstrong market pressure for lower interest rates succeeded in\nholding bank base rates at 11 pct.\n    But at a cost of threatening the Chancellor of the\nExchequer Nigel Lawson\'s policy, stated at the end of the Paris\nGroup of Six meeting last month, that he wanted to see sterling\nbroadly stable about then prevailing levels, market sources\nsaid.\n    Since then, the pound has risen to 71.8 pct on i [...]
+'LYNG DISAPPOINTED BY CANADA CORN INJURY DECISION U.S. Agriculture Secretary Richard\nLyng said he is \"very disappointed\" by a Canadian government\nfinding that U.S. corn has injured Ontario Corn growers.\n    \"This action is not helpful in the context of the ongoing\nU.S.-Canada free trade talks or in the new round of\nmultilateral trade negotiations,\" Lyng said in a statement.\n    The Canadian government today said Ottawa would continue to\napply a duty of 84.9 cents per bushel on [...]
+'BANCROFT &lt;BCV> SHAREHOLDERS REBUKE ZICO OFFER Bancroft Convertible Fund Inc, the\ntarget of an unfriendly cash offer by &lt;Zico Investment Holdings\nInc>, said its shareholders approved proposals requiring a\n66-2/3 pct affirmative vote of all outstanding shares before\nfundamental changes in its status could be made.\n    Previously, only a simple majority of outstanding shares\nwas needed to change Bancroft\'s investment status from a\ndiversified to a non-diversified fund, among  [...]
+'INT\'L TOTALIZATOR &lt;ITSI> SEES BETTER 1ST QTR International Totalizator Systems Inc\nVice President of Finance Joel Graff said he expects to report\nan improved first quarter compared to the 377,000 dlr loss\nreported in the year ago quarter.\n    \"A profit looks quite favorable,\" Graff said.\n    Last week, the automated ticket systems supplier reported a\nloss of 1.2 mln dlrs for the 1986.\n    Graff said \"we invested heavily in 1986, which we believe\nwill result in higher futu [...]
+'BOC GROUP COMPLETES SALE OF UNIT TO CONTROLS &lt;BOC Group Inc>\'s Airco\nDistributor Gases finalized the sale of its Virginia-based gas\nappaturs business to &lt;Controls Corp of America>, a newly formed\ninvestment group organized by former Airco employees.\n    Under the terms of the sale, Airco said Controls will\ncontinue to make the gas apparaturs product line under the\nAirco brand name, marketing the products exclusively through\nthe Airco\'s distributor network.\n Reuter\n&#3;',0
+'U.S. WHEAT GROWERS WANT EEP TO SOVIET UNION The U.S. National Association of\nWheat Growers (NAWG) urged the Reagan administration offer the\nSoviet Union wheat under the export enhancement program (eep).\n    In a letter to Agriculture Secretary Richard Lyng, NAWG\nstated its \"strong support\" for an eep offer to Moscow.\n    \"We believe that a solid case continues to exist for Soviet\nEEP eligibility, and the recently announced and reported Soviet\npurchases of U.S. corn indicate a  [...]
+'ABN SAYS PROFIT RISE ENCOURAGING IN VIEW DOLLAR Algemene Bank Nederland N.V. &lt;ABNN.AS>\nchairman Robertus Hazelhoff said the bank\'s 10.3 pct increase\nin net 1986 profit to 527 mln guilders from 478 mln in 1985 was\nencouraging in view of the sharply lower dollar.\n    Hazelhoff, speaking at a press conference after the release\nof ABN\'s 1986 results, said a sharp decrease in foreign\nearnings had been compensated by a strong domestic performance,\nnotably in the securities busines [...]
+'CANADIAN MONEY SUPPLY M-1 RISES 217 MLN DLRS IN WEEK, BANK OF CANADA SAID\n ',0
+'CANADIAN MONEY SUPPLY RISES IN WEEK Canadian narrowly-defined money supply\nM-1 rose 217 mln dlrs to 32.80 billion dlrs in week ended\nFebruary 25, Bank of Canada said.\n    M-1-A, which is M-1 plus daily interest chequable and\nnon-personal deposits, rose 556 mln dlrs to 75.19 billion dlrs\nand M-2, which is M-1-A plus other notice and personal\nfixed-term deposit rose 651 mln dlrs to 176.87 billion dlrs.s\n    M-3, which is non-personal fixed term deposits and foreign\ncurrency deposi [...]
+'FRENCH GOVERNMENT TO STEP UP AID TO JOBLESS The government plans to go ahead with a\nthree billion franc package to help the long-term unemployed,\nwith the aim of guaranteeing social security payments to\neveryone becoming redundant, government officials said.\n    At present only about one-third of the country\'s 2.6 mln\njobless, corresponding to 10.9 pct of the workforce, receive\nunemployment benefit.\n    Prime Minister Jacques Chirac told a television\ninterviewer, \"As soon as t [...]
+'USSR WHEAT BONUS OFFER SAID STILL UNDER DEBATE The Reagan administration continues\nto debate whether to offer subsidized wheat to the Soviet\nUnion, but would need assurances from the Soviets that they\nwould buy the wheat before the subsidy offer would be made, a\nsenior U.S. Agriculture Department official said.\n    \"I think it still is under active debate whether or not it\nwould be advisable\" to make an the export enhancement offer to\nthe Soviets, Thomas Kay, administrator of t [...]
+'SUN ELECTRIC CORP &lt;SE> 1ST QTR JAN 31 OPER NET Oper shr profit nine cts vs loss seven cts\n    Oper net profit 628,000 vs loss 491,000\n    Sales 50.7 mln vs 41.8 mln\n    Avg shrs 7,033,000 vs 6,557,000\n    Note: Oper net excludes extraordinary profit of 423,000\ndlrs, or six cts a shr, and 110,000 dlrs, or one ct a share,\nrespectively, in 1987 and 1986 quarters, from utilization of\ntax loss carryforwards.\n Reuter\n&#3;',0
+'CANADA CORN DECISION UNJUSTIFIED - YEUTTER U.S. trade representative Clayton\nYeutter said Canada\'s finding announced today that U.S. corn\nimports injure Canadian farmers is \"totally unjustified.\"\n    \"U.S. corn exports to Canada are so small that it is\ninconceivable that they injure Canadian corn farmers by any\nreasonable measure,\" Yeutter said in a statement.\n    He said if other countries follow Canada\'s lead it could\nresult in \"a rash of protectionist actions throughout [...]
+'CETEC CORP &lt;CEC> 4TH QTR NET Oper shr two cts vs eight cts\n    Oper net 41,000 vs 153,000\n    Sales 7,456,000 vs 7,965,000\n    Year\n    Oper shr 22 cts vs 50 cts\n    Oper net 434,000 vs 1,103,000\n    Sales 31 mln vs 33.6 mln\n    Note: Current qtr and year figures exclude loss from\ndiscontinued operations of 384,000 dlrs, or 20 cts per share.\n    Prior qtr and year figures exclude losses from discontinued\noperations of 1.9 mln dlrs, or 88 cts per share and 2.3 mln\ndlrs, or  [...]
+'RICHTON INTERNATIONAL CORP &lt;RIHL> 3RD QTR JAN 31 Shr 18 cts vs 39 cts\n    Net 507,000 vs 762,000\n    Sales 11.3 mln vs 11.7 mln\n    Avg shrs 2,789,000 vs 1,961,000\n    Nine mths\n    Shr 39 cts vs 90 cts\n    Net 1,076,000 vs 1,752,000\n    Sales 32.9 mln vs 33.3 mln\n    Avg shrs 2,771,000 vs 1,955,000\n Reuter\n&#3;',0
+'VALTEK INC &lt;VALT> 3RD QTR JAN 31 NET Shr 18 cts vs 19 cts\n    Net 400,413 vs 421,451\n    Revs 9,343,228 vs 8,213,449\n    Nine mths\n    Shr 39 cts vs 46 cts\n    Net 853,891 vs 1,011,999\n    Revs 24.6 mln vs 22.3 mln\n Reuter\n&#3;',0
+'THE WRITER CORP &lt;WRTC> 4TH QTR LOSS Shr loss 30 cts vs profit 11 cts\n    Net loss 1,247,000 vs profit 454,000\n    Revs 12.3 mln vs 17.5 mln\n    Year\n    Shr loss 24 cts vs profit 32 cts\n    Net loss 979,000 vs profit 1,303,000\n    Revs 60.6 mln vs 61.7 mln\n Reuter\n&#3;',0
+'ROCKY MOUNTAIN MEDICAL CORP &lt;RMEDU> 1ST QTR LOSS Dec 31\n    Shr loss one ct\n    Net loss 176,639\n    Revs 150,300\n    NOTE: Company went public in April 1986.\n Reuter\n&#3;',0
+'FIRST AMERICAN BANK AND TRUST &lt;FIAMA> YEAR NET Shr 91 cts vs 1.25 dlrs\n    Net 8,710,000 vs 11.7 mln\n    Avg shrs 9,526,287 vs 9,362,379\n    NOTE: Share adjusted for 10 pct stock dividend in May 1986.\n    Net includes loan loss provisions of 12.7 mln dlrs vs\n2,400,000 dlrs.\n Reuter\n&#3;',0
+'INDIA AGAIN IN MARKET FOR SUGAR - TRADE India has called a fresh buying tender\nfor up to four 13,000 tonne cargoes of white sugar on March 11,\ntraders here said.\n    The tender calls for one cargo of prompt sugar and two to\nthree with March/April shipment sugar, or the same as the eight\ncargoes bought at a tender two days ago. That tender originally\nonly sought two to three cargoes but resulted in the sale of\neight. India also granted the sellers options to sell twice\nthat amoun [...]
+'&lt;WARRANTECH CORP> 3RD QTR DEC 31 NET Shr profit nil vs loss nil\n    Net profit 28,565 vs loss 204,553\n    Revs 507,529 vs 6,563\n    Nine mths\n    Shr loss nil vs loss nil\n    Net loss 404,011 vs loss 649,495\n    Revs 938,345 vs 32,535\n Reuter\n&#3;',0
+'PIONEER GROUP &lt;PIOG> UNIT GETS MORE LAND The Pioneer Group Inc said its 70\npct-owned Teberebie Goldfields Ltd venture has been granted an\nadditional concession of land in Ghana to look for and mine\ngold.\n    The State Gold Mining Corp of Ghana granted the venture an\nadditional 14.5 square kilometers in Teberebie, Ghana,\ncontiguous to 11.5 square kilometers granted earlier, the\ncompany said.\n    The original concession appears to have a substantial\namount of gold bearing mate [...]
+'INSITUFORM &lt;IGLSF> RAISES STAKE IN UNIT Insituform Group Ltd of Guernsey,\nChannel Islands, said it has exercised an option to convert a\n250,000 stg loan to affiliate Insituform Permaline Ltd to\ncommon shares, raising its stake in the unit to 75 pct from 50\npct.\n    The remainder is held by Permaline\'s management and an\ninvestment group.\n    Insituform also said James Colclough has resigned from its\nboard for health reasons and secretary Scott Saltpeter has\nresigned, effecti [...]
+'COPPER MEETING AGREES GOALS OF STUDY GROUP The world\'s major copper producing and\nconsuming countries have reached \"a degree of consensus\" on\nobjectives and functions of a future study group aimed at\nreviewing the world copper market, officials said.\n    Governments represented at a meeting to consider a proposed\nforum for copper have recommended that another session be held\nin September to consider further the nature of such a group, a\nspokesman for the United Nations Confere [...]
+'LIFFE FEBRUARY VOLUMES DOWN, BUT EURODOLLARS UP Total futures and options turnover on the\nLondon International Financial Futures Exchange (LIFFE) fell\nslightly during February, although daily average Eurodollar\nvolume set a new record, LIFFE said today.\n    Total futures and options turnover last month was 822,378\ncontracts, down from January\'s 881,778, but sharply above the\ncomparative February 1986 figure of 463,146 lots, it said.\n    Eurodollar turnover during February was 14 [...]
+'COLOMBIAN OIL EXPORTS NOT AFFECTED BY QUAKE Colombian oil installations were not\ndamaged by an earthquake which shook Ecuador and southern\nColombia last night and there are no plans to suspend exports,\na spokesman for the state-run oil company Ecopetrol said.\n    He said no damage was reported, unlike in Ecuador where\nindefinite force majeure was declared on crude exports.\n    Colombia currently produces about 360,000 barrels per day\n(bpd) of crude. Exports in january totalled 12 [...]
+'CHICAGO MILWAUKEE &lt;CHG> GREETS SHEARSON STAKE Chicago Milwaukee Corp said it welcomed\nan investment by Shearson Lehman Brothers Inc in its company.\n    Yesterday, Shearson Lehman, a subsidiary of American\nExpress Co (AXP), disclosed in a Securities and Exchange\nCommission filing that it holds a 5.35 pct interest in Chicago\nMilwaukee.\n    Chicago Milwaukee\'s stock edged up 2-1/8 to 138 on turnover\nof 8,100 shares, as one of the biggest gainers on the NYSE. The\nstock has been  [...]
+'DAUPHIN DEPOSIT &lt;DAPN> TO MAKE ACQUISITION Dauphin Deposit Corp said it has\nsigned a letter of intent to acquire Colonial Bancorp Inc of\nNew Holland, Pa., in an exchange of 3.6 to 4.4 Dauphin shares\nfor each colonial share, depending on the market value of\nDauphin shares just before the merger takes place.\n    The company said the acquisition is subject to approval by\nColonial shareholders and regulatory authorities.  Colonial had\nassets at year-end of about 150 mln dlrs.\n Re [...]
+'VAN DORN CO &lt;VDC> SETS QUARTERLY Qtly div 27-1/2 cts vs 27-1/2 cts prior\n    Pay May One\n    Record April 17\n Reuter\n&#3;',0
+'M.D.C. HOLDINGS INC &lt;MDC> SETS QUARTERLY Qtly div 10 cts vs 10 cts prior\n    Pay March 31\n    Record March 16\n Reuter\n&#3;',0
+'CHUBB CORP &lt;CB> SETS QUARTERLY Qtly div 42 cts vs 42 cts prior\n    Pay April Seven\n    Record March 20\n Reuter\n&#3;',0
+'CRUDE OIL PRICES UP AS STOCKS, OUTPUT FALL U.S. crude oil prices rose above 18 \ndlrs a barrel this week and industry analysts said the price\ncould rise another dollar as inventories fall.\n    \"OPEC is keeping its production down, and in the cash market\nthere is tight supply of crude with short transportation time\nto major refining centers,\" said Daniel McKinley, oil analyst\nwith Smith Barney, Harris Upham and Co. \"That could send prices\n50 cts to a dollar higher,\" he added.\n [...]
+'MGE PLANNING APRIL 6 START UP OF HFCS CONTRACT The Minneapolis Grain Exchange (MGE)\nwill start trading futures contracts in high fructose corn\nsyrup on April 6 if the Commodity Futures Trading Commission\n(CFTC) approves the contract as expected next week.\n    Pat Henderson, spokesperson for the MGE, said the exchange\nexpects contract approval at CFTC\'s Tuesday meeting. It has\nbeen under review since the exchange submitted the proposal in\nDecember, 1985.\n    The proposed contrac [...]
+'FIRST FEDERAL BROOKSVILLE &lt;FFBV> SETS QUARTERLY Qtly div four cts vs four cts prior\n    Pay March 31\n    Record March 20\n    NOTE: First Federal Savings and Loan Association of\nBrooksville.\n Reuter\n&#3;',0
+'ALUMINUM CO OF AMERICA &lt;AA> REGULAR DIVIDEND Qtly div 30 cts vs 30 cts in prior qtr\n    Payable May 25\n    Record May one\n Reuter\n&#3;',0
+'&lt;TECHNIGEN PLATINUM CORP> IN METALS FIND Technigen Platinum corp said it\ninitial results of a 13-hole drilling program on its R.M. Nicel\nplatinum property in Rouyn-Noranda, Quebec, indicate\n\"extensive\" near-surface zones \"highly\" enriched in gold,\nplatinum and palladium were found in rocks on the periphery of\na sulphide deposit.\n    It said values of up to 0.073 ounce of platinum, 0.206\nounce palladium, three pct copper and 4.5 pct nickel were found\nover a drill section o [...]
+'SIEMENS WANTS TO AMEND TELECOM PLUS &lt;TELE> PACT Telecom Plus International Inc\nsaid &lt;Siemens AG>\'s Siemens Information Systems wants to amend\nits agreement to purchase Telecom\'s 65 pct interest in Tel Plus\nCommunications to delay payment of 25 mln dlrs for 11 months.\n    Telecom\'s shareholders are scheduled to vote on the 165 mln\ndlr transaction Monday.\n    Telecom said it advised Siemens it intends to close the\ntransaction on March 16, as scheduled, if it is approved by [...]
+'LUCKY STORES SAYS IT AND INVESTOR EDELMAN REACHED STANDSTILL AGREEMENT\n ',0
+'PIONEER GROUP UNIT GETS MORE GHANA GOLD LAND The Pioneer Group Inc said its 70\npct-owned Teberebie Goldfields Ltd venture was granted an\nadditional concession of land in Ghana to seek and mine gold.\n    The State Gold Mining Corp of Ghana granted the venture an\nadditional 14.5 square kilometers in Teberebie, Ghana,\ncontiguous to 11.5 square kilometers granted earlier.\n    The original concession appears to have a substantial\namount of gold bearing material containing about 2 gram [...]
+'INTERNATIONAL MULTIFOODS CORP &lt;IMC> DIVIDEND Qtly div 29-1/2 cts vs 29-1/2 cts prior\n    Pay April 15\n    Record March 27\n Reuter\n&#3;',0
+'HADSON CORP &lt;HADS> 4TH QTR NET Shr profit four cts vs loss 99 cts\n    Net profit 545,000 vs loss 13.1 mln\n    Revs 75.3 mln vs 37.9 mln\n    Avg shrs 14.8 mln vs 13.1 mln\n    Year\n    Shr profit 34 cts vs profit 34 cts\n    Net profit 4,908,000 vs profit 4,487,000\n    Revs 216.8 mln vs 117.7 mln\n    Avg shrs 14.6 mln vs 13.1 mln\n    NOTE: 1985 net included gain on sale of foreign properties\nof 15.5 mln dlrs or 1.19 dlrs per share and a writedown of oil\nand gas properties of  [...]
+'LUCKY STORES &lt;LKS>, EDELMAN IN STANDSTILL PACT Lucky Stores Inc said it and\ninvestor Asher Edelman agreed on a settlement that prohibits\nEdelman and his group from taking specified actions to obtain\ncontrol of the company and that limits the Edelman group\'s\nownership of Lucky\'s stock to less than five pct of any voting\nsecurities.\n    The arrangement also provides for the dismissal of pending\nlitigation between the parties, Lucky Stores said.\n    The settlement also calls f [...]
+'ATT &lt;T> PHONE PROPOSAL TO HELP PROFITS American Telephone and Telegraph Co\'s\nproposal to deregulate its long distance phone service is\nunlikely to produce a radical change in phone rates, but it\nshould help the company\'s profits, analysts said.\n    \"Deregulation will mean more pricing discounts for large\nvolume users, but status quo for residential users,\" said\nPaineWebber Group analyst Jack Grubman.\n    But the proposals will scrap the pricing formula that has\nconstraine [...]
+'CME SETS MAY 29 START FOR LUMBER FUTURES OPTIONS The Chicago Mercantile Exchange (CME)\nboard of governors announced today the options on Random Length\nlumber futures will begin trading on May 29.\n    The contract received Commodity Futures Trading Commission\n(CFTC) approval on January 21 after being submitted for review\nlast October 13.\n    Initially, only January, March and May delivery months will\nbe listed for trading. The size of the underlying futures\ncontract is 130,000 bo [...]
+'TWA CONFIRMS OWNERSHIP OF 15 PCT OF USAIR GROUP\n ',0
+'STRUTHERS WELLS &lt;SUW> SEES 1986 NOV 30 LOSS Struthers Wells Corp said it expects\nto report a loss, without tax benefit, of about 16 mln dlrs for\nthe fiscal year ended November 30, 1986, versus a profit of\n295,000 dlrs in fiscal 1985.\n    The company added, however, that about 13.6 mln dlrs of the\nloss relates to discontinued operations and disposal of\nsubsidiaries.\n    The company said the loss is part of its previously\nannounced restructuring that includes the sale of its fo [...]
+'SOROS GROUP TELLS SEC IT MAY BUY UP TO 49.9 PCT OF FAIRCHILD INDUSTRIES\n ',0
+'TWA &lt;TWA> CONFIRMS OWNERSHIP OF USAIR &lt;U> STOCK Trans World Airlines Inc said it owns\nmore than four mln USAir Group shares or about 15 pct of the\ntotal outstanding.\n    TWA said it may acquire additional shares in the open\nmarket, in private transactions, through a tender offer or\notherwise, subject to Department of Transportation approval.\n    TWA has offered 52 dlrs per share for USAir Group. USAir\nrejected the offer yesterday, calling it a last-minute attempt\nto interf [...]
+'SILVER STATE MINING &lt;SSMC> CORRECTS NET Silver State Mining Corp said it has\ncorrected its 1986 fourth quarter net income to 485,380 dlrs\nfrom 528,790 dlrs reported earlier today.\n    The company earned 286,969 dlrs in last year\'s fourth\nquarter.\n Reuter\n&#3;',0
+'STEWART-WARNER CORP 4TH QTR SHR LOSS 3.86 DLRS VS PROFIT 37 CTS\n ',0
+'GROUP TO BOOST FAIRCHILD INDUSTRIES (FEN) STAKE An investor group led by New York\ninvestor George Soros said it was dissatisfied with Fairchild\nIndustries Inc management and was considering boosting its\nholdings to as much as 49.9 pct of the aerospace and aviation\ncompany\'s outstanding stock.\n    The group already controls 1,647,481 Fairchild Industries\nshares or 11.5 pct of the total outstanding.\n    The group said it filed on Wednesday with federal antitrust\nregulators for ad [...]
+'PAYLESS CASHWAYS &lt;PCI> SEES BETTER FIRST QTR Payless Cashways Inc chairman David\nStanley told analysts the company\'s first quarter results to be\nreported March 17 will be better than the seven cts per share\nreported in the year ago quarter.\n    \"It was not a wonderful sales quarter, but it only\nrepresents 14 pct of the year\'s total results,\" Stanley said.\n    Stanley also said that 1987 full year sales will be in\nexcess of 1.8 billion dlrs as compared to the 1.5 billion dl [...]
+'STEWART-WARNER CORP &lt;STX> 4TH QTR LOSS Shr loss 3.86 dlrs vs profit 37 cts\n    Net loss 24,973,000 vs profit 2,389,000\n    Sales 62.5 mln vs 65.3 mln\n    Year\n    Shr loss 3.22 dlrs vs profit 1.32 dlrs\n    Net loss 20,861,000 vs profit 8,515,000\n    Sales 268.0 mln vs 272.7 mln\n    NOTE: 1986 earnings include a provision for restructuring\ncosts of 23,675,000 dlrs, or 3.66 dlrs a share (pre-tax) and\nthe effect of adoption of FASB 87 which reduced pension expense\nby 617,000 d [...]
+'MONITERM CORP &lt;MTRM> 4TH QTR LOSS Shr loss 15 cts vs loss 11 cts\n    Net loss 632,000 vs loss 437,000\n    Revs 3,206,000 vs 2,650,000\n    Year\n    Shr loss 19 cts vs loss 24 cts\n    Net loss 793,000 vs loss 1,004,000\n    Revs 11.5 mln vs 14.4 mln\n    NOTE: Prior year figures restated to reflect merger in\nMarch 1986 with Amtron Corp.\n Reuter\n&#3;',0
+'THE CHUBB CORP &lt;CB> SETS QTRLY PAYOUT Qtrly 42 cts vs 42 cts prior\n    Pay April 7\n    Record March 20\n Reuter\n&#3;',0
+'SOUTHTRUST &lt;SOTR> TO ACQUIRE FOUR BANKS SouthTrust Corp, a 5.1 billion\ndlr multibank holding company, said it entered into agreements\nto acquire four Florida banks with assets totalling more than\n233.2 mln dlrs.\n    Terms of the agreements were not disclosed.\n    The four banks are: Central Bank of Volusia County, with\nassets of 59.3 mln dlrs, Bank of Pensacola with assets of 63.8\nmln dlrs, and Vista Bank, which operates Vista Bank of Volusia\nCounty with assets of 37.8 mln dl [...]
+'CARLING O\'KEEFE SELLS STAR OIL UNIT TO UNITED COAL CANADA FOR 57 MLN DLRS\n ',0
+'HUGHES TOOL &lt;HT> UP ON MERGER SPECULATION Hughes Tool Co rose one to 12-1/4 on\n1,658,000 shares, apparently reflecting a belief that Baker\nInternational Corp &lt;BKO> will be able to persaude Hughes to go\nalong with a previously announced merger, analysts said.\n    This week Hughes seemed to back out of the merger but then\nsaid it was still interested in talking.\n    \"It sounds like Baker wants it and if people are convinced\na deal is going to go through the stock goes up,\"  [...]
+'AETNA &lt;AET> REACHES AGREEMENT TO BUY COMPANY Aetna Life and Casualty Co said\nit reached an agreement to acquire a 49 pct interest in\nUniversal Life and General Insurance Sdn Bhd &lt;ULG>, a Malaysian\ncomposite insurance company.\n    The company said the 51 pct balance will continue to be\nowned by Malaysia Apera Group of private investors.\n    The transaction is valued at approximately 37.8 mln dlrs\nand is expected to be completed by March 31, 1987.\n Reuter\n&#3;',0
+'CARLING O\'KEEFE&lt;CKB> SELLS OIL UNIT, TAKES GAIN Carling O\'Keefe Ltd said it sold its\nStar Oil and Gas Ltd unit to United Coal (Canada) Ltd for about\n57 mln dlrs cash.\n    Carling said it will record an extraordinary gain of about\ntwo mln dlrs after tax, or nine cts a common share resulting\nfrom the sale.\n    The company did not elaborate further on financial terms.\n    A Carling official later said in reply to an inquiry that\nCarling would record the extraordinary gain in i [...]
+'CHANNEL FERRY REPORTED SINKING OFF BELGIUM The channel ferry Herald\nof Free Enterprise from the British Townsend Thorensen company\nwas sinking off the Belgian coast tonight with 463 people on\nboard, the Dutch newsagency ANP reported today.\n    An unspecified number of people had fallen into the water,\nit said, quoting the pilot organisation in this south-western\nDutch port city near the Belgian border.\n    It said the vessel had capsized after a collision but gave\nno more detail [...]
+'PATRICK PETROLEUM CO &lt;PPC> YEAR LOSS Shr loss 1.22 dlrs vs profit 27 cts\n    Net loss 8,812,432 vs profit 1,847,560\n    Revs 7,981,198 vs 10.3 mln\n    Avg shrs 7,187,941 vs 6,828,368\n    NOTE: Current year includes tax credit of 800,000 dlrs.\n Reuter\n&#3;',0
+'EPITOPE INC &lt;EPTO> 1ST QTR DEC 31 LOSS Shr loss 24 cts vs loss nine cts\n    Net loss 216,697 vs loss 47,344\n    Sales 144,403 vs 118,391\n\n Reuter\n&#3;',0
+'&lt;CLARY CORP> 4TH QTR DEC 31 LOSS Shr loss 12 cts vs loss 16 cts\n    Net loss 214,000 vs 309,000\n    Revs 3,056,000 vs 2,545,000\n    Year\n    Shr loss 43 cts vs loss nine cts\n    Net loss 754,000 vs loss 159,000\n    Revs 11.4 mln vs 11.4 mln\n Reuter\n&#3;',0
+'LLOYDS BANK CANADA 1ST QTR PROFIT RISES SHARPLY Lloyds Bank Canada, a unit of &lt;Lloyds\nBank International PLC>, said net profit soared to 3,053,000\ndlrs for the first quarter ended January 31 from 9,000 dlrs a\nyear earlier.\n    Loan loss provisions, a mandatory five-year averaging of\nactual loan losses, also rose in the first quarter to 6,375,000\ndlrs from year-ago 113,000 dlrs, the bank said.\n    Lloyds Bank Canada became Canada\'s largest foreign bank\nlast autumn with its 20 [...]
+'BRAZIL STRIKES CAUSE GOVERNMENT MAJOR PROBLEMS Strikes by Brazil\'s 40,000\nseamen and by petrol station owners in four states are causing\nmajor headaches to a government already wrestling with a debt\ncrisis.\n    A week ago seamen began their first national strike for 25\nyears and union leaders say they have seriously affected\nBrazilian exports by making idle 160 ships.\n    On February 20 the Brazilian government suspended interest\npayments on part of its huge foreign debt follow [...]
+'DOME PETE&lt;DMP> SAID TO BE PRESSED TO SELL ENCOR Dome Petroleum Ltd is under pressure\nfrom one of its largest creditors, &lt;Canadian Imperial Bank of\nCommerce>, to sell its 42 pct stake in &lt;Encor Energy Corp Ltd>,\nenergy industry analysts said.\n    Dome has pledged its 42.5 mln Encor shares as security for\npart of its debt to Commerce Bank, estimated last year at 947\nmln Canadian dlrs, and the bank wants Dome to sell the stock to\npay down debt, analysts said.\n    \"The Com [...]
+'PATRICK PETROLEUM CO &lt;PPC> 4TH QTR NET Shr nil vs one ct\n    Net 59,608 vs 95,909\n    Revs 2,921,629 vs 2,918,682\n    Avg shrs 7,062,172 vs 7,273,020\n    Year\n    Shr loss 1.22 dlrs vs profit 27 cts\n    Net loss 8,812,432 vs profit 1,847,560\n    Revs 3,070,327 vs 3,195,710\n    Avg shrs 7,187,941 vs 6,828,368\n Reuter\n&#3;',0
+'INLAND VACUUM INDUSTRIES INC &lt;IVAC> 1ST QTR NET Qtr ends Jan 31\n    Shr six cts vs eight cts\n    Net 103,436 dlrs vs 134,360 dlrs\n    Revs 1,762,270 vs 1,282,463\n Reuter\n&#3;',0
+'IRANIAN OIL MINISTER ARRIVES IN ALGERIA Iranian Oil Minister Gholamreza Aqazadeh\narrived in Algiers at the head of a large delegation for talks\non stabilizing oil prices, the official news agency APS said.\n    In a brief arrival statement, he said Iran and Algeria were\nengaged in \"continuous and stronger cooperation\" on the world\npetroleum market and had \"deployed considerable efforts to\nstablise petroleum prices.\"\n    He was greeted on arrival by Belkacem Nabi, the Algerian\ [...]
+'DEL LABORATORIES INC &lt;DLI> 4TH QTR NET Shr 16 cts vs 55 cts\n    Net 232,000 vs 814,000\n    Revs 22.4 mln vs 22 mln\n    Year\n    Shr 2.07 dlrs vs 2.43 dlrs\n    Net 3,108,000 vs 3,670,000\n    Revs 106.7 mln vs 101.1 mln\n    NOTE: Per share figures adjusted to reflect four-for-three\nstock split paid March 26, 1986.\n Reuter\n&#3;',0
+'CHILEAN GDP UP 5.7 PCT IN 1986, CENTRAL BANK SAYS chile\'s gross domestic product rose 5.7\npct last year to 18.8 billion dollars, compared to a 2.4 pct\nrise in the previous year, the central bank said.\n    It said initial projections were for a 4.6 pct increase in\ngdp this year.\n    The sectors which registered the greatest growth in 1986\nwere fisheries with 10 pct, agriculture at 8.7 pct, transport\nand communications with 8.1 pct and industry at 8.0 pct, the\nbank added.\n Reute [...]
+'LANDMARK SAVINGS &lt;LSA> COMPLETES OFFICE SALE Landmark Savings Association said it\ncompleted the sale of its Whitehall, Pa., office, including\ndeposits of about 31 mln dlrs, to Parkvale Savings Association.\n    Landmark said it realized a gain of about 1.1 mln dlrs on\nthe sale. The price was not disclosed.\n Reuter\n&#3;',0
+'U.S. FEEDGRAINS GROUP ATTACKS CANADA CORN RULING The U.S. Feedgrains Council is\nsurprised and disappointed by the Canadian Import Tribunal\'s\ndecision that imports of corn from the U.S. are materially\ninjuring Canadian corn producers, a council spokesman said.\n    \"At a time when the world is attempting to liberalize trade\nin the new rounnd of multilateral negotiations, it is\nincomprehensible that a country that stands to gain so much\nfrom the reduction in agricultural trade bar [...]
+'HOLLY SUGAR CORP &lt;HLY> SETS REGULAR DIVIDEND Qtly div 25 cts vs 25 cts prior\n    Pay March 31\n    Record March 18\n Reuter\n&#3;',0
+'CORADIAN CORP &lt;CDIN> YEAR NET Shr profit one cent vs loss 37 cts\n    Net profit 148,000 dlrs vs loss 1,686,000\n    Revs 11.4 mln vs 10.9 mln\n    NOTE: Company said net is before extraordinary items and\ntaxes and declined to provide data on those items\n Reuter\n&#3;',0
+'USDA TO CONDUCT SURVEY FOR AVIAN INFLUENZA U.S. Agriculture Department animal\nhealth officials are conducting a national survey of live-bird\nmarkets and auctions to check for signs of avian influenza, an\ninfectious viral disease of poultry, the department said.\n    The survey will locate poultry dealers and live-bird\nmarkets that sell live birds directly to the consumer and once\nthe dealers and markets are identified, there will be tests to\ndetermine any past or present exposure  [...]
+'TWO HUNDRED PEOPLE RESCUED FROM SINKING FERRY About 200 people were rescued, some\nbadly hurt, from a sinking cross Channel ferry carrying\napproximately 540 people off the Belgian port of Zeebrugge, a\nport control spokesman said.\n    The spokesman, contacted by telephone, said only one third\nof car ferry, the Herald of Free Enterprise owned by the\nBritish company Townsend Thoresen, remained above water.\n    Divers have been sent down to try to rescue passengers\nbelieved trapped i [...]
+'FOXBORO CO &lt;FOX> 4TH QTR LOSS Oper shr loss one ct vs loss 2.65 dlrs\n    Oper net loss 100,000 vs loss 32.7 mln\n    Revs 142.3 mln vs 168.8 mln\n    12 mths\n    Oper shr profit 57 cts vs loss 2.76 dlrs\n    Oper net profit 7,072,000 vs loss 34.2 mln\n    Revs 544.0 mln vs 572.2 mln\n    Note: 1986 oper net excludes tax credits of 2,149,000 dlrs\nfor qtr and 2,200,000 dlrs for 12 mths. Includes restructuring\ncharges of 120 mln dlrs for qtr, 527 mln dlrs for 12 mths.\n Reuter\n&#3;',0
+'LYNG SAYS NO DECISIONS TAKEN AT CABINET COUNCIL U.S. Agriculture Secretary Richard\nLyng said no decisions were taken today at a White House\nEconomic Policy Council meeting.\n    Speaking to reporters on his return from the meeting, Lyng\nsaid only about five minutes of the session dealt with\nagriculture issues.\n    \"It was not a decision making meeting,\" Lyng said.\n    Aides to Lyng earlier said the administration\'s agriculture\nlegislative proposals would be the farm-related to [...]
+'TREASURY BALANCES AT FED FELL ON MARCH 5 Treasury balances at the Federal\nReserve fell on March 5 to 3.467 billion dlrs from 3.939\nbillion dlrs the previous business day, the Treasury said in\nits latest budget statement.\n    Balances in tax and loan note accounts fell to 14.350\nbillion dlrs from 14.391 billion dlrs on the same respective\ndays.\n    The Treasury\'s operating cash balance totaled 17.817\nbillion dlrs on March 5 compared with 18.330 billion dlrs on\nMarch 4.\n Reuter [...]
+'NICARAGUA, ROMANIA, PARAGUAY LOSE TRADE RIGHTS President Reagan formally ended\npreferential duty-free trade treatment for exports from\nNicaragua, Romania and Paraguay under the Generalized System of\nPreferences (GSP).\n    He took the action after determining that the three\ncountries are not taking steps to give their workers\ninternationally recognized rights.\n    U.S. Trade Representative Clayton Yeutter had announced the\nintended action on January 2. The United States conducts  [...]
+'U.S. FEEDGRAIN 0/92 SUPPORTERS EVALUATE POSITION Advocates of a 0/92 plan for\nfeedgrains will likely delay offering their proposals if a\ndisaster aid bill before the House Agriculture Committee is\nscaled back to include only 1987 winter wheat, congressional\nsources said.\n    The disaster aid bill, introduced by Rep. Glenn English\n(D-Okla.), sparked sharp controversy with its proposals to\nimplement a 0/92 program for 1987 wheat and 1988 winter wheat.\n    An agreement has been rea [...]
+'ALFIN INC &lt;AFN> 2ND QTR JAN 31 LOSS Shr loss 20 cts vs profit 14 cts\n    Net loss 1,417,000 vs profit 933,000\n    Revs 5,623,000 vs 5,403,000\n    Avg shrs 6,957,300 vs 7,115,248\n    Six mths\n    Shr loss 18 cts vs profit 43 cts\n    Net loss 1,269,000 vs profit 3,079,000\n    Revs 15.7 mln vs 14.2 mln\n    Avg shrs 7,195,720 vs 7,115,248\n Reuter\n&#3;',0
+'BELL AND HOWELL &lt;BHW> COMPLETES SALE OF UNIT Bell and Howell Co said it\ncompleted the sale of its computer output microfilm business to\nCOM Products Inc, a unit of privately-held &lt;LeBow Industries\nInc>.\n    The sum of the deal was not disclosed.\n    The unit makes a device that prints data directly from a\ncomputer onto microfilm.\n Reuter\n&#3;',0
+'U.S. BUSINESS LOANS FALL 618 MLN DLRS IN FEB 25 WEEK, FED SAYS\n ',0
+'U.S. BUSINESS LOANS FALL 618 MLN DLRS Business loans on the books of major\nU.S. banks, excluding acceptances, fell 618 mln dlrs to 278.88\nbillion dlrs in the week ended February 25, the Federal Reserve\nBoard said.\n    The Fed said that business loans including acceptances fell\n897 mln dlrs to 281.23 billion dlrs.\n Reuter\n&#3;',0
+'HYPONEX CORP &lt;HYPX> YEAR NET Shr 85 cts vs 1.20 dlrs\n    Net 5,130,000 vs 7,236,000\n    Revs 93.6 mln vs 91.9 mln\n Reuter\n&#3;',0
+'HMO AMERICA INC &lt;HMOA> YEAR LOSS Shr loss 33 cts vs profit 38 cts\n    Net loss 2,359,978 vs profit 2,805,389\n    Revs 76.2 mln vs 61.8 mln\n    Avg shrs 7,096,886 vs 7,392,586\n Reuter\n&#3;',0
+'TECHNIGEN PLATINUM CORP IN METALS FIND Technigen Platinum corp said initial\nresults of a 13-hole drilling program on its R.M. Nicel\nplatinum property in Rouyn-Noranda, Quebec, indicate extensive\nnear-surface zones highly enriched in gold, platinum and\npalladium.\n    The metals were found in rocks on the periphery of a\nsulphide deposit.\n    It said values of up to 0.073 ounce of platinum, 0.206\nounce palladium, three pct copper and 4.5 pct nickel were found\nover a drill section  [...]
+'AMERICAN PORK CONGRESS TO BE OVERHAULED IN 1988 The National Pork Producers Council,\nNPPC, announced at this year\'s American Pork Congress, APC,\nthat the Congress and trade show will be divided into two parts\nin 1988.\n    Next years APC, held in Atlanta, will be a business session\nonly and will continue to be the first week of March.\n    The trade show is being changed into a new international\nevent called the World Pork Expo. The first expo will be held\nin June 1988 in Des Moi [...]
+'&lt;DTD ENTERPRISES INC> IN REORGANIZATION DTD Enterprises Inc said it filed an\n8-K report indicating that &lt;EaglesLair Development Corp> had\nassumed control of the company under a reorganization plan\nsigned last month.\n    The company said D. Gerald Lach, president of EaglesLair,\nwas named president and a director of DTD.\n    In addition, DTS\'s board resigned and EaglesLair appointed\nnew directors, the company said.\n Reuter\n&#3;',0
+'SCHWAB SAFE CO &lt;SS> UPS PAYOUT Qtly div 13 cts vs 12 cts prior\n    Pay April 17\n    Record March 31\n Reuter\n&#3;',0
+'PHYSICIANS INSURANCE CO &lt;PICO> 4TH QTR NET Shr 31 cts vs 53 cts\n    Net 960,143 dlrs vs 1,631,011 dlrs\n    Revs 27.4 mln dlrs vs 18.9 mln dlrs\n    Avg shrs 3,079,533 vs 3,096,095\n    12 mths\n    Shr 1.01 dlrs vs 92 cts\n    Net 3,113,337 dlrs vs 2,855,755 dlrs\n    Revs 106.5 mln dlrs vs 78.3 mln dlrs\n    Avg shrs 3,079,516 vs 3,089,140\n    NOTE: per share amounts for qtr and year prior have been\nrestated to reflect a six-for-five stock split in August 1986.\n    Revs for qtr [...]
+'BRADLEY &lt;BRLY> ANNOUNCES LONG-TERM LEASE Bradley Real Estate Trust said it signed\na 99-year lease for property in downtown Minneapolis to BCED\nMinnesota Inc.\n    The lease will increase net income by about 24 cts a share\non a post-February 1987 three-for-two stock split basis. For\n1986, the Trust reported net income of 1.3 mln dlrs or 38 cts a\nshare on a post-split basis.\n    Bradley will also be entitled to a one-time additional\nrental payment of 30 cts a share upon BCED ent [...]
+'DUMEZ UNIT HAS 94 PCT OF WESTBURNE (WBI) (Dumez Investments I Inc) said 94.7 pct\nof Westburne International Industries Ltd\'s outstanding common\nshares have been deposited under its takeover bid.\n    It said it has received about 11,070,000 shares under its\n22.50 dlrs per share offer which expired yesterday.\n    Dumez said it will proceed to acquire the remaining common\nshares to give it 100 pct ownership of Westburne.\n    Dumez is a private company owned jointly by (Dumez S.A.)\ [...]
+'CANADIAN NATURAL RESOURCES TO SELL STAKE &lt;Canadian Natural Resources\nLtd> said it agreed in principle to sell 80 pct of its working\ninterest in certain producing and non-producing natural gas\nproperties located in southwestern Saskatchewan.\n    The transaction is expected to close on April 1, 1987, the\ncompany said. It did not identify the buyer nor give the\nselling price.\n    Proceeds will be used to satisfy a February 1987 repayment\ndemand by one of the company\'s lenders.  [...]
+'MALRITE BUYS COX\'S RADIO STATION UNIT &lt;Malrite Guaranteed Broadcast Partners\nL.P.> said it bought WTRK Inc from &lt;Cox Enterprises Inc> for\n13.8 mln dlrs in cash.\n    It said WTRK owns and operates WTRK-FM, a Philadelphia\nradio station. Transfer of the license for the sation has been\napproved by the Federal Communications Commission.\n    Malrite Guaranteed said it is a limited partnerhip formed\nto acquire and operate radio and tv stations. It said Malrite\nCommunications Gro [...]
+'CYACQ EXTENDS TENDER FOR CYCLOPS &lt;CYL> Cyacq Corp said it extended its 80\ndlr a share tender offer for Cyclops Corp to March 20 from\ntoday.\n    Cyacq was formed by Citicorp Capital Investors Ltd and\nAudio Video Affiliates INc &lt;AVA> to acquire Cyclops. THe tender\noffer began on February six.\n    The offer is conditioned upon at least 80 pct of the\noutstanding shares and at least 80 pct of the voting securities\nbeing tendered before expiration of the offer.\n    As of March  [...]
+'MONO GOLD SAYS PARTNERSHIP AGREES TO BUY SHARES &lt;Mono Gold Mines\nInc> said &lt;NIM and Co Ltd> Partnership agreed to buy\nflow-through shares with an aggregate purchase price of up to\n300,000 dlrs.\n    It said, subject to fulfillment of certain conditions, the\nprice of the shares to NIM will be 79.6 cts per share, and said\nit will issue 376,955 shares to the partnership.\n    Mono also said options to buy up to 300,000 dlrs of its\ncapital stock at 65 cts per share expire March  [...]
+'USLICO CORP &lt;USVC> INCREASES DIVIDEND Qtly div 22 cts vs 20 cts prior\n    payable March 27\n    Record March 18\n Reuter\n&#3;',0
+'USAIR GROUP REQUESTS TRANSPORTATION DEPARTMENT ORDER TWA TO DIVEST STAKE\n ',0
+'DIPLOMAT ELECTRONICS &lt;DPEC> TO CUT COSTS Diplomat Electronics Corp said it\nwill reduce expenses by four mln dlrs a year in an effort to\nstem losses and return to a positive net worth.\n    The company also said certain lenders agreed to take a 24\npct stake in the company by converting seven mln dlrs of debt\ninto preferred stock.\n    Diplomat said it will cut costs by several means, including\ndismissal of 100 workers at its corporate headquarters,\nconsolidation of its warehousi [...]
+'U.S. CORN GROWERS BLAST CANADA CORN RULING Canada\'s ruling in favor of a duty on\nU.S. corn was a keen disappointment to the National Corn\nGrowers Association and has set a dangerous precedent for other\nnations to follow, said Mike Hall, lobbyist for the\nassociation.\n    \"The French corn growers will clearly charge ahead now and\njust change corn to corn gluten feed\" in their complaint, Hall\ntold Reuters.\n    A Canadian government agency ruled today that U.S. farm\npolicies are [...]
+'DOLLAR GENERAL CORP &lt;DOLR> QTLY DIVIDEND Qtly div five cts vs five cts prior\n    Payable April three\n    Reocrd March 20\n Reuter\n&#3;',0
+'HEALTHCARE SERVICES &lt;HSAI> SEES WRITE-OFFS Healthcare Services Of America\nInc said it will write off about 16 mln dlrs in non-recurring\nexpenses in 1986.\n    It also said it expects income from operations to be about\nbreakeven for 1986 and the estimated loss for the year to be\nabout the same as the writeoffs.\n    Results will be released by March 31, 1987.\n    Included in the writeoffs were six mln dlrs in\ndevelopmental costs, six mln dlrs in unamortized loan costs and\ndebt  [...]
+'USAIR &lt;U> SEEKS ORDER AGAINST TWA &lt;TWA> USAir Group said it sought the help\nof the U.S. Department of Transportation in its takeover fight\nwith Trans World Airlines Inc, asking the Department to order\nTWA to sell its USAir shares.\n    \"What they have done is in direct violation of the Federal\nAviation Act,\" USAir said.\n    It said TWA week filed a cursory application with the\nDepartment of Transportation for approval of its proposed 1.65\nbillion dlr takeover of USAir.\n  [...]
+'PARK-OHIO INDUSTRIES INC &lt;PKOH> 4TH QTR NET Shr loss 52 cts vs profit 1.07 dlr\n    Net loss 2,917,000 vs profit 5,963,000\n    Revs 34.1 mln vs 40.3 mln\n    Year\n    Shr loss 1.39 dlr vs profit 1.24 dlr\n    Net loss 7,749,000 vs profit 6,946,000\n    Revs 138.6 mln vs 186.2 mln\n    NOTE: 1986 net includes certain non-recurring charges of\nabout 5,506,000 dlrs for a number of items.\n    1985 4th qtr and yr net includes extraordinary credit of\n4,974,000 dlrs or 89 cts per share. [...]
+'BMC INDUSTRIES INC &lt;BMC> 4TH QTR LOSS Shr loss 1.20 dlrs vs loss 1.97 dlrs\n    Net loss 6,248,000 vs loss 10.2 mln\n    Revs 33.1 mln vs not given\n    Year\n    Shr loss 1.25 dlrs vs loss 13.44 dlrs\n    Net loss 6,508,000 vs loss 69.6 mln\n    Revs 123.4 mln vs not given\n    NOTE: Results include charges of five mln dlrs or 96 cts\nshr for 1986 qtr and year, compared with charge of 72.2 mln\ndlrs or 13.94 dlrs shr in prior year from discontinued\noperations and disposal of discon [...]
+'UNITED COMPANIES &lt;UNCF> DECLARES STOCK DIVIDEND United Companies Financial Corp\nsaid its board declared a two pct stock dividend payable APril\neight to holders of record March 17.\n    The board also declared a regular quarterly cash dividend\nof 12.5 cts payable April one to holders of record March 16.\n                                                   \n Reuter\n&#3;',0
+'U.S. FARM PROGRAMS HELP CANADIAN CORN PRODUCERS An American Farm Bureau\nFederation (AFBF) official said that far from hurting Canadian\ncorn producers, U.S. farm programs benefit all foreign\nproducers.\n    AFBF president Dean Kleckner made the comments in response\nto the ruling earlier today by the Canadian Import Tribunal\nthat subsidized U.S. corn imports were injurious to Canadian\ngrowers. The tribunal upheld a countervailing duty of 84.9 U.S.\ncents a bushel.\n    \"Farm Bureau [...]
+'U.N. ISSUES REPORT ON NATURAL GAS CLAUSES The U.N. Centre on Transnational\nCorporations has issued a report containing guidelines and\nrecommendations for negotiating natural gas clauses in\nagreements between transnational petroleum corporations and\nhost countries.\n    The U.N. said the report was aimed at promoting petroleum\nexploration in areas perceived as being gas prone. The 49-page\nreport contains an in-depth examination of the problems of gas\ndevelopoment and looks at diff [...]
+'TAFT&lt;TFB> BIDDERS WOULD SELL ENTERTAINMENT UNIT A proposed buyout of Taft Broadcasting\nCo by Dudley Taft and other investors includes a plan to sell\nthe company\'s Entertainment Group, according to one of the\ninvestors.\n    Jonathan Nelson, managing director of Narragansett Capital\nCorp &lt;NARR>, which is participating in the buyout plan,\ndeclined to say if buyers have already been lined up for the\nEntertainment Group. \"We are considering selling the group,\"\nNelson said. W [...]
+'POSITIVE OUTLOOK TEMPERED IN U.S. DEBT FUTURES Higher oil prices and stronger than\nexpected U.S. employment growth led to sharp losses in U.S.\ninterest rate futures and diminished what had been a positive\nchart outlook, financial analysts said.\n    The increase of 319,000 in non-farm payroll employment\nduring February was above market expectations for a rise of\n170,000 to 200,000 jobs and sparked selling in Treasury bond\nfutures that drove the June contract through key technical\ [...]
+'SANDOX BUYS STAUFFER SEEDS Sandoz Corp\'s Northrup King Co said\nit bought Stauffer Seeds, a unit of Stauffer Chemical Co.\n    Terms were not disclosed.\n Reuter\n&#3;',0
+'ENERGEN &lt;EGN> BUYS MUNICIPAL GAS SYSTEM Energen Corp said it has\nacquired the distribution system of the City of Clanton, Ala.\nfor about 1.2 mln dlrs.\n    The 1,800 customer system is the fourth municipal system\nacquired by Energen\'s Alabama Gas subsidiary since October\n1986, adding a total of 9,600 customers.\n Reuter\n&#3;',0
+'SIERRA PACIFIC RESOURCES INC &lt;SRP> DIVIDEND Qtly div 43 cts vs 43 cts prior\n    Payable May one\n    Record April 15\n Reuter\n&#3;',0
+'METEX CORP &lt;MTX> 4TH QTR DEC 28 Shr 22 cts vs 49 cts\n    Net 296,994 vs 657,416\n    Revs 6.5 mln vs 9.5 mln\n    Year\n    Shr 78 cts vs 1.51 dlrs\n    Net 1.0 mln vs 2.0 mln\n    Revs 27.6 mln vs 29.4 mln\n Reuter\n&#3;',0
+'HOUSTON OIL TRUST &lt;HO> OMITS MARCH DISTRIBUTION Houston Oil Trust said there will be no\ncash distribution to the unit holders in March.\n    The most significant factor for the lack of a distribution\nthis month is the establishment of additional special cost\nescrow accounts, the company said, adding, that there may be no\ncash distribution in other months or during the remainder of\nthe year.\n    For March, the working interest owner will place 1.9 mln\ndlrs in special cost escro [...]
+'MONOCLONAL ANTIBODIES &lt;MABS> BUYS COMPANY Monoclonal Antibodies Inc\nsaid it signed an agreement in principle to buy &lt;Genesis Labs\nInc> for about 10 mln dlrs of common stock.\n    The agreement is subject to shareholders approval and other\nconditions.\n Reuter\n&#3;',0
+'U.S. TREASURY PROPOSES SOME S. AFRICAN IMPORTS The Treasury proposed allowing \ntemporary imports of South African uranium ore and uranium\noxide until July 1 under certain conditions pending\nclarification of anti-apartheid laws passed by Congress last\nfall.\n    The proposal to be published in the Federal Register next\nweek requests written congressional and public comment within\n60 days and deals with uranium ore and oxide that is imported\nfor U.S. processing and exporting to thi [...]
+'BRANIFF INC &lt;BAIR> 4TH QTR LOSS JAN 31 Shr loss 37 cts vs loss 13 cts\n    Net loss 4.5 mln vs loss 1.5 mln\n    Revs 63.3 mln vs 53.8 mln\n    Year\n    Shr loss 74 cts vs profit 1.87 dlr\n    Net loss 9.0 mln vs profit 23.0 mln\n    Revs 239.5 mln vs 244.3 mln\n    NOTE:1986 net includes extraordinary gain of 10.6 mln dlrs\nfrom tax loss carryforward in year and loss of 198,000 dlrs in\n4th qtr.\n Reuter\n&#3;',0
diff --git a/arff/src/test/resources/weka-data/airline.arff b/arff/src/test/resources/weka-data/airline.arff
new file mode 100644
index 0000000..077c76b
--- /dev/null
+++ b/arff/src/test/resources/weka-data/airline.arff
@@ -0,0 +1,152 @@
+%% Monthly totals of international airline passengers (in thousands) for 
+%% 1949-1960.
+
+@relation airline_passengers
+@attribute passenger_numbers numeric
+@attribute Date date 'yyyy-MM-dd'
+
+@data
+112,1949-01-01
+118,1949-02-01
+132,1949-03-01
+129,1949-04-01
+121,1949-05-01
+135,1949-06-01
+148,1949-07-01
+148,1949-08-01
+136,1949-09-01
+119,1949-10-01
+104,1949-11-01
+118,1949-12-01
+115,1950-01-01
+126,1950-02-01
+141,1950-03-01
+135,1950-04-01
+125,1950-05-01
+149,1950-06-01
+170,1950-07-01
+170,1950-08-01
+158,1950-09-01
+133,1950-10-01
+114,1950-11-01
+140,1950-12-01
+145,1951-01-01
+150,1951-02-01
+178,1951-03-01
+163,1951-04-01
+172,1951-05-01
+178,1951-06-01
+199,1951-07-01
+199,1951-08-01
+184,1951-09-01
+162,1951-10-01
+146,1951-11-01
+166,1951-12-01
+171,1952-01-01
+180,1952-02-01
+193,1952-03-01
+181,1952-04-01
+183,1952-05-01
+218,1952-06-01
+230,1952-07-01
+242,1952-08-01
+209,1952-09-01
+191,1952-10-01
+172,1952-11-01
+194,1952-12-01
+196,1953-01-01
+196,1953-02-01
+236,1953-03-01
+235,1953-04-01
+229,1953-05-01
+243,1953-06-01
+264,1953-07-01
+272,1953-08-01
+237,1953-09-01
+211,1953-10-01
+180,1953-11-01
+201,1953-12-01
+204,1954-01-01
+188,1954-02-01
+235,1954-03-01
+227,1954-04-01
+234,1954-05-01
+264,1954-06-01
+302,1954-07-01
+293,1954-08-01
+259,1954-09-01
+229,1954-10-01
+203,1954-11-01
+229,1954-12-01
+242,1955-01-01
+233,1955-02-01
+267,1955-03-01
+269,1955-04-01
+270,1955-05-01
+315,1955-06-01
+364,1955-07-01
+347,1955-08-01
+312,1955-09-01
+274,1955-10-01
+237,1955-11-01
+278,1955-12-01
+284,1956-01-01
+277,1956-02-01
+317,1956-03-01
+313,1956-04-01
+318,1956-05-01
+374,1956-06-01
+413,1956-07-01
+405,1956-08-01
+355,1956-09-01
+306,1956-10-01
+271,1956-11-01
+306,1956-12-01
+315,1957-01-01
+301,1957-02-01
+356,1957-03-01
+348,1957-04-01
+355,1957-05-01
+422,1957-06-01
+465,1957-07-01
+467,1957-08-01
+404,1957-09-01
+347,1957-10-01 
+305,1957-11-01
+336,1957-12-01
+340,1958-01-01
+318,1958-02-01
+362,1958-03-01
+348,1958-04-01
+363,1958-05-01
+435,1958-06-01
+491,1958-07-01
+505,1958-08-01
+404,1958-09-01
+359,1958-10-01
+310,1958-11-01
+337,1958-12-01
+360,1959-01-01
+342,1959-02-01
+406,1959-03-01
+396,1959-04-01
+420,1959-05-01
+472,1959-06-01
+548,1959-07-01
+559,1959-08-01
+463,1959-09-01
+407,1959-10-01
+362,1959-11-01
+405,1959-12-01
+417,1960-01-01
+391,1960-02-01
+419,1960-03-01
+461,1960-04-01
+472,1960-05-01
+535,1960-06-01
+622,1960-07-01
+606,1960-08-01
+508,1960-09-01
+461,1960-10-01
+390,1960-11-01
+432,1960-12-01
diff --git a/arff/src/test/resources/weka-data/breast-cancer.arff b/arff/src/test/resources/weka-data/breast-cancer.arff
new file mode 100644
index 0000000..a8d2340
--- /dev/null
+++ b/arff/src/test/resources/weka-data/breast-cancer.arff
@@ -0,0 +1,394 @@
+% Citation Request:
+%    This breast cancer domain was obtained from the University Medical Centre,
+%    Institute of Oncology, Ljubljana, Yugoslavia.  Thanks go to M. Zwitter and 
+%    M. Soklic for providing the data.  Please include this citation if you plan
+%    to use this database.
+% 
+% 1. Title: Breast cancer data (Michalski has used this)
+% 
+% 2. Sources: 
+%    -- Matjaz Zwitter & Milan Soklic (physicians)
+%       Institute of Oncology 
+%       University Medical Center
+%       Ljubljana, Yugoslavia
+%    -- Donors: Ming Tan and Jeff Schlimmer (Jeffrey.Schlimmer@a.gp.cs.cmu.edu)
+%    -- Date: 11 July 1988
+% 
+% 3. Past Usage: (Several: here are some)
+%      -- Michalski,R.S., Mozetic,I., Hong,J., & Lavrac,N. (1986). The 
+%         Multi-Purpose Incremental Learning System AQ15 and its Testing 
+%         Application to Three Medical Domains.  In Proceedings of the 
+%         Fifth National Conference on Artificial Intelligence, 1041-1045,
+%         Philadelphia, PA: Morgan Kaufmann.
+%         -- accuracy range: 66%-72%
+%      -- Clark,P. & Niblett,T. (1987). Induction in Noisy Domains.  In 
+%         Progress in Machine Learning (from the Proceedings of the 2nd
+%         European Working Session on Learning), 11-30, Bled, 
+%         Yugoslavia: Sigma Press.
+%         -- 8 test results given: 65%-72% accuracy range
+%      -- Tan, M., & Eshelman, L. (1988). Using weighted networks to 
+%         represent classification knowledge in noisy domains.  Proceedings 
+%         of the Fifth International Conference on Machine Learning, 121-134,
+%         Ann Arbor, MI.
+%         -- 4 systems tested: accuracy range was 68%-73.5%
+%     -- Cestnik,G., Konenenko,I, & Bratko,I. (1987). Assistant-86: A
+%        Knowledge-Elicitation Tool for Sophisticated Users.  In I.Bratko
+%        & N.Lavrac (Eds.) Progress in Machine Learning, 31-45, Sigma Press.
+%        -- Assistant-86: 78% accuracy
+% 
+% 4. Relevant Information:
+%      This is one of three domains provided by the Oncology Institute
+%      that has repeatedly appeared in the machine learning literature.
+%      (See also lymphography and primary-tumor.)
+% 
+%      This data set includes 201 instances of one class and 85 instances of
+%      another class.  The instances are described by 9 attributes, some of
+%      which are linear and some are nominal.
+% 
+% 5. Number of Instances: 286
+% 
+% 6. Number of Attributes: 9 + the class attribute
+% 
+% 7. Attribute Information:
+%    1. Class: no-recurrence-events, recurrence-events
+%    2. age: 10-19, 20-29, 30-39, 40-49, 50-59, 60-69, 70-79, 80-89, 90-99.
+%    3. menopause: lt40, ge40, premeno.
+%    4. tumor-size: 0-4, 5-9, 10-14, 15-19, 20-24, 25-29, 30-34, 35-39, 40-44,
+%                   45-49, 50-54, 55-59.
+%    5. inv-nodes: 0-2, 3-5, 6-8, 9-11, 12-14, 15-17, 18-20, 21-23, 24-26,
+%                  27-29, 30-32, 33-35, 36-39.
+%    6. node-caps: yes, no.
+%    7. deg-malig: 1, 2, 3.
+%    8. breast: left, right.
+%    9. breast-quad: left-up, left-low, right-up, right-low, central.
+%   10. irradiat: yes, no.
+% 
+% 8. Missing Attribute Values: (denoted by "?")
+%    Attribute #:  Number of instances with missing values:
+%    6.             8
+%    9.             1.
+% 
+% 9. Class Distribution:
+%     1. no-recurrence-events: 201 instances
+%     2. recurrence-events: 85 instances
+%
+% Num Instances:     286
+% Num Attributes:    10
+% Num Continuous:    0 (Int 0 / Real 0)
+% Num Discrete:      10
+% Missing values:    9 /  0.3%
+%
+%     name                      type enum ints real     missing    distinct  (1)
+%   1 'age'                     Enum 100%   0%   0%     0 /  0%     6 /  2%   0% 
+%   2 'menopause'               Enum 100%   0%   0%     0 /  0%     3 /  1%   0% 
+%   3 'tumor-size'              Enum 100%   0%   0%     0 /  0%    11 /  4%   0% 
+%   4 'inv-nodes'               Enum 100%   0%   0%     0 /  0%     7 /  2%   0% 
+%   5 'node-caps'               Enum  97%   0%   0%     8 /  3%     2 /  1%   0% 
+%   6 'deg-malig'               Enum 100%   0%   0%     0 /  0%     3 /  1%   0% 
+%   7 'breast'                  Enum 100%   0%   0%     0 /  0%     2 /  1%   0% 
+%   8 'breast-quad'             Enum 100%   0%   0%     1 /  0%     5 /  2%   0% 
+%   9 'irradiat'                Enum 100%   0%   0%     0 /  0%     2 /  1%   0% 
+%  10 'Class'                   Enum 100%   0%   0%     0 /  0%     2 /  1%   0% 
+%
+%
+@relation breast-cancer
+@attribute age {'10-19','20-29','30-39','40-49','50-59','60-69','70-79','80-89','90-99'}
+@attribute menopause {'lt40','ge40','premeno'}
+@attribute tumor-size {'0-4','5-9','10-14','15-19','20-24','25-29','30-34','35-39','40-44','45-49','50-54','55-59'}
+@attribute inv-nodes {'0-2','3-5','6-8','9-11','12-14','15-17','18-20','21-23','24-26','27-29','30-32','33-35','36-39'}
+@attribute node-caps {'yes','no'}
+@attribute deg-malig {'1','2','3'}
+@attribute breast {'left','right'}
+@attribute breast-quad {'left_up','left_low','right_up','right_low','central'}
+@attribute 'irradiat' {'yes','no'}
+@attribute 'Class' {'no-recurrence-events','recurrence-events'}
+@data
+'40-49','premeno','15-19','0-2','yes','3','right','left_up','no','recurrence-events'
+'50-59','ge40','15-19','0-2','no','1','right','central','no','no-recurrence-events'
+'50-59','ge40','35-39','0-2','no','2','left','left_low','no','recurrence-events'
+'40-49','premeno','35-39','0-2','yes','3','right','left_low','yes','no-recurrence-events'
+'40-49','premeno','30-34','3-5','yes','2','left','right_up','no','recurrence-events'
+'50-59','premeno','25-29','3-5','no','2','right','left_up','yes','no-recurrence-events'
+'50-59','ge40','40-44','0-2','no','3','left','left_up','no','no-recurrence-events'
+'40-49','premeno','10-14','0-2','no','2','left','left_up','no','no-recurrence-events'
+'40-49','premeno','0-4','0-2','no','2','right','right_low','no','no-recurrence-events'
+'40-49','ge40','40-44','15-17','yes','2','right','left_up','yes','no-recurrence-events'
+'50-59','premeno','25-29','0-2','no','2','left','left_low','no','no-recurrence-events'
+'60-69','ge40','15-19','0-2','no','2','right','left_up','no','no-recurrence-events'
+'50-59','ge40','30-34','0-2','no','1','right','central','no','no-recurrence-events'
+'50-59','ge40','25-29','0-2','no','2','right','left_up','no','no-recurrence-events'
+'40-49','premeno','25-29','0-2','no','2','left','left_low','yes','recurrence-events'
+'30-39','premeno','20-24','0-2','no','3','left','central','no','no-recurrence-events'
+'50-59','premeno','10-14','3-5','no','1','right','left_up','no','no-recurrence-events'
+'60-69','ge40','15-19','0-2','no','2','right','left_up','no','no-recurrence-events'
+'50-59','premeno','40-44','0-2','no','2','left','left_up','no','no-recurrence-events'
+'50-59','ge40','20-24','0-2','no','3','left','left_up','no','no-recurrence-events'
+'50-59','lt40','20-24','0-2',?,'1','left','left_low','no','recurrence-events'
+'60-69','ge40','40-44','3-5','no','2','right','left_up','yes','no-recurrence-events'
+'50-59','ge40','15-19','0-2','no','2','right','left_low','no','no-recurrence-events'
+'40-49','premeno','10-14','0-2','no','1','right','left_up','no','no-recurrence-events'
+'30-39','premeno','15-19','6-8','yes','3','left','left_low','yes','recurrence-events'
+'50-59','ge40','20-24','3-5','yes','2','right','left_up','no','no-recurrence-events'
+'50-59','ge40','10-14','0-2','no','2','right','left_low','no','no-recurrence-events'
+'40-49','premeno','10-14','0-2','no','1','right','left_up','no','no-recurrence-events'
+'60-69','ge40','30-34','3-5','yes','3','left','left_low','no','no-recurrence-events'
+'40-49','premeno','15-19','15-17','yes','3','left','left_low','no','recurrence-events'
+'60-69','ge40','30-34','0-2','no','3','right','central','no','recurrence-events'
+'60-69','ge40','25-29','3-5',?,'1','right','left_low','yes','no-recurrence-events'
+'50-59','ge40','25-29','0-2','no','3','left','right_up','no','no-recurrence-events'
+'50-59','ge40','20-24','0-2','no','3','right','left_up','no','no-recurrence-events'
+'40-49','premeno','30-34','0-2','no','1','left','left_low','yes','recurrence-events'
+'30-39','premeno','15-19','0-2','no','1','left','left_low','no','no-recurrence-events'
+'40-49','premeno','10-14','0-2','no','2','right','left_up','no','no-recurrence-events'
+'60-69','ge40','45-49','6-8','yes','3','left','central','no','no-recurrence-events'
+'40-49','ge40','20-24','0-2','no','3','left','left_low','no','no-recurrence-events'
+'40-49','premeno','10-14','0-2','no','1','right','right_low','no','no-recurrence-events'
+'30-39','premeno','35-39','0-2','no','3','left','left_low','no','recurrence-events'
+'40-49','premeno','35-39','9-11','yes','2','right','right_up','yes','no-recurrence-events'
+'60-69','ge40','25-29','0-2','no','2','right','left_low','no','no-recurrence-events'
+'50-59','ge40','20-24','3-5','yes','3','right','right_up','no','recurrence-events'
+'30-39','premeno','15-19','0-2','no','1','left','left_low','no','no-recurrence-events'
+'50-59','premeno','30-34','0-2','no','3','left','right_up','no','recurrence-events'
+'60-69','ge40','10-14','0-2','no','2','right','left_up','yes','no-recurrence-events'
+'40-49','premeno','35-39','0-2','yes','3','right','left_up','yes','no-recurrence-events'
+'50-59','premeno','50-54','0-2','yes','2','right','left_up','yes','no-recurrence-events'
+'50-59','ge40','40-44','0-2','no','3','right','left_up','no','no-recurrence-events'
+'70-79','ge40','15-19','9-11',?,'1','left','left_low','yes','recurrence-events'
+'50-59','lt40','30-34','0-2','no','3','right','left_up','no','no-recurrence-events'
+'40-49','premeno','0-4','0-2','no','3','left','central','no','no-recurrence-events'
+'70-79','ge40','40-44','0-2','no','1','right','right_up','no','no-recurrence-events'
+'40-49','premeno','25-29','0-2',?,'2','left','right_low','yes','no-recurrence-events'
+'50-59','ge40','25-29','15-17','yes','3','right','left_up','no','no-recurrence-events'
+'50-59','premeno','20-24','0-2','no','1','left','left_low','no','no-recurrence-events'
+'50-59','ge40','35-39','15-17','no','3','left','left_low','no','no-recurrence-events'
+'50-59','ge40','50-54','0-2','no','1','right','right_up','no','no-recurrence-events'
+'30-39','premeno','0-4','0-2','no','2','right','central','no','recurrence-events'
+'50-59','ge40','40-44','6-8','yes','3','left','left_low','yes','recurrence-events'
+'40-49','premeno','30-34','0-2','no','2','right','right_up','yes','no-recurrence-events'
+'40-49','ge40','20-24','0-2','no','3','left','left_up','no','no-recurrence-events'
+'40-49','premeno','30-34','15-17','yes','3','left','left_low','no','recurrence-events'
+'40-49','ge40','20-24','0-2','no','2','right','left_up','no','recurrence-events'
+'50-59','ge40','15-19','0-2','no','1','right','central','no','no-recurrence-events'
+'30-39','premeno','25-29','0-2','no','2','right','left_low','no','no-recurrence-events'
+'60-69','ge40','15-19','0-2','no','2','left','left_low','no','no-recurrence-events'
+'50-59','premeno','50-54','9-11','yes','2','right','left_up','no','recurrence-events'
+'30-39','premeno','10-14','0-2','no','1','right','left_low','no','no-recurrence-events'
+'50-59','premeno','25-29','3-5','yes','3','left','left_low','yes','recurrence-events'
+'60-69','ge40','25-29','3-5',?,'1','right','left_up','yes','no-recurrence-events'
+'60-69','ge40','10-14','0-2','no','1','right','left_low','no','no-recurrence-events'
+'50-59','ge40','30-34','6-8','yes','3','left','right_low','no','recurrence-events'
+'30-39','premeno','25-29','6-8','yes','3','left','right_low','yes','recurrence-events'
+'50-59','ge40','10-14','0-2','no','1','left','left_low','no','no-recurrence-events'
+'50-59','premeno','15-19','0-2','no','1','left','left_low','no','no-recurrence-events'
+'40-49','premeno','25-29','0-2','no','2','right','central','no','no-recurrence-events'
+'40-49','premeno','25-29','0-2','no','3','left','right_up','no','recurrence-events'
+'60-69','ge40','30-34','6-8','yes','2','right','right_up','no','no-recurrence-events'
+'50-59','lt40','15-19','0-2','no','2','left','left_low','no','no-recurrence-events'
+'40-49','premeno','25-29','0-2','no','2','right','left_low','no','no-recurrence-events'
+'40-49','premeno','30-34','0-2','no','1','right','left_up','no','no-recurrence-events'
+'60-69','ge40','15-19','0-2','no','2','left','left_up','yes','no-recurrence-events'
+'30-39','premeno','0-4','0-2','no','2','right','central','no','no-recurrence-events'
+'50-59','ge40','35-39','0-2','no','3','left','left_up','no','no-recurrence-events'
+'40-49','premeno','40-44','0-2','no','1','right','left_up','no','no-recurrence-events'
+'30-39','premeno','25-29','6-8','yes','2','right','left_up','yes','no-recurrence-events'
+'50-59','ge40','20-24','0-2','no','1','right','left_low','no','no-recurrence-events'
+'50-59','ge40','30-34','0-2','no','1','left','left_up','no','no-recurrence-events'
+'60-69','ge40','20-24','0-2','no','1','right','left_up','no','recurrence-events'
+'30-39','premeno','30-34','3-5','no','3','right','left_up','yes','recurrence-events'
+'50-59','lt40','20-24','0-2',?,'1','left','left_up','no','recurrence-events'
+'50-59','premeno','10-14','0-2','no','2','right','left_up','no','no-recurrence-events'
+'50-59','ge40','20-24','0-2','no','2','right','left_up','no','no-recurrence-events'
+'40-49','premeno','45-49','0-2','no','2','left','left_low','yes','no-recurrence-events'
+'30-39','premeno','40-44','0-2','no','1','left','left_up','no','recurrence-events'
+'50-59','premeno','10-14','0-2','no','1','left','left_low','no','no-recurrence-events'
+'60-69','ge40','30-34','0-2','no','3','right','left_up','yes','recurrence-events'
+'40-49','premeno','35-39','0-2','no','1','right','left_up','no','recurrence-events'
+'40-49','premeno','20-24','3-5','yes','2','left','left_low','yes','recurrence-events'
+'50-59','premeno','15-19','0-2','no','2','left','left_low','no','recurrence-events'
+'50-59','ge40','30-34','0-2','no','3','right','left_low','no','no-recurrence-events'
+'60-69','ge40','20-24','0-2','no','2','left','left_up','no','no-recurrence-events'
+'40-49','premeno','20-24','0-2','no','1','left','right_low','no','no-recurrence-events'
+'60-69','ge40','30-34','3-5','yes','2','left','central','yes','recurrence-events'
+'60-69','ge40','20-24','3-5','no','2','left','left_low','yes','recurrence-events'
+'50-59','premeno','25-29','0-2','no','2','left','right_up','no','recurrence-events'
+'50-59','ge40','30-34','0-2','no','1','right','right_up','no','no-recurrence-events'
+'40-49','premeno','20-24','0-2','no','2','left','right_low','no','no-recurrence-events'
+'60-69','ge40','15-19','0-2','no','1','right','left_up','no','no-recurrence-events'
+'60-69','ge40','30-34','0-2','no','2','left','left_low','yes','no-recurrence-events'
+'30-39','premeno','30-34','0-2','no','2','left','left_up','no','no-recurrence-events'
+'30-39','premeno','40-44','3-5','no','3','right','right_up','yes','no-recurrence-events'
+'60-69','ge40','5-9','0-2','no','1','left','central','no','no-recurrence-events'
+'60-69','ge40','10-14','0-2','no','1','left','left_up','no','no-recurrence-events'
+'40-49','premeno','30-34','6-8','yes','3','right','left_up','no','recurrence-events'
+'60-69','ge40','10-14','0-2','no','1','left','left_up','no','no-recurrence-events'
+'40-49','premeno','35-39','9-11','yes','2','right','left_up','yes','no-recurrence-events'
+'40-49','premeno','20-24','0-2','no','1','right','left_low','no','no-recurrence-events'
+'40-49','premeno','30-34','0-2','yes','3','right','right_up','no','recurrence-events'
+'50-59','premeno','25-29','0-2','yes','2','left','left_up','no','no-recurrence-events'
+'40-49','premeno','15-19','0-2','no','2','left','left_low','no','no-recurrence-events'
+'30-39','premeno','35-39','9-11','yes','3','left','left_low','no','recurrence-events'
+'30-39','premeno','10-14','0-2','no','2','left','right_low','no','no-recurrence-events'
+'50-59','ge40','30-34','0-2','no','1','right','left_low','no','no-recurrence-events'
+'60-69','ge40','30-34','0-2','no','2','left','left_up','no','no-recurrence-events'
+'60-69','ge40','25-29','0-2','no','2','left','left_low','no','no-recurrence-events'
+'40-49','premeno','15-19','0-2','no','2','left','left_up','no','recurrence-events'
+'60-69','ge40','15-19','0-2','no','2','right','left_low','no','no-recurrence-events'
+'40-49','premeno','30-34','0-2','no','2','left','right_low','no','no-recurrence-events'
+'20-29','premeno','35-39','0-2','no','2','right','right_up','no','no-recurrence-events'
+'40-49','premeno','30-34','0-2','no','3','right','right_up','no','recurrence-events'
+'40-49','premeno','25-29','0-2','no','2','right','left_low','no','recurrence-events'
+'30-39','premeno','30-34','0-2','no','3','left','left_low','no','no-recurrence-events'
+'30-39','premeno','15-19','0-2','no','1','right','left_low','no','recurrence-events'
+'50-59','ge40','0-4','0-2','no','1','right','central','no','no-recurrence-events'
+'50-59','ge40','0-4','0-2','no','1','left','left_low','no','no-recurrence-events'
+'60-69','ge40','50-54','0-2','no','3','right','left_up','no','recurrence-events'
+'50-59','premeno','30-34','0-2','no','1','left','central','no','no-recurrence-events'
+'60-69','ge40','20-24','24-26','yes','3','left','left_low','yes','recurrence-events'
+'40-49','premeno','25-29','0-2','no','2','left','left_up','no','no-recurrence-events'
+'40-49','premeno','30-34','3-5','no','2','right','left_up','no','recurrence-events'
+'50-59','premeno','20-24','3-5','yes','2','left','left_low','no','no-recurrence-events'
+'50-59','ge40','15-19','0-2','yes','2','left','central','yes','no-recurrence-events'
+'50-59','premeno','10-14','0-2','no','3','left','left_low','no','no-recurrence-events'
+'30-39','premeno','30-34','9-11','no','2','right','left_up','yes','recurrence-events'
+'60-69','ge40','10-14','0-2','no','1','left','left_low','no','no-recurrence-events'
+'40-49','premeno','40-44','0-2','no','2','right','left_low','no','no-recurrence-events'
+'50-59','ge40','30-34','9-11',?,'3','left','left_up','yes','no-recurrence-events'
+'40-49','premeno','50-54','0-2','no','2','right','left_low','yes','recurrence-events'
+'50-59','ge40','15-19','0-2','no','2','right','right_up','no','no-recurrence-events'
+'50-59','ge40','40-44','3-5','yes','2','left','left_low','no','no-recurrence-events'
+'30-39','premeno','25-29','3-5','yes','3','left','left_low','yes','recurrence-events'
+'60-69','ge40','10-14','0-2','no','2','left','left_low','no','no-recurrence-events'
+'60-69','lt40','10-14','0-2','no','1','left','right_up','no','no-recurrence-events'
+'30-39','premeno','30-34','0-2','no','2','left','left_up','no','recurrence-events'
+'30-39','premeno','20-24','3-5','yes','2','left','left_low','no','recurrence-events'
+'50-59','ge40','10-14','0-2','no','1','right','left_up','no','no-recurrence-events'
+'60-69','ge40','25-29','0-2','no','3','right','left_up','no','no-recurrence-events'
+'50-59','ge40','25-29','3-5','yes','3','right','left_up','no','no-recurrence-events'
+'40-49','premeno','30-34','6-8','no','2','left','left_up','no','no-recurrence-events'
+'60-69','ge40','50-54','0-2','no','2','left','left_low','no','no-recurrence-events'
+'50-59','premeno','30-34','0-2','no','3','left','left_low','no','no-recurrence-events'
+'40-49','ge40','20-24','3-5','no','3','right','left_low','yes','recurrence-events'
+'50-59','ge40','30-34','6-8','yes','2','left','right_low','yes','recurrence-events'
+'60-69','ge40','25-29','3-5','no','2','right','right_up','no','recurrence-events'
+'40-49','premeno','20-24','0-2','no','2','left','central','no','no-recurrence-events'
+'40-49','premeno','20-24','0-2','no','2','left','left_up','no','no-recurrence-events'
+'40-49','premeno','50-54','0-2','no','2','left','left_low','no','no-recurrence-events'
+'50-59','ge40','20-24','0-2','no','2','right','central','no','recurrence-events'
+'50-59','ge40','30-34','3-5','no','3','right','left_up','no','recurrence-events'
+'40-49','ge40','25-29','0-2','no','2','left','left_low','no','no-recurrence-events'
+'50-59','premeno','25-29','0-2','no','1','right','left_up','no','recurrence-events'
+'40-49','premeno','40-44','3-5','yes','3','right','left_up','yes','no-recurrence-events'
+'40-49','premeno','20-24','0-2','no','2','right','left_up','no','no-recurrence-events'
+'40-49','premeno','20-24','3-5','no','2','right','left_up','no','no-recurrence-events'
+'40-49','premeno','25-29','9-11','yes','3','right','left_up','no','recurrence-events'
+'40-49','premeno','25-29','0-2','no','2','right','left_low','no','recurrence-events'
+'40-49','premeno','20-24','0-2','no','1','right','right_up','no','no-recurrence-events'
+'30-39','premeno','40-44','0-2','no','2','right','right_up','no','no-recurrence-events'
+'60-69','ge40','10-14','6-8','yes','3','left','left_up','yes','recurrence-events'
+'40-49','premeno','35-39','0-2','no','1','left','left_low','no','no-recurrence-events'
+'50-59','ge40','30-34','3-5','no','3','left','left_low','no','recurrence-events'
+'40-49','premeno','5-9','0-2','no','1','left','left_low','yes','no-recurrence-events'
+'60-69','ge40','15-19','0-2','no','1','left','right_low','no','no-recurrence-events'
+'40-49','premeno','30-34','0-2','no','3','right','right_up','no','no-recurrence-events'
+'40-49','premeno','25-29','0-2','no','3','left','left_up','no','recurrence-events'
+'50-59','ge40','5-9','0-2','no','2','right','right_up','no','no-recurrence-events'
+'50-59','premeno','25-29','0-2','no','2','right','right_low','no','no-recurrence-events'
+'50-59','premeno','25-29','0-2','no','2','left','right_up','no','recurrence-events'
+'40-49','premeno','10-14','0-2','no','2','left','left_low','yes','no-recurrence-events'
+'60-69','ge40','35-39','6-8','yes','3','left','left_low','no','recurrence-events'
+'60-69','ge40','50-54','0-2','no','2','right','left_up','yes','no-recurrence-events'
+'40-49','premeno','25-29','0-2','no','2','right','left_up','no','no-recurrence-events'
+'30-39','premeno','20-24','3-5','no','2','right','central','no','no-recurrence-events'
+'30-39','premeno','30-34','0-2','no','1','right','left_up','no','recurrence-events'
+'60-69','lt40','30-34','0-2','no','1','left','left_low','no','no-recurrence-events'
+'40-49','premeno','15-19','12-14','no','3','right','right_low','yes','no-recurrence-events'
+'60-69','ge40','20-24','0-2','no','3','right','left_low','no','recurrence-events'
+'30-39','premeno','5-9','0-2','no','2','left','right_low','no','no-recurrence-events'
+'40-49','premeno','30-34','0-2','no','3','left','left_up','no','no-recurrence-events'
+'60-69','ge40','30-34','0-2','no','3','left','left_low','no','no-recurrence-events'
+'40-49','premeno','25-29','0-2','no','1','right','right_low','no','no-recurrence-events'
+'40-49','premeno','25-29','0-2','no','1','left','right_low','no','no-recurrence-events'
+'60-69','ge40','40-44','3-5','yes','3','right','left_low','no','recurrence-events'
+'50-59','ge40','25-29','0-2','no','2','left','left_low','no','no-recurrence-events'
+'50-59','premeno','30-34','0-2','no','3','right','left_up','yes','recurrence-events'
+'40-49','ge40','30-34','3-5','no','3','left','left_low','no','recurrence-events'
+'40-49','premeno','25-29','0-2','no','1','right','left_low','yes','no-recurrence-events'
+'40-49','ge40','25-29','12-14','yes','3','left','right_low','yes','recurrence-events'
+'40-49','premeno','40-44','0-2','no','1','left','left_low','no','recurrence-events'
+'40-49','premeno','20-24','0-2','no','2','left','left_low','no','no-recurrence-events'
+'50-59','ge40','25-29','0-2','no','1','left','right_low','no','no-recurrence-events'
+'40-49','premeno','20-24','0-2','no','2','right','left_up','no','no-recurrence-events'
+'70-79','ge40','40-44','0-2','no','1','right','left_up','no','no-recurrence-events'
+'60-69','ge40','25-29','0-2','no','3','left','left_up','no','recurrence-events'
+'50-59','premeno','25-29','0-2','no','2','left','left_low','no','no-recurrence-events'
+'60-69','ge40','45-49','0-2','no','1','right','right_up','yes','recurrence-events'
+'50-59','ge40','20-24','0-2','yes','2','right','left_up','no','no-recurrence-events'
+'50-59','ge40','25-29','0-2','no','1','left','left_low','no','no-recurrence-events'
+'50-59','ge40','20-24','0-2','no','3','left','left_up','no','no-recurrence-events'
+'40-49','premeno','20-24','3-5','no','2','right','left_low','no','no-recurrence-events'
+'50-59','ge40','35-39','0-2','no','2','left','left_up','no','no-recurrence-events'
+'30-39','premeno','20-24','0-2','no','3','left','left_up','yes','recurrence-events'
+'60-69','ge40','30-34','0-2','no','1','right','left_up','no','no-recurrence-events'
+'60-69','ge40','25-29','0-2','no','3','right','left_low','no','no-recurrence-events'
+'40-49','ge40','30-34','0-2','no','2','left','left_up','yes','no-recurrence-events'
+'30-39','premeno','25-29','0-2','no','2','left','left_low','no','no-recurrence-events'
+'40-49','premeno','20-24','0-2','no','2','left','left_low','no','recurrence-events'
+'30-39','premeno','20-24','0-2','no','2','left','right_low','no','no-recurrence-events'
+'40-49','premeno','10-14','0-2','no','2','right','left_low','no','no-recurrence-events'
+'50-59','premeno','15-19','0-2','no','2','right','right_low','no','no-recurrence-events'
+'50-59','premeno','25-29','0-2','no','1','right','left_up','no','no-recurrence-events'
+'60-69','ge40','20-24','0-2','no','2','right','left_up','no','no-recurrence-events'
+'60-69','ge40','40-44','0-2','no','2','right','left_low','no','recurrence-events'
+'30-39','lt40','15-19','0-2','no','3','right','left_up','no','no-recurrence-events'
+'40-49','premeno','30-34','12-14','yes','3','left','left_up','yes','recurrence-events'
+'60-69','ge40','30-34','0-2','yes','2','right','right_up','yes','recurrence-events'
+'50-59','ge40','40-44','6-8','yes','3','left','left_low','yes','recurrence-events'
+'50-59','ge40','30-34','0-2','no','3','left',?,'no','recurrence-events'
+'70-79','ge40','10-14','0-2','no','2','left','central','no','no-recurrence-events'
+'30-39','premeno','40-44','0-2','no','2','left','left_low','yes','no-recurrence-events'
+'40-49','premeno','30-34','0-2','no','2','right','right_low','no','no-recurrence-events'
+'40-49','premeno','30-34','0-2','no','1','left','left_low','no','no-recurrence-events'
+'60-69','ge40','15-19','0-2','no','2','left','left_low','no','no-recurrence-events'
+'40-49','premeno','10-14','0-2','no','2','left','left_low','no','no-recurrence-events'
+'60-69','ge40','20-24','0-2','no','1','left','left_low','no','no-recurrence-events'
+'50-59','ge40','10-14','0-2','no','1','left','left_up','no','no-recurrence-events'
+'50-59','premeno','25-29','0-2','no','1','left','left_low','no','no-recurrence-events'
+'50-59','ge40','30-34','9-11','yes','3','left','right_low','yes','recurrence-events'
+'50-59','ge40','10-14','0-2','no','2','left','left_low','no','no-recurrence-events'
+'40-49','premeno','30-34','0-2','no','1','left','right_up','no','no-recurrence-events'
+'70-79','ge40','0-4','0-2','no','1','left','right_low','no','no-recurrence-events'
+'40-49','premeno','25-29','0-2','no','3','right','left_up','yes','no-recurrence-events'
+'50-59','premeno','25-29','0-2','no','3','right','left_low','yes','recurrence-events'
+'50-59','ge40','40-44','0-2','no','2','left','left_low','no','no-recurrence-events'
+'60-69','ge40','25-29','0-2','no','3','left','right_low','yes','recurrence-events'
+'40-49','premeno','30-34','3-5','yes','2','right','left_low','no','no-recurrence-events'
+'50-59','ge40','20-24','0-2','no','2','left','left_up','no','recurrence-events'
+'70-79','ge40','20-24','0-2','no','3','left','left_up','no','no-recurrence-events'
+'30-39','premeno','25-29','0-2','no','1','left','central','no','no-recurrence-events'
+'60-69','ge40','30-34','0-2','no','2','left','left_low','no','no-recurrence-events'
+'40-49','premeno','20-24','3-5','yes','2','right','right_up','yes','recurrence-events'
+'50-59','ge40','30-34','9-11',?,'3','left','left_low','yes','no-recurrence-events'
+'50-59','ge40','0-4','0-2','no','2','left','central','no','no-recurrence-events'
+'40-49','premeno','20-24','0-2','no','3','right','left_low','yes','no-recurrence-events'
+'30-39','premeno','35-39','0-2','no','3','left','left_low','no','recurrence-events'
+'60-69','ge40','30-34','0-2','no','1','left','left_up','no','no-recurrence-events'
+'60-69','ge40','20-24','0-2','no','1','left','left_low','no','no-recurrence-events'
+'50-59','ge40','25-29','6-8','no','3','left','left_low','yes','recurrence-events'
+'50-59','premeno','35-39','15-17','yes','3','right','right_up','no','recurrence-events'
+'30-39','premeno','20-24','3-5','yes','2','right','left_up','yes','no-recurrence-events'
+'40-49','premeno','20-24','6-8','no','2','right','left_low','yes','no-recurrence-events'
+'50-59','ge40','35-39','0-2','no','3','left','left_low','no','no-recurrence-events'
+'50-59','premeno','35-39','0-2','no','2','right','left_up','no','no-recurrence-events'
+'40-49','premeno','25-29','0-2','no','2','left','left_up','yes','no-recurrence-events'
+'40-49','premeno','35-39','0-2','no','2','right','right_up','no','no-recurrence-events'
+'50-59','premeno','30-34','3-5','yes','2','left','left_low','yes','no-recurrence-events'
+'40-49','premeno','20-24','0-2','no','2','right','right_up','no','no-recurrence-events'
+'60-69','ge40','15-19','0-2','no','3','right','left_up','yes','no-recurrence-events'
+'50-59','ge40','30-34','6-8','yes','2','left','left_low','no','no-recurrence-events'
+'50-59','premeno','25-29','3-5','yes','2','left','left_low','yes','no-recurrence-events'
+'30-39','premeno','30-34','6-8','yes','2','right','right_up','no','no-recurrence-events'
+'50-59','premeno','15-19','0-2','no','2','right','left_low','no','no-recurrence-events'
+'50-59','ge40','40-44','0-2','no','3','left','right_up','no','no-recurrence-events'
+%
+%
+%
diff --git a/arff/src/test/resources/weka-data/contact-lenses.arff b/arff/src/test/resources/weka-data/contact-lenses.arff
new file mode 100644
index 0000000..34fe9b0
--- /dev/null
+++ b/arff/src/test/resources/weka-data/contact-lenses.arff
@@ -0,0 +1,85 @@
+% 1. Title: Database for fitting contact lenses
+% 
+% 2. Sources:
+%      (a) Cendrowska, J. "PRISM: An algorithm for inducing modular rules",
+%          International Journal of Man-Machine Studies, 1987, 27, 349-370
+%      (b) Donor: Benoit Julien (Julien@ce.cmu.edu)
+%      (c) Date: 1 August 1990
+% 
+% 3. Past Usage:
+%       1. See above.
+%       2. Witten, I. H. & MacDonald, B. A. (1988). Using concept
+%          learning for knowledge acquisition. International Journal of
+%          Man-Machine Studies, 27, (pp. 349-370).
+% 
+%  Notes:  This database is complete (all possible combinations of
+%          attribute-value pairs are represented).
+% 
+%          Each instance is complete and correct.
+% 
+%          9 rules cover the training set.
+% 
+% 4. Relevant Information Paragraph:
+%     The examples are complete and noise free.
+%     The examples highly simplified the problem. The attributes do not
+%     fully describe all the factors affecting the decision as to which type,
+%     if any, to fit.
+% 
+% 5. Number of Instances: 24
+% 
+% 6. Number of Attributes: 4 (all nominal)
+% 
+% 7. Attribute Information:
+%     -- 3 Classes
+%      1 : the patient should be fitted with hard contact lenses,
+%      2 : the patient should be fitted with soft contact lenses,
+%      1 : the patient should not be fitted with contact lenses.
+% 
+%     1. age of the patient: (1) young, (2) pre-presbyopic, (3) presbyopic
+%     2. spectacle prescription:  (1) myope, (2) hypermetrope
+%     3. astigmatic:     (1) no, (2) yes
+%     4. tear production rate:  (1) reduced, (2) normal
+% 
+% 8. Number of Missing Attribute Values:   0
+% 
+% 9. Class Distribution:
+%    1. hard contact lenses: 4
+%    2. soft contact lenses: 5
+%    3. no contact lenses: 15
+
+@relation contact-lenses
+
+@attribute age 			{young, pre-presbyopic, presbyopic}
+@attribute spectacle-prescrip	{myope, hypermetrope}
+@attribute astigmatism		{no, yes}
+@attribute tear-prod-rate	{reduced, normal}
+@attribute contact-lenses	{soft, hard, none}
+
+@data
+%
+% 24 instances
+%
+young,myope,no,reduced,none
+young,myope,no,normal,soft
+young,myope,yes,reduced,none
+young,myope,yes,normal,hard
+young,hypermetrope,no,reduced,none
+young,hypermetrope,no,normal,soft
+young,hypermetrope,yes,reduced,none
+young,hypermetrope,yes,normal,hard
+pre-presbyopic,myope,no,reduced,none
+pre-presbyopic,myope,no,normal,soft
+pre-presbyopic,myope,yes,reduced,none
+pre-presbyopic,myope,yes,normal,hard
+pre-presbyopic,hypermetrope,no,reduced,none
+pre-presbyopic,hypermetrope,no,normal,soft
+pre-presbyopic,hypermetrope,yes,reduced,none
+pre-presbyopic,hypermetrope,yes,normal,none
+presbyopic,myope,no,reduced,none
+presbyopic,myope,no,normal,none
+presbyopic,myope,yes,reduced,none
+presbyopic,myope,yes,normal,hard
+presbyopic,hypermetrope,no,reduced,none
+presbyopic,hypermetrope,no,normal,soft
+presbyopic,hypermetrope,yes,reduced,none
+presbyopic,hypermetrope,yes,normal,none
diff --git a/arff/src/test/resources/weka-data/cpu.arff b/arff/src/test/resources/weka-data/cpu.arff
new file mode 100644
index 0000000..3d04e00
--- /dev/null
+++ b/arff/src/test/resources/weka-data/cpu.arff
@@ -0,0 +1,226 @@
+%
+% As used by Kilpatrick, D. & Cameron-Jones, M. (1998). Numeric prediction
+% using instance-based learning with encoding length selection. In Progress
+% in Connectionist-Based Information Systems. Singapore: Springer-Verlag.
+%
+% Deleted "vendor" attribute to make data consistent with with what we
+% used in the data mining book.
+%
+@relation 'cpu'
+@attribute MYCT numeric
+@attribute MMIN numeric
+@attribute MMAX numeric
+@attribute CACH numeric
+@attribute CHMIN numeric
+@attribute CHMAX numeric
+@attribute class numeric
+@data
+125,256,6000,256,16,128,198
+29,8000,32000,32,8,32,269
+29,8000,32000,32,8,32,220
+29,8000,32000,32,8,32,172
+29,8000,16000,32,8,16,132
+26,8000,32000,64,8,32,318
+23,16000,32000,64,16,32,367
+23,16000,32000,64,16,32,489
+23,16000,64000,64,16,32,636
+23,32000,64000,128,32,64,1144
+400,1000,3000,0,1,2,38
+400,512,3500,4,1,6,40
+60,2000,8000,65,1,8,92
+50,4000,16000,65,1,8,138
+350,64,64,0,1,4,10
+200,512,16000,0,4,32,35
+167,524,2000,8,4,15,19
+143,512,5000,0,7,32,28
+143,1000,2000,0,5,16,31
+110,5000,5000,142,8,64,120
+143,1500,6300,0,5,32,30
+143,3100,6200,0,5,20,33
+143,2300,6200,0,6,64,61
+110,3100,6200,0,6,64,76
+320,128,6000,0,1,12,23
+320,512,2000,4,1,3,69
+320,256,6000,0,1,6,33
+320,256,3000,4,1,3,27
+320,512,5000,4,1,5,77
+320,256,5000,4,1,6,27
+25,1310,2620,131,12,24,274
+25,1310,2620,131,12,24,368
+50,2620,10480,30,12,24,32
+50,2620,10480,30,12,24,63
+56,5240,20970,30,12,24,106
+64,5240,20970,30,12,24,208
+50,500,2000,8,1,4,20
+50,1000,4000,8,1,5,29
+50,2000,8000,8,1,5,71
+50,1000,4000,8,3,5,26
+50,1000,8000,8,3,5,36
+50,2000,16000,8,3,5,40
+50,2000,16000,8,3,6,52
+50,2000,16000,8,3,6,60
+133,1000,12000,9,3,12,72
+133,1000,8000,9,3,12,72
+810,512,512,8,1,1,18
+810,1000,5000,0,1,1,20
+320,512,8000,4,1,5,40
+200,512,8000,8,1,8,62
+700,384,8000,0,1,1,24
+700,256,2000,0,1,1,24
+140,1000,16000,16,1,3,138
+200,1000,8000,0,1,2,36
+110,1000,4000,16,1,2,26
+110,1000,12000,16,1,2,60
+220,1000,8000,16,1,2,71
+800,256,8000,0,1,4,12
+800,256,8000,0,1,4,14
+800,256,8000,0,1,4,20
+800,256,8000,0,1,4,16
+800,256,8000,0,1,4,22
+125,512,1000,0,8,20,36
+75,2000,8000,64,1,38,144
+75,2000,16000,64,1,38,144
+75,2000,16000,128,1,38,259
+90,256,1000,0,3,10,17
+105,256,2000,0,3,10,26
+105,1000,4000,0,3,24,32
+105,2000,4000,8,3,19,32
+75,2000,8000,8,3,24,62
+75,3000,8000,8,3,48,64
+175,256,2000,0,3,24,22
+300,768,3000,0,6,24,36
+300,768,3000,6,6,24,44
+300,768,12000,6,6,24,50
+300,768,4500,0,1,24,45
+300,384,12000,6,1,24,53
+300,192,768,6,6,24,36
+180,768,12000,6,1,31,84
+330,1000,3000,0,2,4,16
+300,1000,4000,8,3,64,38
+300,1000,16000,8,2,112,38
+330,1000,2000,0,1,2,16
+330,1000,4000,0,3,6,22
+140,2000,4000,0,3,6,29
+140,2000,4000,0,4,8,40
+140,2000,4000,8,1,20,35
+140,2000,32000,32,1,20,134
+140,2000,8000,32,1,54,66
+140,2000,32000,32,1,54,141
+140,2000,32000,32,1,54,189
+140,2000,4000,8,1,20,22
+57,4000,16000,1,6,12,132
+57,4000,24000,64,12,16,237
+26,16000,32000,64,16,24,465
+26,16000,32000,64,8,24,465
+26,8000,32000,0,8,24,277
+26,8000,16000,0,8,16,185
+480,96,512,0,1,1,6
+203,1000,2000,0,1,5,24
+115,512,6000,16,1,6,45
+1100,512,1500,0,1,1,7
+1100,768,2000,0,1,1,13
+600,768,2000,0,1,1,16
+400,2000,4000,0,1,1,32
+400,4000,8000,0,1,1,32
+900,1000,1000,0,1,2,11
+900,512,1000,0,1,2,11
+900,1000,4000,4,1,2,18
+900,1000,4000,8,1,2,22
+900,2000,4000,0,3,6,37
+225,2000,4000,8,3,6,40
+225,2000,4000,8,3,6,34
+180,2000,8000,8,1,6,50
+185,2000,16000,16,1,6,76
+180,2000,16000,16,1,6,66
+225,1000,4000,2,3,6,24
+25,2000,12000,8,1,4,49
+25,2000,12000,16,3,5,66
+17,4000,16000,8,6,12,100
+17,4000,16000,32,6,12,133
+1500,768,1000,0,0,0,12
+1500,768,2000,0,0,0,18
+800,768,2000,0,0,0,20
+50,2000,4000,0,3,6,27
+50,2000,8000,8,3,6,45
+50,2000,8000,8,1,6,56
+50,2000,16000,24,1,6,70
+50,2000,16000,24,1,6,80
+50,8000,16000,48,1,10,136
+100,1000,8000,0,2,6,16
+100,1000,8000,24,2,6,26
+100,1000,8000,24,3,6,32
+50,2000,16000,12,3,16,45
+50,2000,16000,24,6,16,54
+50,2000,16000,24,6,16,65
+150,512,4000,0,8,128,30
+115,2000,8000,16,1,3,50
+115,2000,4000,2,1,5,40
+92,2000,8000,32,1,6,62
+92,2000,8000,32,1,6,60
+92,2000,8000,4,1,6,50
+75,4000,16000,16,1,6,66
+60,4000,16000,32,1,6,86
+60,2000,16000,64,5,8,74
+60,4000,16000,64,5,8,93
+50,4000,16000,64,5,10,111
+72,4000,16000,64,8,16,143
+72,2000,8000,16,6,8,105
+40,8000,16000,32,8,16,214
+40,8000,32000,64,8,24,277
+35,8000,32000,64,8,24,370
+38,16000,32000,128,16,32,510
+48,4000,24000,32,8,24,214
+38,8000,32000,64,8,24,326
+30,16000,32000,256,16,24,510
+112,1000,1000,0,1,4,8
+84,1000,2000,0,1,6,12
+56,1000,4000,0,1,6,17
+56,2000,6000,0,1,8,21
+56,2000,8000,0,1,8,24
+56,4000,8000,0,1,8,34
+56,4000,12000,0,1,8,42
+56,4000,16000,0,1,8,46
+38,4000,8000,32,16,32,51
+38,4000,8000,32,16,32,116
+38,8000,16000,64,4,8,100
+38,8000,24000,160,4,8,140
+38,4000,16000,128,16,32,212
+200,1000,2000,0,1,2,25
+200,1000,4000,0,1,4,30
+200,2000,8000,64,1,5,41
+250,512,4000,0,1,7,25
+250,512,4000,0,4,7,50
+250,1000,16000,1,1,8,50
+160,512,4000,2,1,5,30
+160,512,2000,2,3,8,32
+160,1000,4000,8,1,14,38
+160,1000,8000,16,1,14,60
+160,2000,8000,32,1,13,109
+240,512,1000,8,1,3,6
+240,512,2000,8,1,5,11
+105,2000,4000,8,3,8,22
+105,2000,6000,16,6,16,33
+105,2000,8000,16,4,14,58
+52,4000,16000,32,4,12,130
+70,4000,12000,8,6,8,75
+59,4000,12000,32,6,12,113
+59,8000,16000,64,12,24,188
+26,8000,24000,32,8,16,173
+26,8000,32000,64,12,16,248
+26,8000,32000,128,24,32,405
+116,2000,8000,32,5,28,70
+50,2000,32000,24,6,26,114
+50,2000,32000,48,26,52,208
+50,2000,32000,112,52,104,307
+50,4000,32000,112,52,104,397
+30,8000,64000,96,12,176,915
+30,8000,64000,128,12,176,1150
+180,262,4000,0,1,3,12
+180,512,4000,0,1,3,14
+180,262,4000,0,1,3,18
+180,512,4000,0,1,3,21
+124,1000,8000,0,1,8,42
+98,1000,8000,32,2,8,46
+125,2000,8000,0,2,14,52
+480,512,8000,32,0,0,67
+480,1000,4000,0,0,0,45
diff --git a/arff/src/test/resources/weka-data/cpu.with.vendor.arff b/arff/src/test/resources/weka-data/cpu.with.vendor.arff
new file mode 100644
index 0000000..6f60f79
--- /dev/null
+++ b/arff/src/test/resources/weka-data/cpu.with.vendor.arff
@@ -0,0 +1,225 @@
+%
+% As used by Kilpatrick, D. & Cameron-Jones, M. (1998). Numeric prediction
+% using instance-based learning with encoding length selection. In Progress
+% in Connectionist-Based Information Systems. Singapore: Springer-Verlag.
+%
+
+@relation 'cpu'
+@attribute vendor { adviser, amdahl, apollo, basf, bti, burroughs, c.r.d, cdc, cambex, dec, dg, formation, four-phase, gould, hp, harris, honeywell, ibm, ipl, magnuson, microdata, nas, ncr, nixdorf, perkin-elmer, prime, siemens, sperry, sratus, wang}
+@attribute MYCT numeric
+@attribute MMIN numeric
+@attribute MMAX numeric
+@attribute CACH numeric
+@attribute CHMIN numeric
+@attribute CHMAX numeric
+@attribute class numeric
+@data
+adviser,125,256,6000,256,16,128,199
+amdahl,29,8000,32000,32,8,32,253
+amdahl,29,8000,32000,32,8,32,253
+amdahl,29,8000,32000,32,8,32,253
+amdahl,29,8000,16000,32,8,16,132
+amdahl,26,8000,32000,64,8,32,290
+amdahl,23,16000,32000,64,16,32,381
+amdahl,23,16000,32000,64,16,32,381
+amdahl,23,16000,64000,64,16,32,749
+amdahl,23,32000,64000,128,32,64,1238
+apollo,400,1000,3000,0,1,2,23
+apollo,400,512,3500,4,1,6,24
+basf,60,2000,8000,65,1,8,70
+basf,50,4000,16000,65,1,8,117
+bti,350,64,64,0,1,4,15
+bti,200,512,16000,0,4,32,64
+burroughs,167,524,2000,8,4,15,23
+burroughs,143,512,5000,0,7,32,29
+burroughs,143,1000,2000,0,5,16,22
+burroughs,110,5000,5000,142,8,64,124
+burroughs,143,1500,6300,0,5,32,35
+burroughs,143,3100,6200,0,5,20,39
+burroughs,143,2300,6200,0,6,64,40
+burroughs,110,3100,6200,0,6,64,45
+c.r.d,320,128,6000,0,1,12,28
+c.r.d,320,512,2000,4,1,3,21
+c.r.d,320,256,6000,0,1,6,28
+c.r.d,320,256,3000,4,1,3,22
+c.r.d,320,512,5000,4,1,5,28
+c.r.d,320,256,5000,4,1,6,27
+cdc,25,1310,2620,131,12,24,102
+cdc,25,1310,2620,131,12,24,102
+cdc,50,2620,10480,30,12,24,74
+cdc,50,2620,10480,30,12,24,74
+cdc,56,5240,20970,30,12,24,138
+cdc,64,5240,20970,30,12,24,136
+cdc,50,500,2000,8,1,4,23
+cdc,50,1000,4000,8,1,5,29
+cdc,50,2000,8000,8,1,5,44
+cambex,50,1000,4000,8,3,5,30
+cambex,50,1000,8000,8,3,5,41
+cambex,50,2000,16000,8,3,5,74
+cambex,50,2000,16000,8,3,6,74
+cambex,50,2000,16000,8,3,6,74
+dec,133,1000,12000,9,3,12,54
+dec,133,1000,8000,9,3,12,41
+dec,810,512,512,8,1,1,18
+dec,810,1000,5000,0,1,1,28
+dec,320,512,8000,4,1,5,36
+dec,200,512,8000,8,1,8,38
+dg,700,384,8000,0,1,1,34
+dg,700,256,2000,0,1,1,19
+dg,140,1000,16000,16,1,3,72
+dg,200,1000,8000,0,1,2,36
+dg,110,1000,4000,16,1,2,30
+dg,110,1000,12000,16,1,2,56
+dg,220,1000,8000,16,1,2,42
+formation,800,256,8000,0,1,4,34
+formation,800,256,8000,0,1,4,34
+formation,800,256,8000,0,1,4,34
+formation,800,256,8000,0,1,4,34
+formation,800,256,8000,0,1,4,34
+four-phase,125,512,1000,0,8,20,19
+gould,75,2000,8000,64,1,38,75
+gould,75,2000,16000,64,1,38,113
+gould,75,2000,16000,128,1,38,157
+hp,90,256,1000,0,3,10,18
+hp,105,256,2000,0,3,10,20
+hp,105,1000,4000,0,3,24,28
+hp,105,2000,4000,8,3,19,33
+hp,75,2000,8000,8,3,24,47
+hp,75,3000,8000,8,3,48,54
+hp,175,256,2000,0,3,24,20
+harris,300,768,3000,0,6,24,23
+harris,300,768,3000,6,6,24,25
+harris,300,768,12000,6,6,24,52
+harris,300,768,4500,0,1,24,27
+harris,300,384,12000,6,1,24,50
+harris,300,192,768,6,6,24,18
+harris,180,768,12000,6,1,31,53
+honeywell,330,1000,3000,0,2,4,23
+honeywell,300,1000,4000,8,3,64,30
+honeywell,300,1000,16000,8,2,112,73
+honeywell,330,1000,2000,0,1,2,20
+honeywell,330,1000,4000,0,3,6,25
+honeywell,140,2000,4000,0,3,6,28
+honeywell,140,2000,4000,0,4,8,29
+honeywell,140,2000,4000,8,1,20,32
+honeywell,140,2000,32000,32,1,20,175
+honeywell,140,2000,8000,32,1,54,57
+honeywell,140,2000,32000,32,1,54,181
+honeywell,140,2000,32000,32,1,54,181
+honeywell,140,2000,4000,8,1,20,32
+ibm,57,4000,16000,1,6,12,82
+ibm,57,4000,24000,64,12,16,171
+ibm,26,16000,32000,64,16,24,361
+ibm,26,16000,32000,64,8,24,350
+ibm,26,8000,32000,0,8,24,220
+ibm,26,8000,16000,0,8,16,113
+ibm,480,96,512,0,1,1,15
+ibm,203,1000,2000,0,1,5,21
+ibm,115,512,6000,16,1,6,35
+ibm,1100,512,1500,0,1,1,18
+ibm,1100,768,2000,0,1,1,20
+ibm,600,768,2000,0,1,1,20
+ibm,400,2000,4000,0,1,1,28
+ibm,400,4000,8000,0,1,1,45
+ibm,900,1000,1000,0,1,2,18
+ibm,900,512,1000,0,1,2,17
+ibm,900,1000,4000,4,1,2,26
+ibm,900,1000,4000,8,1,2,28
+ibm,900,2000,4000,0,3,6,28
+ibm,225,2000,4000,8,3,6,31
+ibm,225,2000,4000,8,3,6,31
+ibm,180,2000,8000,8,1,6,42
+ibm,185,2000,16000,16,1,6,76
+ibm,180,2000,16000,16,1,6,76
+ibm,225,1000,4000,2,3,6,26
+ibm,25,2000,12000,8,1,4,59
+ibm,25,2000,12000,16,3,5,65
+ibm,17,4000,16000,8,6,12,101
+ibm,17,4000,16000,32,6,12,116
+ibm,1500,768,1000,0,0,0,18
+ibm,1500,768,2000,0,0,0,20
+ibm,800,768,2000,0,0,0,20
+ipl,50,2000,4000,0,3,6,30
+ipl,50,2000,8000,8,3,6,44
+ipl,50,2000,8000,8,1,6,44
+ipl,50,2000,16000,24,1,6,82
+ipl,50,2000,16000,24,1,6,82
+ipl,50,8000,16000,48,1,10,128
+magnuson,100,1000,8000,0,2,6,37
+magnuson,100,1000,8000,24,2,6,46
+magnuson,100,1000,8000,24,3,6,46
+magnuson,50,2000,16000,12,3,16,80
+magnuson,50,2000,16000,24,6,16,88
+magnuson,50,2000,16000,24,6,16,88
+microdata,150,512,4000,0,8,128,33
+nas,115,2000,8000,16,1,3,46
+nas,115,2000,4000,2,1,5,29
+nas,92,2000,8000,32,1,6,53
+nas,92,2000,8000,32,1,6,53
+nas,92,2000,8000,4,1,6,41
+nas,75,4000,16000,16,1,6,86
+nas,60,4000,16000,32,1,6,95
+nas,60,2000,16000,64,5,8,107
+nas,60,4000,16000,64,5,8,117
+nas,50,4000,16000,64,5,10,119
+nas,72,4000,16000,64,8,16,120
+nas,72,2000,8000,16,6,8,48
+nas,40,8000,16000,32,8,16,126
+nas,40,8000,32000,64,8,24,266
+nas,35,8000,32000,64,8,24,270
+nas,38,16000,32000,128,16,32,426
+nas,48,4000,24000,32,8,24,151
+nas,38,8000,32000,64,8,24,267
+nas,30,16000,32000,256,16,24,603
+ncr,112,1000,1000,0,1,4,19
+ncr,84,1000,2000,0,1,6,21
+ncr,56,1000,4000,0,1,6,26
+ncr,56,2000,6000,0,1,8,35
+ncr,56,2000,8000,0,1,8,41
+ncr,56,4000,8000,0,1,8,47
+ncr,56,4000,12000,0,1,8,62
+ncr,56,4000,16000,0,1,8,78
+ncr,38,4000,8000,32,16,32,80
+ncr,38,4000,8000,32,16,32,80
+ncr,38,8000,16000,64,4,8,142
+ncr,38,8000,24000,160,4,8,281
+ncr,38,4000,16000,128,16,32,190
+nixdorf,200,1000,2000,0,1,2,21
+nixdorf,200,1000,4000,0,1,4,25
+nixdorf,200,2000,8000,64,1,5,67
+perkin-elmer,250,512,4000,0,1,7,24
+perkin-elmer,250,512,4000,0,4,7,24
+perkin-elmer,250,1000,16000,1,1,8,64
+prime,160,512,4000,2,1,5,25
+prime,160,512,2000,2,3,8,20
+prime,160,1000,4000,8,1,14,29
+prime,160,1000,8000,16,1,14,43
+prime,160,2000,8000,32,1,13,53
+siemens,240,512,1000,8,1,3,19
+siemens,240,512,2000,8,1,5,22
+siemens,105,2000,4000,8,3,8,31
+siemens,105,2000,6000,16,6,16,41
+siemens,105,2000,8000,16,4,14,47
+siemens,52,4000,16000,32,4,12,99
+siemens,70,4000,12000,8,6,8,67
+siemens,59,4000,12000,32,6,12,81
+siemens,59,8000,16000,64,12,24,149
+siemens,26,8000,24000,32,8,16,183
+siemens,26,8000,32000,64,12,16,275
+siemens,26,8000,32000,128,24,32,382
+sperry,116,2000,8000,32,5,28,56
+sperry,50,2000,32000,24,6,26,182
+sperry,50,2000,32000,48,26,52,227
+sperry,50,2000,32000,112,52,104,341
+sperry,50,4000,32000,112,52,104,360
+sperry,30,8000,64000,96,12,176,919
+sperry,30,8000,64000,128,12,176,978
+sperry,180,262,4000,0,1,3,24
+sperry,180,512,4000,0,1,3,24
+sperry,180,262,4000,0,1,3,24
+sperry,180,512,4000,0,1,3,24
+sperry,124,1000,8000,0,1,8,37
+sperry,98,1000,8000,32,2,8,50
+sratus,125,2000,8000,0,2,14,41
+wang,480,512,8000,32,0,0,47
+wang,480,1000,4000,0,0,0,25
diff --git a/arff/src/test/resources/weka-data/credit-g.arff b/arff/src/test/resources/weka-data/credit-g.arff
new file mode 100644
index 0000000..0b75204
--- /dev/null
+++ b/arff/src/test/resources/weka-data/credit-g.arff
@@ -0,0 +1,1301 @@
+% Description of the German credit dataset.
+% 
+% 1. Title: German Credit data
+% 
+% 2. Source Information
+% 
+% Professor Dr. Hans Hofmann  
+% Institut f"ur Statistik und "Okonometrie  
+% Universit"at Hamburg  
+% FB Wirtschaftswissenschaften  
+% Von-Melle-Park 5    
+% 2000 Hamburg 13 
+% 
+% 3. Number of Instances:  1000
+% 
+% Two datasets are provided.  the original dataset, in the form provided
+% by Prof. Hofmann, contains categorical/symbolic attributes and
+% is in the file "german.data".   
+%  
+% For algorithms that need numerical attributes, Strathclyde University 
+% produced the file "german.data-numeric".  This file has been edited 
+% and several indicator variables added to make it suitable for 
+% algorithms which cannot cope with categorical variables.   Several
+% attributes that are ordered categorical (such as attribute 17) have
+% been coded as integer.    This was the form used by StatLog.
+% 
+% 
+% 6. Number of Attributes german: 20 (7 numerical, 13 categorical)
+%    Number of Attributes german.numer: 24 (24 numerical)
+% 
+% 
+% 7.  Attribute description for german
+% 
+% Attribute 1:  (qualitative)
+% 	       Status of existing checking account
+%                A11 :      ... <    0 DM
+% 	       A12 : 0 <= ... <  200 DM
+% 	       A13 :      ... >= 200 DM /
+% 		     salary assignments for at least 1 year
+%                A14 : no checking account
+% 
+% Attribute 2:  (numerical)
+% 	      Duration in month
+% 
+% Attribute 3:  (qualitative)
+% 	      Credit history
+% 	      A30 : no credits taken/
+% 		    all credits paid back duly
+%               A31 : all credits at this bank paid back duly
+% 	      A32 : existing credits paid back duly till now
+%               A33 : delay in paying off in the past
+% 	      A34 : critical account/
+% 		    other credits existing (not at this bank)
+% 
+% Attribute 4:  (qualitative)
+% 	      Purpose
+% 	      A40 : car (new)
+% 	      A41 : car (used)
+% 	      A42 : furniture/equipment
+% 	      A43 : radio/television
+% 	      A44 : domestic appliances
+% 	      A45 : repairs
+% 	      A46 : education
+% 	      A47 : (vacation - does not exist?)
+% 	      A48 : retraining
+% 	      A49 : business
+% 	      A410 : others
+% 
+% Attribute 5:  (numerical)
+% 	      Credit amount
+% 
+% Attibute 6:  (qualitative)
+% 	      Savings account/bonds
+% 	      A61 :          ... <  100 DM
+% 	      A62 :   100 <= ... <  500 DM
+% 	      A63 :   500 <= ... < 1000 DM
+% 	      A64 :          .. >= 1000 DM
+%               A65 :   unknown/ no savings account
+% 
+% Attribute 7:  (qualitative)
+% 	      Present employment since
+% 	      A71 : unemployed
+% 	      A72 :       ... < 1 year
+% 	      A73 : 1  <= ... < 4 years  
+% 	      A74 : 4  <= ... < 7 years
+% 	      A75 :       .. >= 7 years
+% 
+% Attribute 8:  (numerical)
+% 	      Installment rate in percentage of disposable income
+% 
+% Attribute 9:  (qualitative)
+% 	      Personal status and sex
+% 	      A91 : male   : divorced/separated
+% 	      A92 : female : divorced/separated/married
+%               A93 : male   : single
+% 	      A94 : male   : married/widowed
+% 	      A95 : female : single
+% 
+% Attribute 10: (qualitative)
+% 	      Other debtors / guarantors
+% 	      A101 : none
+% 	      A102 : co-applicant
+% 	      A103 : guarantor
+% 
+% Attribute 11: (numerical)
+% 	      Present residence since
+% 
+% Attribute 12: (qualitative)
+% 	      Property
+% 	      A121 : real estate
+% 	      A122 : if not A121 : building society savings agreement/
+% 				   life insurance
+%               A123 : if not A121/A122 : car or other, not in attribute 6
+% 	      A124 : unknown / no property
+% 
+% Attribute 13: (numerical)
+% 	      Age in years
+% 
+% Attribute 14: (qualitative)
+% 	      Other installment plans 
+% 	      A141 : bank
+% 	      A142 : stores
+% 	      A143 : none
+% 
+% Attribute 15: (qualitative)
+% 	      Housing
+% 	      A151 : rent
+% 	      A152 : own
+% 	      A153 : for free
+% 
+% Attribute 16: (numerical)
+%               Number of existing credits at this bank
+% 
+% Attribute 17: (qualitative)
+% 	      Job
+% 	      A171 : unemployed/ unskilled  - non-resident
+% 	      A172 : unskilled - resident
+% 	      A173 : skilled employee / official
+% 	      A174 : management/ self-employed/
+% 		     highly qualified employee/ officer
+% 
+% Attribute 18: (numerical)
+% 	      Number of people being liable to provide maintenance for
+% 
+% Attribute 19: (qualitative)
+% 	      Telephone
+% 	      A191 : none
+% 	      A192 : yes, registered under the customers name
+% 
+% Attribute 20: (qualitative)
+% 	      foreign worker
+% 	      A201 : yes
+% 	      A202 : no
+% 
+% 
+% 
+% 8.  Cost Matrix
+% 
+% This dataset requires use of a cost matrix (see below)
+% 
+% 
+%       1        2
+% ----------------------------
+%   1   0        1
+% -----------------------
+%   2   5        0
+% 
+% (1 = Good,  2 = Bad)
+% 
+% the rows represent the actual classification and the columns
+% the predicted classification.
+% 
+% It is worse to class a customer as good when they are bad (5), 
+% than it is to class a customer as bad when they are good (1).
+% 
+%
+%
+%
+%
+% Relabeled values in attribute checking_status
+%    From: A11                     To: '<0'                
+%    From: A12                     To: '0<=X<200'          
+%    From: A13                     To: '>=200'             
+%    From: A14                     To: 'no checking'       
+%
+%
+% Relabeled values in attribute credit_history
+%    From: A30                     To: 'no credits/all paid'
+%    From: A31                     To: 'all paid'          
+%    From: A32                     To: 'existing paid'     
+%    From: A33                     To: 'delayed previously'
+%    From: A34                     To: 'critical/other existing credit'
+%
+%
+% Relabeled values in attribute purpose
+%    From: A40                     To: 'new car'           
+%    From: A41                     To: 'used car'          
+%    From: A42                     To: furniture/equipment 
+%    From: A43                     To: radio/tv            
+%    From: A44                     To: 'domestic appliance'
+%    From: A45                     To: repairs             
+%    From: A46                     To: education           
+%    From: A47                     To: vacation            
+%    From: A48                     To: retraining          
+%    From: A49                     To: business            
+%    From: A410                    To: other               
+%
+%
+% Relabeled values in attribute savings_status
+%    From: A61                     To: '<100'              
+%    From: A62                     To: '100<=X<500'        
+%    From: A63                     To: '500<=X<1000'       
+%    From: A64                     To: '>=1000'            
+%    From: A65                     To: 'no known savings'  
+%
+%
+% Relabeled values in attribute employment
+%    From: A71                     To: unemployed          
+%    From: A72                     To: '<1'                
+%    From: A73                     To: '1<=X<4'            
+%    From: A74                     To: '4<=X<7'            
+%    From: A75                     To: '>=7'               
+%
+%
+% Relabeled values in attribute personal_status
+%    From: A91                     To: 'male div/sep'      
+%    From: A92                     To: 'female div/dep/mar'
+%    From: A93                     To: 'male single'       
+%    From: A94                     To: 'male mar/wid'      
+%    From: A95                     To: 'female single'     
+%
+%
+% Relabeled values in attribute other_parties
+%    From: A101                    To: none                
+%    From: A102                    To: 'co applicant'      
+%    From: A103                    To: guarantor           
+%
+%
+% Relabeled values in attribute property_magnitude
+%    From: A121                    To: 'real estate'       
+%    From: A122                    To: 'life insurance'    
+%    From: A123                    To: car                 
+%    From: A124                    To: 'no known property' 
+%
+%
+% Relabeled values in attribute other_payment_plans
+%    From: A141                    To: bank                
+%    From: A142                    To: stores              
+%    From: A143                    To: none                
+%
+%
+% Relabeled values in attribute housing
+%    From: A151                    To: rent                
+%    From: A152                    To: own                 
+%    From: A153                    To: 'for free'          
+%
+%
+% Relabeled values in attribute job
+%    From: A171                    To: 'unemp/unskilled non res'
+%    From: A172                    To: 'unskilled resident'
+%    From: A173                    To: skilled             
+%    From: A174                    To: 'high qualif/self emp/mgmt'
+%
+%
+% Relabeled values in attribute own_telephone
+%    From: A191                    To: none                
+%    From: A192                    To: yes                 
+%
+%
+% Relabeled values in attribute foreign_worker
+%    From: A201                    To: yes                 
+%    From: A202                    To: no                  
+%
+%
+% Relabeled values in attribute class
+%    From: 1                       To: good                
+%    From: 2                       To: bad                 
+%
+@relation german_credit
+@attribute checking_status { '<0', '0<=X<200', '>=200', 'no checking'}
+@attribute duration numeric
+@attribute credit_history { 'no credits/all paid', 'all paid', 'existing paid', 'delayed previously', 'critical/other existing credit'}
+@attribute purpose { 'new car', 'used car', furniture/equipment, radio/tv, 'domestic appliance', repairs, education, vacation, retraining, business, other}
+@attribute credit_amount numeric
+@attribute savings_status { '<100', '100<=X<500', '500<=X<1000', '>=1000', 'no known savings'}
+@attribute employment { unemployed, '<1', '1<=X<4', '4<=X<7', '>=7'}
+@attribute installment_commitment numeric
+@attribute personal_status { 'male div/sep', 'female div/dep/mar', 'male single', 'male mar/wid', 'female single'}
+@attribute other_parties { none, 'co applicant', guarantor}
+@attribute residence_since numeric
+@attribute property_magnitude { 'real estate', 'life insurance', car, 'no known property'}
+@attribute age numeric
+@attribute other_payment_plans { bank, stores, none}
+@attribute housing { rent, own, 'for free'}
+@attribute existing_credits numeric
+@attribute job { 'unemp/unskilled non res', 'unskilled resident', skilled, 'high qualif/self emp/mgmt'}
+@attribute num_dependents numeric
+@attribute own_telephone { none, yes}
+@attribute foreign_worker { yes, no}
+@attribute class { good, bad}
+@data
+'<0',6,'critical/other existing credit',radio/tv,1169,'no known savings','>=7',4,'male single',none,4,'real estate',67,none,own,2,skilled,1,yes,yes,good
+'0<=X<200',48,'existing paid',radio/tv,5951,'<100','1<=X<4',2,'female div/dep/mar',none,2,'real estate',22,none,own,1,skilled,1,none,yes,bad
+'no checking',12,'critical/other existing credit',education,2096,'<100','4<=X<7',2,'male single',none,3,'real estate',49,none,own,1,'unskilled resident',2,none,yes,good
+'<0',42,'existing paid',furniture/equipment,7882,'<100','4<=X<7',2,'male single',guarantor,4,'life insurance',45,none,'for free',1,skilled,2,none,yes,good
+'<0',24,'delayed previously','new car',4870,'<100','1<=X<4',3,'male single',none,4,'no known property',53,none,'for free',2,skilled,2,none,yes,bad
+'no checking',36,'existing paid',education,9055,'no known savings','1<=X<4',2,'male single',none,4,'no known property',35,none,'for free',1,'unskilled resident',2,yes,yes,good
+'no checking',24,'existing paid',furniture/equipment,2835,'500<=X<1000','>=7',3,'male single',none,4,'life insurance',53,none,own,1,skilled,1,none,yes,good
+'0<=X<200',36,'existing paid','used car',6948,'<100','1<=X<4',2,'male single',none,2,car,35,none,rent,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'no checking',12,'existing paid',radio/tv,3059,'>=1000','4<=X<7',2,'male div/sep',none,4,'real estate',61,none,own,1,'unskilled resident',1,none,yes,good
+'0<=X<200',30,'critical/other existing credit','new car',5234,'<100',unemployed,4,'male mar/wid',none,2,car,28,none,own,2,'high qualif/self emp/mgmt',1,none,yes,bad
+'0<=X<200',12,'existing paid','new car',1295,'<100','<1',3,'female div/dep/mar',none,1,car,25,none,rent,1,skilled,1,none,yes,bad
+'<0',48,'existing paid',business,4308,'<100','<1',3,'female div/dep/mar',none,4,'life insurance',24,none,rent,1,skilled,1,none,yes,bad
+'0<=X<200',12,'existing paid',radio/tv,1567,'<100','1<=X<4',1,'female div/dep/mar',none,1,car,22,none,own,1,skilled,1,yes,yes,good
+'<0',24,'critical/other existing credit','new car',1199,'<100','>=7',4,'male single',none,4,car,60,none,own,2,'unskilled resident',1,none,yes,bad
+'<0',15,'existing paid','new car',1403,'<100','1<=X<4',2,'female div/dep/mar',none,4,car,28,none,rent,1,skilled,1,none,yes,good
+'<0',24,'existing paid',radio/tv,1282,'100<=X<500','1<=X<4',4,'female div/dep/mar',none,2,car,32,none,own,1,'unskilled resident',1,none,yes,bad
+'no checking',24,'critical/other existing credit',radio/tv,2424,'no known savings','>=7',4,'male single',none,4,'life insurance',53,none,own,2,skilled,1,none,yes,good
+'<0',30,'no credits/all paid',business,8072,'no known savings','<1',2,'male single',none,3,car,25,bank,own,3,skilled,1,none,yes,good
+'0<=X<200',24,'existing paid','used car',12579,'<100','>=7',4,'female div/dep/mar',none,2,'no known property',44,none,'for free',1,'high qualif/self emp/mgmt',1,yes,yes,bad
+'no checking',24,'existing paid',radio/tv,3430,'500<=X<1000','>=7',3,'male single',none,2,car,31,none,own,1,skilled,2,yes,yes,good
+'no checking',9,'critical/other existing credit','new car',2134,'<100','1<=X<4',4,'male single',none,4,car,48,none,own,3,skilled,1,yes,yes,good
+'<0',6,'existing paid',radio/tv,2647,'500<=X<1000','1<=X<4',2,'male single',none,3,'real estate',44,none,rent,1,skilled,2,none,yes,good
+'<0',10,'critical/other existing credit','new car',2241,'<100','<1',1,'male single',none,3,'real estate',48,none,rent,2,'unskilled resident',2,none,no,good
+'0<=X<200',12,'critical/other existing credit','used car',1804,'100<=X<500','<1',3,'male single',none,4,'life insurance',44,none,own,1,skilled,1,none,yes,good
+'no checking',10,'critical/other existing credit',furniture/equipment,2069,'no known savings','1<=X<4',2,'male mar/wid',none,1,car,26,none,own,2,skilled,1,none,no,good
+'<0',6,'existing paid',furniture/equipment,1374,'<100','1<=X<4',1,'male single',none,2,'real estate',36,bank,own,1,'unskilled resident',1,yes,yes,good
+'no checking',6,'no credits/all paid',radio/tv,426,'<100','>=7',4,'male mar/wid',none,4,car,39,none,own,1,'unskilled resident',1,none,yes,good
+'>=200',12,'all paid',radio/tv,409,'>=1000','1<=X<4',3,'female div/dep/mar',none,3,'real estate',42,none,rent,2,skilled,1,none,yes,good
+'0<=X<200',7,'existing paid',radio/tv,2415,'<100','1<=X<4',3,'male single',guarantor,2,'real estate',34,none,own,1,skilled,1,none,yes,good
+'<0',60,'delayed previously',business,6836,'<100','>=7',3,'male single',none,4,'no known property',63,none,own,2,skilled,1,yes,yes,bad
+'0<=X<200',18,'existing paid',business,1913,'>=1000','<1',3,'male mar/wid',none,3,'real estate',36,bank,own,1,skilled,1,yes,yes,good
+'<0',24,'existing paid',furniture/equipment,4020,'<100','1<=X<4',2,'male single',none,2,car,27,stores,own,1,skilled,1,none,yes,good
+'0<=X<200',18,'existing paid','new car',5866,'100<=X<500','1<=X<4',2,'male single',none,2,car,30,none,own,2,skilled,1,yes,yes,good
+'no checking',12,'critical/other existing credit',business,1264,'no known savings','>=7',4,'male single',none,4,'no known property',57,none,rent,1,'unskilled resident',1,none,yes,good
+'>=200',12,'existing paid',furniture/equipment,1474,'<100','<1',4,'female div/dep/mar',none,1,'life insurance',33,bank,own,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'0<=X<200',45,'critical/other existing credit',radio/tv,4746,'<100','<1',4,'male single',none,2,'life insurance',25,none,own,2,'unskilled resident',1,none,yes,bad
+'no checking',48,'critical/other existing credit',education,6110,'<100','1<=X<4',1,'male single',none,3,'no known property',31,bank,'for free',1,skilled,1,yes,yes,good
+'>=200',18,'existing paid',radio/tv,2100,'<100','1<=X<4',4,'male single','co applicant',2,'real estate',37,stores,own,1,skilled,1,none,yes,bad
+'>=200',10,'existing paid','domestic appliance',1225,'<100','1<=X<4',2,'male single',none,2,car,37,none,own,1,skilled,1,yes,yes,good
+'0<=X<200',9,'existing paid',radio/tv,458,'<100','1<=X<4',4,'male single',none,3,'real estate',24,none,own,1,skilled,1,none,yes,good
+'no checking',30,'existing paid',radio/tv,2333,'500<=X<1000','>=7',4,'male single',none,2,car,30,bank,own,1,'high qualif/self emp/mgmt',1,none,yes,good
+'0<=X<200',12,'existing paid',radio/tv,1158,'500<=X<1000','1<=X<4',3,'male div/sep',none,1,car,26,none,own,1,skilled,1,yes,yes,good
+'0<=X<200',18,'delayed previously',repairs,6204,'<100','1<=X<4',2,'male single',none,4,'real estate',44,none,own,1,'unskilled resident',2,yes,yes,good
+'<0',30,'critical/other existing credit','used car',6187,'100<=X<500','4<=X<7',1,'male mar/wid',none,4,car,24,none,rent,2,skilled,1,none,yes,good
+'<0',48,'critical/other existing credit','used car',6143,'<100','>=7',4,'female div/dep/mar',none,4,'no known property',58,stores,'for free',2,'unskilled resident',1,none,yes,bad
+'no checking',11,'critical/other existing credit','new car',1393,'<100','<1',4,'female div/dep/mar',none,4,car,35,none,own,2,'high qualif/self emp/mgmt',1,none,yes,good
+'no checking',36,'existing paid',radio/tv,2299,'500<=X<1000','>=7',4,'male single',none,4,car,39,none,own,1,skilled,1,none,yes,good
+'<0',6,'existing paid','used car',1352,'500<=X<1000',unemployed,1,'female div/dep/mar',none,2,'life insurance',23,none,rent,1,'unemp/unskilled non res',1,yes,yes,good
+'no checking',11,'critical/other existing credit','new car',7228,'<100','1<=X<4',1,'male single',none,4,'life insurance',39,none,own,2,'unskilled resident',1,none,yes,good
+'no checking',12,'existing paid',radio/tv,2073,'100<=X<500','1<=X<4',4,'female div/dep/mar','co applicant',2,'real estate',28,none,own,1,skilled,1,none,yes,good
+'0<=X<200',24,'delayed previously',furniture/equipment,2333,'no known savings','<1',4,'male single',none,2,'life insurance',29,bank,own,1,'unskilled resident',1,none,yes,good
+'0<=X<200',27,'delayed previously','used car',5965,'<100','>=7',1,'male single',none,2,car,30,none,own,2,'high qualif/self emp/mgmt',1,yes,yes,good
+'no checking',12,'existing paid',radio/tv,1262,'<100','1<=X<4',3,'male single',none,2,car,25,none,own,1,skilled,1,none,yes,good
+'no checking',18,'existing paid','used car',3378,'no known savings','1<=X<4',2,'male single',none,1,'life insurance',31,none,own,1,skilled,1,yes,yes,good
+'0<=X<200',36,'delayed previously','new car',2225,'<100','>=7',4,'male single',none,4,'no known property',57,bank,'for free',2,skilled,1,yes,yes,bad
+'no checking',6,'all paid','new car',783,'no known savings','1<=X<4',1,'male single',guarantor,2,'real estate',26,stores,own,1,'unskilled resident',2,none,yes,good
+'0<=X<200',12,'existing paid',radio/tv,6468,'no known savings',unemployed,2,'male single',none,1,'no known property',52,none,own,1,'high qualif/self emp/mgmt',1,yes,yes,bad
+'no checking',36,'critical/other existing credit',radio/tv,9566,'<100','1<=X<4',2,'female div/dep/mar',none,2,car,31,stores,own,2,skilled,1,none,yes,good
+'>=200',18,'existing paid','new car',1961,'<100','>=7',3,'female div/dep/mar',none,2,car,23,none,own,1,'high qualif/self emp/mgmt',1,none,yes,good
+'<0',36,'critical/other existing credit',furniture/equipment,6229,'<100','<1',4,'female div/dep/mar','co applicant',4,'no known property',23,none,rent,2,'unskilled resident',1,yes,yes,bad
+'0<=X<200',9,'existing paid',business,1391,'<100','1<=X<4',2,'male mar/wid',none,1,'real estate',27,bank,own,1,skilled,1,yes,yes,good
+'0<=X<200',15,'critical/other existing credit',radio/tv,1537,'no known savings','>=7',4,'male single',guarantor,4,'real estate',50,none,own,2,skilled,1,yes,yes,good
+'0<=X<200',36,'no credits/all paid',business,1953,'<100','>=7',4,'male single',none,4,'no known property',61,none,'for free',1,'high qualif/self emp/mgmt',1,yes,yes,bad
+'0<=X<200',48,'no credits/all paid',business,14421,'<100','1<=X<4',2,'male single',none,2,car,25,none,own,1,skilled,1,yes,yes,bad
+'no checking',24,'existing paid',radio/tv,3181,'<100','<1',4,'female div/dep/mar',none,4,'life insurance',26,none,own,1,skilled,1,yes,yes,good
+'no checking',27,'existing paid',repairs,5190,'no known savings','>=7',4,'male single',none,4,'life insurance',48,none,own,4,skilled,2,yes,yes,good
+'no checking',12,'existing paid',radio/tv,2171,'<100','<1',2,'female div/dep/mar',none,2,car,29,bank,own,1,skilled,1,none,yes,good
+'0<=X<200',12,'existing paid','new car',1007,'>=1000','1<=X<4',4,'male mar/wid',none,1,'real estate',22,none,own,1,skilled,1,none,yes,good
+'no checking',36,'existing paid',education,1819,'<100','1<=X<4',4,'male single',none,4,'no known property',37,stores,'for free',1,skilled,1,yes,yes,bad
+'no checking',36,'existing paid',radio/tv,2394,'no known savings','1<=X<4',4,'female div/dep/mar',none,4,car,25,none,own,1,skilled,1,none,yes,good
+'no checking',36,'existing paid','used car',8133,'<100','1<=X<4',1,'female div/dep/mar',none,2,'life insurance',30,bank,own,1,skilled,1,none,yes,good
+'no checking',7,'critical/other existing credit',radio/tv,730,'no known savings','>=7',4,'male single',none,2,'life insurance',46,none,rent,2,'unskilled resident',1,yes,yes,good
+'<0',8,'critical/other existing credit',other,1164,'<100','>=7',3,'male single',none,4,'no known property',51,bank,'for free',2,'high qualif/self emp/mgmt',2,yes,yes,good
+'0<=X<200',42,'critical/other existing credit',business,5954,'<100','4<=X<7',2,'female div/dep/mar',none,1,'real estate',41,bank,own,2,'unskilled resident',1,none,yes,good
+'<0',36,'existing paid',education,1977,'no known savings','>=7',4,'male single',none,4,'no known property',40,none,own,1,'high qualif/self emp/mgmt',1,yes,yes,bad
+'<0',12,'critical/other existing credit','used car',1526,'<100','>=7',4,'male single',none,4,'no known property',66,none,'for free',2,'high qualif/self emp/mgmt',1,none,yes,good
+'<0',42,'existing paid',radio/tv,3965,'<100','<1',4,'male single',none,3,car,34,none,own,1,skilled,1,none,yes,bad
+'0<=X<200',11,'delayed previously',radio/tv,4771,'<100','4<=X<7',2,'male single',none,4,'life insurance',51,none,own,1,skilled,1,none,yes,good
+'no checking',54,'no credits/all paid','used car',9436,'no known savings','1<=X<4',2,'male single',none,2,'life insurance',39,none,own,1,'unskilled resident',2,none,yes,good
+'0<=X<200',30,'existing paid',furniture/equipment,3832,'<100','<1',2,'male mar/wid',none,1,'life insurance',22,none,own,1,skilled,1,none,yes,good
+'no checking',24,'existing paid',radio/tv,5943,'no known savings','<1',1,'female div/dep/mar',none,1,car,44,none,own,2,skilled,1,yes,yes,bad
+'no checking',15,'existing paid',radio/tv,1213,'500<=X<1000','>=7',4,'male single',none,3,'life insurance',47,stores,own,1,skilled,1,yes,yes,good
+'no checking',18,'existing paid',business,1568,'100<=X<500','1<=X<4',3,'female div/dep/mar',none,4,'life insurance',24,none,rent,1,'unskilled resident',1,none,yes,good
+'<0',24,'existing paid',other,1755,'<100','>=7',4,'female div/dep/mar',guarantor,4,'real estate',58,none,own,1,'unskilled resident',1,yes,yes,good
+'<0',10,'existing paid',radio/tv,2315,'<100','>=7',3,'male single',none,4,'real estate',52,none,own,1,'unskilled resident',1,none,yes,good
+'no checking',12,'critical/other existing credit',business,1412,'<100','1<=X<4',4,'female div/dep/mar',guarantor,2,'real estate',29,none,own,2,'high qualif/self emp/mgmt',1,yes,yes,good
+'0<=X<200',18,'critical/other existing credit',furniture/equipment,1295,'<100','<1',4,'female div/dep/mar',none,1,'life insurance',27,none,own,2,skilled,1,none,yes,good
+'0<=X<200',36,'existing paid',education,12612,'100<=X<500','1<=X<4',1,'male single',none,4,'no known property',47,none,'for free',1,skilled,2,yes,yes,bad
+'<0',18,'existing paid','new car',2249,'100<=X<500','4<=X<7',4,'male single',none,3,car,30,none,own,1,'high qualif/self emp/mgmt',2,yes,yes,good
+'<0',12,'no credits/all paid',repairs,1108,'<100','4<=X<7',4,'male single',none,3,'real estate',28,none,own,2,skilled,1,none,yes,bad
+'no checking',12,'critical/other existing credit',radio/tv,618,'<100','>=7',4,'male single',none,4,'real estate',56,none,own,1,skilled,1,none,yes,good
+'<0',12,'critical/other existing credit','used car',1409,'<100','>=7',4,'male single',none,3,'real estate',54,none,own,1,skilled,1,none,yes,good
+'no checking',12,'critical/other existing credit',radio/tv,797,'no known savings','>=7',4,'female div/dep/mar',none,3,'life insurance',33,bank,own,1,'unskilled resident',2,none,yes,bad
+'>=200',24,'critical/other existing credit',furniture/equipment,3617,'no known savings','>=7',4,'male single','co applicant',4,'no known property',20,none,rent,2,skilled,1,none,yes,good
+'0<=X<200',12,'existing paid','new car',1318,'>=1000','>=7',4,'male single',none,4,'real estate',54,none,own,1,skilled,1,yes,yes,good
+'0<=X<200',54,'no credits/all paid',business,15945,'<100','<1',3,'male single',none,4,'no known property',58,none,rent,1,skilled,1,yes,yes,bad
+'no checking',12,'critical/other existing credit',education,2012,'no known savings','4<=X<7',4,'female div/dep/mar',none,2,car,61,none,own,1,skilled,1,none,yes,good
+'0<=X<200',18,'existing paid',business,2622,'100<=X<500','1<=X<4',4,'male single',none,4,car,34,none,own,1,skilled,1,none,yes,good
+'0<=X<200',36,'critical/other existing credit',radio/tv,2337,'<100','>=7',4,'male single',none,4,'real estate',36,none,own,1,skilled,1,none,yes,good
+'0<=X<200',20,'delayed previously','used car',7057,'no known savings','4<=X<7',3,'male single',none,4,'life insurance',36,bank,rent,2,'high qualif/self emp/mgmt',2,yes,yes,good
+'no checking',24,'existing paid','new car',1469,'100<=X<500','>=7',4,'male mar/wid',none,4,'real estate',41,none,rent,1,'unskilled resident',1,none,yes,good
+'0<=X<200',36,'existing paid',radio/tv,2323,'<100','4<=X<7',4,'male single',none,4,car,24,none,rent,1,skilled,1,none,yes,good
+'no checking',6,'delayed previously',radio/tv,932,'<100','1<=X<4',3,'female div/dep/mar',none,2,'real estate',24,none,own,1,skilled,1,none,yes,good
+'0<=X<200',9,'critical/other existing credit',furniture/equipment,1919,'<100','4<=X<7',4,'male single',none,3,car,35,none,rent,1,skilled,1,yes,yes,good
+'no checking',12,'existing paid','used car',2445,'no known savings','<1',2,'male mar/wid',none,4,car,26,none,rent,1,skilled,1,yes,yes,good
+'0<=X<200',24,'critical/other existing credit',other,11938,'<100','1<=X<4',2,'male single','co applicant',3,car,39,none,own,2,'high qualif/self emp/mgmt',2,yes,yes,bad
+'no checking',18,'all paid','new car',6458,'<100','>=7',2,'male single',none,4,'no known property',39,bank,own,2,'high qualif/self emp/mgmt',2,yes,yes,bad
+'0<=X<200',12,'existing paid','new car',6078,'<100','4<=X<7',2,'male single',none,2,car,32,none,own,1,skilled,1,none,yes,good
+'<0',24,'existing paid',furniture/equipment,7721,'no known savings','<1',1,'female div/dep/mar',none,2,'life insurance',30,none,own,1,skilled,1,yes,no,good
+'0<=X<200',14,'existing paid',business,1410,'500<=X<1000','>=7',1,'male mar/wid',none,2,'real estate',35,none,own,1,skilled,1,yes,yes,good
+'0<=X<200',6,'delayed previously',business,1449,'100<=X<500','>=7',1,'male div/sep',none,2,car,31,bank,own,2,skilled,2,none,yes,good
+'>=200',15,'existing paid',education,392,'<100','<1',4,'female div/dep/mar',none,4,'life insurance',23,none,rent,1,skilled,1,yes,yes,good
+'0<=X<200',18,'existing paid','new car',6260,'<100','4<=X<7',3,'male single',none,3,'real estate',28,none,rent,1,'unskilled resident',1,none,yes,good
+'no checking',36,'critical/other existing credit','new car',7855,'<100','1<=X<4',4,'female div/dep/mar',none,2,'real estate',25,stores,own,2,skilled,1,yes,yes,bad
+'<0',12,'existing paid',radio/tv,1680,'500<=X<1000','>=7',3,'male mar/wid',none,1,'real estate',35,none,own,1,skilled,1,none,yes,good
+'no checking',48,'critical/other existing credit',radio/tv,3578,'no known savings','>=7',4,'male single',none,1,'real estate',47,none,own,1,skilled,1,yes,yes,good
+'<0',42,'existing paid',radio/tv,7174,'no known savings','4<=X<7',4,'female div/dep/mar',none,3,car,30,none,own,1,'high qualif/self emp/mgmt',1,yes,yes,bad
+'<0',10,'critical/other existing credit',furniture/equipment,2132,'no known savings','<1',2,'female div/dep/mar','co applicant',3,'real estate',27,none,rent,2,skilled,1,none,no,good
+'<0',33,'critical/other existing credit',furniture/equipment,4281,'500<=X<1000','1<=X<4',1,'female div/dep/mar',none,4,car,23,none,own,2,skilled,1,none,yes,bad
+'0<=X<200',12,'critical/other existing credit','new car',2366,'500<=X<1000','4<=X<7',3,'male div/sep',none,3,car,36,none,own,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'<0',21,'existing paid',radio/tv,1835,'<100','1<=X<4',3,'female div/dep/mar',none,2,'real estate',25,none,own,2,skilled,1,yes,yes,bad
+'no checking',24,'critical/other existing credit','used car',3868,'<100','>=7',4,'female div/dep/mar',none,2,car,41,none,rent,2,'high qualif/self emp/mgmt',1,yes,yes,good
+'no checking',12,'existing paid',furniture/equipment,1768,'<100','1<=X<4',3,'male single',none,2,'real estate',24,none,rent,1,'unskilled resident',1,none,yes,good
+'>=200',10,'critical/other existing credit','new car',781,'<100','>=7',4,'male single',none,4,'no known property',63,none,'for free',2,skilled,1,yes,yes,good
+'0<=X<200',18,'existing paid',furniture/equipment,1924,'no known savings','<1',4,'female div/dep/mar',none,3,'real estate',27,none,rent,1,skilled,1,none,yes,bad
+'<0',12,'critical/other existing credit','new car',2121,'<100','1<=X<4',4,'male single',none,2,'life insurance',30,none,own,2,skilled,1,none,yes,good
+'<0',12,'existing paid',radio/tv,701,'<100','1<=X<4',4,'male mar/wid',none,2,'real estate',40,none,own,1,'unskilled resident',1,none,yes,good
+'0<=X<200',12,'existing paid',repairs,639,'<100','1<=X<4',4,'male single',none,2,car,30,none,own,1,skilled,1,none,yes,bad
+'0<=X<200',12,'critical/other existing credit','used car',1860,'<100',unemployed,4,'male single',none,2,car,34,none,own,2,'high qualif/self emp/mgmt',1,yes,yes,good
+'<0',12,'critical/other existing credit','new car',3499,'<100','1<=X<4',3,'female div/dep/mar','co applicant',2,'real estate',29,none,own,2,skilled,1,none,yes,bad
+'0<=X<200',48,'existing paid','new car',8487,'no known savings','4<=X<7',1,'female div/dep/mar',none,2,car,24,none,own,1,skilled,1,none,yes,good
+'<0',36,'delayed previously',education,6887,'<100','1<=X<4',4,'male single',none,3,'life insurance',29,stores,own,1,skilled,1,yes,yes,bad
+'no checking',15,'existing paid',furniture/equipment,2708,'<100','<1',2,'male single',none,3,'life insurance',27,bank,own,2,'unskilled resident',1,none,yes,good
+'no checking',18,'existing paid',furniture/equipment,1984,'<100','1<=X<4',4,'male single',none,4,'no known property',47,bank,'for free',2,skilled,1,none,yes,good
+'no checking',60,'existing paid',radio/tv,10144,'100<=X<500','4<=X<7',2,'female div/dep/mar',none,4,'real estate',21,none,own,1,skilled,1,yes,yes,good
+'no checking',12,'critical/other existing credit',radio/tv,1240,'no known savings','>=7',4,'female div/dep/mar',none,2,'real estate',38,none,own,2,skilled,1,yes,yes,good
+'no checking',27,'delayed previously','used car',8613,'>=1000','1<=X<4',2,'male single',none,2,car,27,none,own,2,skilled,1,none,yes,good
+'0<=X<200',12,'existing paid',radio/tv,766,'500<=X<1000','1<=X<4',4,'male single',none,3,'real estate',66,none,own,1,'unskilled resident',1,none,yes,bad
+'0<=X<200',15,'critical/other existing credit',radio/tv,2728,'no known savings','4<=X<7',4,'male single',guarantor,2,'real estate',35,bank,own,3,skilled,1,yes,yes,good
+'>=200',12,'existing paid',radio/tv,1881,'<100','1<=X<4',2,'female div/dep/mar',none,2,car,44,none,rent,1,'unskilled resident',1,yes,yes,good
+'>=200',6,'existing paid','new car',709,'>=1000','<1',2,'male mar/wid',none,2,'real estate',27,none,own,1,'unemp/unskilled non res',1,none,no,good
+'0<=X<200',36,'existing paid',radio/tv,4795,'<100','<1',4,'female div/dep/mar',none,1,'no known property',30,none,own,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'<0',27,'existing paid',radio/tv,3416,'<100','1<=X<4',3,'male single',none,2,car,27,none,own,1,'high qualif/self emp/mgmt',1,none,yes,good
+'<0',18,'existing paid',furniture/equipment,2462,'<100','1<=X<4',2,'male single',none,2,car,22,none,own,1,skilled,1,none,yes,bad
+'no checking',21,'critical/other existing credit',furniture/equipment,2288,'<100','<1',4,'female div/dep/mar',none,4,'life insurance',23,none,own,1,skilled,1,yes,yes,good
+'0<=X<200',48,'all paid',business,3566,'100<=X<500','4<=X<7',4,'male single',none,2,car,30,none,own,1,skilled,1,none,yes,good
+'<0',6,'critical/other existing credit','new car',860,'<100','>=7',1,'female div/dep/mar',none,4,'no known property',39,none,own,2,skilled,1,yes,yes,good
+'no checking',12,'critical/other existing credit','new car',682,'100<=X<500','4<=X<7',4,'female div/dep/mar',none,3,car,51,none,own,2,skilled,1,yes,yes,good
+'<0',36,'critical/other existing credit',furniture/equipment,5371,'<100','1<=X<4',3,'male single',guarantor,2,'life insurance',28,none,own,2,skilled,1,none,yes,good
+'no checking',18,'critical/other existing credit',radio/tv,1582,'>=1000','>=7',4,'male single',none,4,car,46,none,own,2,skilled,1,none,yes,good
+'no checking',6,'existing paid',radio/tv,1346,'100<=X<500','>=7',2,'male single',none,4,'no known property',42,bank,'for free',1,skilled,2,yes,yes,good
+'no checking',10,'existing paid',radio/tv,1924,'<100','1<=X<4',1,'male single',none,4,'life insurance',38,none,own,1,skilled,1,yes,no,good
+'>=200',36,'existing paid',radio/tv,5848,'<100','1<=X<4',4,'male single',none,1,car,24,none,own,1,skilled,1,none,yes,good
+'0<=X<200',24,'critical/other existing credit','used car',7758,'>=1000','>=7',2,'female div/dep/mar',none,4,'no known property',29,none,rent,1,skilled,1,none,yes,good
+'0<=X<200',24,'delayed previously',business,6967,'100<=X<500','4<=X<7',4,'male single',none,4,car,36,none,rent,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'<0',12,'existing paid',furniture/equipment,1282,'<100','1<=X<4',2,'female div/dep/mar',none,4,car,20,none,rent,1,skilled,1,none,yes,bad
+'<0',9,'critical/other existing credit',repairs,1288,'100<=X<500','>=7',3,'male single',guarantor,4,'real estate',48,none,own,2,skilled,2,none,no,good
+'<0',12,'all paid',retraining,339,'<100','>=7',4,'male mar/wid',none,1,car,45,bank,own,1,'unskilled resident',1,none,yes,good
+'0<=X<200',24,'existing paid','new car',3512,'100<=X<500','4<=X<7',2,'male single',none,3,car,38,bank,own,2,skilled,1,yes,yes,good
+'no checking',6,'critical/other existing credit',radio/tv,1898,'no known savings','1<=X<4',1,'male single',none,2,'real estate',34,none,own,2,'unskilled resident',2,none,yes,good
+'no checking',24,'critical/other existing credit',radio/tv,2872,'100<=X<500','>=7',3,'male single',none,4,'real estate',36,none,own,1,skilled,2,yes,yes,good
+'no checking',18,'critical/other existing credit','new car',1055,'<100','<1',4,'female div/dep/mar',none,1,'life insurance',30,none,own,2,skilled,1,none,yes,good
+'no checking',15,'existing paid','domestic appliance',1262,'500<=X<1000','4<=X<7',4,'male single',none,3,'life insurance',36,none,own,2,skilled,1,yes,yes,good
+'0<=X<200',10,'existing paid','new car',7308,'<100',unemployed,2,'male single',none,4,'no known property',70,bank,'for free',1,'high qualif/self emp/mgmt',1,yes,yes,good
+'no checking',36,'existing paid','new car',909,'500<=X<1000','>=7',4,'male single',none,4,'life insurance',36,none,own,1,skilled,1,none,yes,good
+'no checking',6,'existing paid',furniture/equipment,2978,'500<=X<1000','1<=X<4',1,'male single',none,2,car,32,none,own,1,skilled,1,yes,yes,good
+'<0',18,'existing paid',furniture/equipment,1131,'<100',unemployed,4,'female div/dep/mar',none,2,car,33,none,own,1,skilled,1,none,yes,bad
+'0<=X<200',11,'existing paid',furniture/equipment,1577,'>=1000','<1',4,'female div/dep/mar',none,1,'real estate',20,none,own,1,skilled,1,none,yes,good
+'no checking',24,'existing paid',furniture/equipment,3972,'<100','4<=X<7',2,'female div/dep/mar',none,4,'life insurance',25,none,rent,1,skilled,1,yes,yes,good
+'0<=X<200',24,'critical/other existing credit',business,1935,'<100','>=7',4,'male div/sep',none,4,'real estate',31,none,own,2,skilled,1,yes,yes,bad
+'<0',15,'no credits/all paid','new car',950,'<100','>=7',4,'male single',none,3,car,33,none,rent,2,skilled,2,none,yes,bad
+'no checking',12,'existing paid',furniture/equipment,763,'<100','1<=X<4',4,'female div/dep/mar',none,1,'real estate',26,none,own,1,skilled,1,yes,yes,good
+'0<=X<200',24,'delayed previously',furniture/equipment,2064,'<100',unemployed,3,'female div/dep/mar',none,2,'life insurance',34,none,own,1,'high qualif/self emp/mgmt',1,yes,yes,bad
+'0<=X<200',8,'existing paid',radio/tv,1414,'<100','1<=X<4',4,'male single',guarantor,2,'real estate',33,none,own,1,skilled,1,none,no,good
+'<0',21,'delayed previously',education,3414,'<100','<1',2,'male single',none,1,'life insurance',26,none,own,2,skilled,1,none,yes,bad
+'no checking',30,'all paid','used car',7485,'no known savings',unemployed,4,'female div/dep/mar',none,1,'real estate',53,bank,own,1,'high qualif/self emp/mgmt',1,yes,yes,bad
+'<0',12,'existing paid',furniture/equipment,2577,'<100','1<=X<4',2,'male div/sep',none,1,car,42,none,own,1,skilled,1,none,yes,good
+'<0',6,'critical/other existing credit',radio/tv,338,'500<=X<1000','>=7',4,'male single',none,4,car,52,none,own,2,skilled,1,none,yes,good
+'no checking',12,'existing paid',radio/tv,1963,'<100','4<=X<7',4,'male single',none,2,car,31,none,rent,2,'high qualif/self emp/mgmt',2,yes,yes,good
+'<0',21,'critical/other existing credit','new car',571,'<100','>=7',4,'male single',none,4,'real estate',65,none,own,2,skilled,1,none,yes,good
+'no checking',36,'delayed previously',business,9572,'<100','<1',1,'male div/sep',none,1,car,28,none,own,2,skilled,1,none,yes,bad
+'0<=X<200',36,'delayed previously',business,4455,'<100','1<=X<4',2,'male div/sep',none,2,'real estate',30,stores,own,2,'high qualif/self emp/mgmt',1,yes,yes,bad
+'<0',21,'all paid','new car',1647,'no known savings','1<=X<4',4,'male single',none,2,'life insurance',40,none,own,2,'unskilled resident',2,none,yes,bad
+'no checking',24,'critical/other existing credit',furniture/equipment,3777,'>=1000','1<=X<4',4,'male single',none,4,'real estate',50,none,own,1,skilled,1,yes,yes,good
+'0<=X<200',18,'critical/other existing credit','new car',884,'<100','>=7',4,'male single',none,4,car,36,bank,own,1,skilled,2,yes,yes,bad
+'no checking',15,'critical/other existing credit',radio/tv,1360,'<100','1<=X<4',4,'male single',none,2,'life insurance',31,none,own,2,skilled,1,none,yes,good
+'0<=X<200',9,'all paid','used car',5129,'<100','>=7',2,'female div/dep/mar',none,4,'no known property',74,bank,'for free',1,'high qualif/self emp/mgmt',2,yes,yes,bad
+'0<=X<200',16,'critical/other existing credit','new car',1175,'<100',unemployed,2,'male single',none,3,car,68,none,'for free',3,'unemp/unskilled non res',1,yes,yes,good
+'<0',12,'existing paid',radio/tv,674,'100<=X<500','4<=X<7',4,'male mar/wid',none,1,'life insurance',20,none,own,1,skilled,1,none,yes,bad
+'0<=X<200',18,'no credits/all paid',furniture/equipment,3244,'<100','1<=X<4',1,'female div/dep/mar',none,4,car,33,bank,own,2,skilled,1,yes,yes,good
+'no checking',24,'existing paid',business,4591,'>=1000','1<=X<4',2,'male single',none,3,'life insurance',54,none,own,3,'high qualif/self emp/mgmt',1,yes,yes,bad
+'0<=X<200',48,'no credits/all paid',business,3844,'100<=X<500','4<=X<7',4,'male single',none,4,'no known property',34,none,'for free',1,'unskilled resident',2,none,yes,bad
+'0<=X<200',27,'existing paid',business,3915,'<100','1<=X<4',4,'male single',none,2,car,36,none,own,1,skilled,2,yes,yes,bad
+'no checking',6,'existing paid',radio/tv,2108,'<100','4<=X<7',2,'male mar/wid',none,2,'real estate',29,none,rent,1,skilled,1,none,yes,good
+'0<=X<200',45,'existing paid',radio/tv,3031,'100<=X<500','1<=X<4',4,'male single',guarantor,4,'life insurance',21,none,rent,1,skilled,1,none,yes,bad
+'0<=X<200',9,'critical/other existing credit',education,1501,'<100','>=7',2,'female div/dep/mar',none,3,car,34,none,own,2,'high qualif/self emp/mgmt',1,yes,yes,bad
+'no checking',6,'critical/other existing credit',radio/tv,1382,'<100','1<=X<4',1,'female div/dep/mar',none,1,car,28,none,own,2,skilled,1,yes,yes,good
+'0<=X<200',12,'existing paid',furniture/equipment,951,'100<=X<500','<1',4,'female div/dep/mar',none,4,car,27,bank,rent,4,skilled,1,none,yes,bad
+'0<=X<200',24,'existing paid','used car',2760,'no known savings','>=7',4,'male single',none,4,'no known property',36,bank,'for free',1,skilled,1,yes,yes,good
+'0<=X<200',18,'delayed previously',furniture/equipment,4297,'<100','>=7',4,'male div/sep',none,3,'no known property',40,none,own,1,'high qualif/self emp/mgmt',1,yes,yes,bad
+'no checking',9,'critical/other existing credit',education,936,'500<=X<1000','>=7',4,'male single',none,2,car,52,none,own,2,skilled,1,yes,yes,good
+'<0',12,'existing paid','new car',1168,'<100','1<=X<4',4,'male mar/wid',none,3,'real estate',27,none,own,1,'unskilled resident',1,none,yes,good
+'no checking',27,'delayed previously',business,5117,'<100','4<=X<7',3,'male single',none,4,car,26,none,own,2,skilled,1,none,yes,good
+'<0',12,'existing paid',retraining,902,'<100','4<=X<7',4,'male mar/wid',none,4,'life insurance',21,none,rent,1,skilled,1,none,yes,bad
+'no checking',12,'critical/other existing credit','new car',1495,'<100','>=7',4,'male single',none,1,'real estate',38,none,own,2,'unskilled resident',2,none,yes,good
+'<0',30,'critical/other existing credit','used car',10623,'<100','>=7',3,'male single',none,4,'no known property',38,none,'for free',3,'high qualif/self emp/mgmt',2,yes,yes,good
+'no checking',12,'critical/other existing credit',furniture/equipment,1935,'<100','>=7',4,'male single',none,4,'real estate',43,none,own,3,skilled,1,yes,yes,good
+'0<=X<200',12,'critical/other existing credit','domestic appliance',1424,'<100','4<=X<7',4,'male single',none,3,'life insurance',26,none,own,1,skilled,1,none,yes,good
+'<0',24,'existing paid',business,6568,'<100','1<=X<4',2,'male mar/wid',none,2,car,21,stores,own,1,'unskilled resident',1,none,yes,good
+'no checking',12,'existing paid','used car',1413,'>=1000','4<=X<7',3,'male single',none,2,'life insurance',55,none,own,1,skilled,1,none,no,good
+'no checking',9,'critical/other existing credit',radio/tv,3074,'no known savings','1<=X<4',1,'male single',none,2,'real estate',33,none,own,2,skilled,2,none,yes,good
+'no checking',36,'existing paid',radio/tv,3835,'no known savings','>=7',2,'female div/dep/mar',none,4,'real estate',45,none,own,1,'unskilled resident',1,yes,yes,good
+'<0',27,'no credits/all paid',business,5293,'<100',unemployed,2,'male single',none,4,'life insurance',50,stores,own,2,skilled,1,yes,yes,bad
+'>=200',30,'delayed previously',business,1908,'<100','>=7',4,'male single',none,4,'real estate',66,none,own,1,'high qualif/self emp/mgmt',1,yes,yes,bad
+'no checking',36,'critical/other existing credit',radio/tv,3342,'no known savings','>=7',4,'male single',none,2,car,51,none,own,1,skilled,1,yes,yes,good
+'0<=X<200',6,'critical/other existing credit',retraining,932,'no known savings','4<=X<7',1,'female div/dep/mar',none,3,'life insurance',39,none,own,2,'unskilled resident',1,none,yes,good
+'<0',18,'no credits/all paid',business,3104,'<100','4<=X<7',3,'male single',none,1,'life insurance',31,bank,own,1,skilled,1,yes,yes,good
+'>=200',36,'existing paid',radio/tv,3913,'<100','1<=X<4',2,'male single',none,2,'real estate',23,none,own,1,skilled,1,yes,yes,good
+'<0',24,'existing paid',furniture/equipment,3021,'<100','1<=X<4',2,'male div/sep',none,2,'real estate',24,none,rent,1,'unskilled resident',1,none,yes,good
+'no checking',10,'existing paid','new car',1364,'<100','1<=X<4',2,'female div/dep/mar',none,4,car,64,none,own,1,skilled,1,yes,yes,good
+'0<=X<200',12,'existing paid',radio/tv,625,'<100','<1',4,'male mar/wid',guarantor,1,'real estate',26,bank,own,1,'unskilled resident',1,none,yes,good
+'<0',12,'existing paid',education,1200,'no known savings','1<=X<4',4,'female div/dep/mar',none,4,'life insurance',23,bank,rent,1,skilled,1,yes,yes,good
+'no checking',12,'existing paid',radio/tv,707,'<100','1<=X<4',4,'male single',none,2,'real estate',30,bank,own,2,skilled,1,none,yes,good
+'no checking',24,'delayed previously',business,2978,'no known savings','1<=X<4',4,'male single',none,4,'real estate',32,none,own,2,skilled,2,yes,yes,good
+'no checking',15,'existing paid','used car',4657,'<100','1<=X<4',3,'male single',none,2,car,30,none,own,1,skilled,1,yes,yes,good
+'no checking',36,'no credits/all paid',repairs,2613,'<100','1<=X<4',4,'male single',none,2,car,27,none,own,2,skilled,1,none,yes,good
+'0<=X<200',48,'existing paid',radio/tv,10961,'>=1000','4<=X<7',1,'male single','co applicant',2,'no known property',27,bank,own,2,skilled,1,yes,yes,bad
+'<0',12,'existing paid',furniture/equipment,7865,'<100','>=7',4,'male single',none,4,'no known property',53,none,'for free',1,'high qualif/self emp/mgmt',1,yes,yes,bad
+'no checking',9,'existing paid',radio/tv,1478,'<100','4<=X<7',4,'male single',none,2,car,22,none,own,1,skilled,1,none,yes,bad
+'<0',24,'existing paid',furniture/equipment,3149,'<100','<1',4,'male single',none,1,'no known property',22,bank,'for free',1,skilled,1,none,yes,good
+'>=200',36,'existing paid',radio/tv,4210,'<100','1<=X<4',4,'male single',none,2,car,26,none,own,1,skilled,1,none,yes,bad
+'no checking',9,'existing paid','new car',2507,'500<=X<1000','>=7',2,'male single',none,4,'no known property',51,none,'for free',1,'unskilled resident',1,none,yes,good
+'no checking',12,'existing paid',radio/tv,2141,'100<=X<500','4<=X<7',3,'male single',none,1,'no known property',35,none,own,1,skilled,1,none,yes,good
+'0<=X<200',18,'existing paid',radio/tv,866,'<100','1<=X<4',4,'male mar/wid',guarantor,2,'real estate',25,none,own,1,'unskilled resident',1,none,yes,good
+'no checking',4,'critical/other existing credit',radio/tv,1544,'<100','4<=X<7',2,'male single',none,1,'real estate',42,none,own,3,'unskilled resident',2,none,yes,good
+'<0',24,'existing paid',radio/tv,1823,'<100',unemployed,4,'male single',none,2,car,30,stores,own,1,'high qualif/self emp/mgmt',2,none,yes,bad
+'0<=X<200',6,'existing paid','new car',14555,'no known savings',unemployed,1,'male single',none,2,'life insurance',23,none,own,1,'unemp/unskilled non res',1,yes,yes,bad
+'0<=X<200',21,'existing paid',business,2767,'100<=X<500','>=7',4,'male div/sep',none,2,car,61,bank,rent,2,'unskilled resident',1,none,yes,bad
+'no checking',12,'critical/other existing credit',radio/tv,1291,'<100','1<=X<4',4,'female div/dep/mar',none,2,'life insurance',35,none,own,2,skilled,1,none,yes,good
+'<0',30,'existing paid',radio/tv,2522,'<100','>=7',1,'male single',guarantor,3,'life insurance',39,none,own,1,skilled,2,none,yes,good
+'<0',24,'existing paid','new car',915,'no known savings','>=7',4,'female div/dep/mar',none,2,car,29,bank,own,1,skilled,1,none,yes,bad
+'no checking',6,'existing paid',radio/tv,1595,'<100','4<=X<7',3,'male single',none,2,'life insurance',51,none,own,1,skilled,2,none,yes,good
+'<0',48,'no credits/all paid','used car',4605,'<100','>=7',3,'male single',none,4,'no known property',24,none,'for free',2,skilled,2,none,yes,bad
+'no checking',12,'critical/other existing credit',business,1185,'<100','1<=X<4',3,'female div/dep/mar',none,2,'real estate',27,none,own,2,skilled,1,none,yes,good
+'no checking',12,'all paid',retraining,3447,'500<=X<1000','1<=X<4',4,'female div/dep/mar',none,3,'real estate',35,none,own,1,'unskilled resident',2,none,yes,good
+'no checking',24,'existing paid',business,1258,'<100','4<=X<7',4,'male single',none,1,'real estate',25,none,own,1,skilled,1,yes,yes,good
+'no checking',12,'critical/other existing credit',radio/tv,717,'<100','>=7',4,'male single',none,4,'real estate',52,none,own,3,skilled,1,none,yes,good
+'no checking',6,'no credits/all paid','new car',1204,'100<=X<500','1<=X<4',4,'male single',none,1,'no known property',35,bank,rent,1,skilled,1,none,no,good
+'>=200',24,'existing paid',furniture/equipment,1925,'<100','1<=X<4',2,'male single',none,2,'real estate',26,none,own,1,skilled,1,none,yes,good
+'no checking',18,'existing paid',radio/tv,433,'<100',unemployed,3,'female div/dep/mar','co applicant',4,'real estate',22,none,rent,1,skilled,1,none,yes,bad
+'<0',6,'critical/other existing credit','new car',666,'>=1000','4<=X<7',3,'female div/dep/mar',none,4,'real estate',39,none,own,2,'unskilled resident',1,yes,yes,good
+'>=200',12,'existing paid',furniture/equipment,2251,'<100','1<=X<4',1,'female div/dep/mar',none,2,car,46,none,own,1,'unskilled resident',1,none,yes,good
+'0<=X<200',30,'existing paid','new car',2150,'<100','1<=X<4',4,'female div/dep/mar',guarantor,2,'no known property',24,bank,own,1,skilled,1,none,yes,bad
+'no checking',24,'delayed previously',furniture/equipment,4151,'100<=X<500','1<=X<4',2,'male single',none,3,'life insurance',35,none,own,2,skilled,1,none,yes,good
+'0<=X<200',9,'existing paid',furniture/equipment,2030,'no known savings','4<=X<7',2,'male single',none,1,car,24,none,own,1,skilled,1,yes,yes,good
+'0<=X<200',60,'delayed previously',radio/tv,7418,'no known savings','1<=X<4',1,'male single',none,1,'real estate',27,none,own,1,'unskilled resident',1,none,yes,good
+'no checking',24,'critical/other existing credit',radio/tv,2684,'<100','1<=X<4',4,'male single',none,2,'real estate',35,none,own,2,'unskilled resident',1,none,yes,good
+'<0',12,'all paid',radio/tv,2149,'<100','1<=X<4',4,'male div/sep',none,1,'no known property',29,none,'for free',1,skilled,1,none,yes,bad
+'no checking',15,'existing paid','used car',3812,'100<=X<500','<1',1,'female div/dep/mar',none,4,car,23,none,own,1,skilled,1,yes,yes,good
+'no checking',11,'critical/other existing credit',radio/tv,1154,'100<=X<500',unemployed,4,'female div/dep/mar',none,4,'real estate',57,none,own,3,'unskilled resident',1,none,yes,good
+'<0',12,'existing paid',furniture/equipment,1657,'<100','1<=X<4',2,'male single',none,2,'real estate',27,none,own,1,skilled,1,none,yes,good
+'<0',24,'existing paid',radio/tv,1603,'<100','>=7',4,'female div/dep/mar',none,4,car,55,none,own,1,skilled,1,none,yes,good
+'<0',18,'critical/other existing credit','new car',5302,'<100','>=7',2,'male single',none,4,'no known property',36,none,'for free',3,'high qualif/self emp/mgmt',1,yes,yes,good
+'no checking',12,'critical/other existing credit',education,2748,'<100','>=7',2,'female div/dep/mar',none,4,'no known property',57,bank,'for free',3,'unskilled resident',1,none,yes,good
+'no checking',10,'critical/other existing credit','new car',1231,'<100','>=7',3,'male single',none,4,'real estate',32,none,own,2,'unskilled resident',2,none,no,good
+'0<=X<200',15,'existing paid',radio/tv,802,'<100','>=7',4,'male single',none,3,car,37,none,own,1,skilled,2,none,yes,bad
+'no checking',36,'critical/other existing credit',business,6304,'no known savings','>=7',4,'male single',none,4,'real estate',36,none,own,2,skilled,1,none,yes,good
+'no checking',24,'existing paid',radio/tv,1533,'<100','<1',4,'female div/dep/mar',none,3,car,38,stores,own,1,skilled,1,yes,yes,good
+'<0',14,'existing paid','new car',8978,'<100','>=7',1,'male div/sep',none,4,'life insurance',45,none,own,1,'high qualif/self emp/mgmt',1,yes,no,bad
+'no checking',24,'existing paid',radio/tv,999,'no known savings','>=7',4,'male single',none,2,car,25,none,own,2,skilled,1,none,yes,good
+'no checking',18,'existing paid','new car',2662,'no known savings','4<=X<7',4,'male single',none,3,'life insurance',32,none,own,1,skilled,1,none,no,good
+'no checking',12,'critical/other existing credit',furniture/equipment,1402,'500<=X<1000','4<=X<7',3,'female div/dep/mar',none,4,car,37,none,rent,1,skilled,1,yes,yes,good
+'0<=X<200',48,'all paid','new car',12169,'no known savings',unemployed,4,'male single','co applicant',4,'no known property',36,none,'for free',1,'high qualif/self emp/mgmt',1,yes,yes,good
+'0<=X<200',48,'existing paid',radio/tv,3060,'<100','4<=X<7',4,'male single',none,4,'real estate',28,none,own,2,skilled,1,none,yes,bad
+'<0',30,'existing paid',repairs,11998,'<100','<1',1,'male div/sep',none,1,'no known property',34,none,own,1,'unskilled resident',1,yes,yes,bad
+'no checking',9,'existing paid',radio/tv,2697,'<100','1<=X<4',1,'male single',none,2,'real estate',32,none,own,1,skilled,2,none,yes,good
+'no checking',18,'critical/other existing credit',radio/tv,2404,'<100','1<=X<4',2,'female div/dep/mar',none,2,car,26,none,own,2,skilled,1,none,yes,good
+'<0',12,'existing paid',furniture/equipment,1262,'no known savings','>=7',2,'male div/sep',none,4,'life insurance',49,none,own,1,'unskilled resident',1,yes,yes,good
+'no checking',6,'existing paid',furniture/equipment,4611,'<100','<1',1,'female div/dep/mar',none,4,'life insurance',32,none,own,1,skilled,1,none,yes,bad
+'no checking',24,'existing paid',radio/tv,1901,'100<=X<500','1<=X<4',4,'male single',none,4,car,29,none,rent,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'no checking',15,'critical/other existing credit','used car',3368,'>=1000','>=7',3,'male single',none,4,'no known property',23,none,rent,2,skilled,1,yes,yes,good
+'no checking',12,'existing paid',furniture/equipment,1574,'<100','1<=X<4',4,'male single',none,2,'real estate',50,none,own,1,skilled,1,none,yes,good
+'>=200',18,'all paid',radio/tv,1445,'no known savings','4<=X<7',4,'male single',none,4,car,49,bank,own,1,'unskilled resident',1,none,yes,good
+'no checking',15,'critical/other existing credit',furniture/equipment,1520,'no known savings','>=7',4,'male single',none,4,'life insurance',63,none,own,1,skilled,1,none,yes,good
+'0<=X<200',24,'critical/other existing credit','new car',3878,'100<=X<500','<1',4,'male div/sep',none,2,car,37,none,own,1,skilled,1,yes,yes,good
+'<0',47,'existing paid','new car',10722,'<100','<1',1,'female div/dep/mar',none,1,'real estate',35,none,own,1,'unskilled resident',1,yes,yes,good
+'<0',48,'existing paid','used car',4788,'<100','4<=X<7',4,'male single',none,3,'life insurance',26,none,own,1,skilled,2,none,yes,good
+'0<=X<200',48,'delayed previously',other,7582,'100<=X<500',unemployed,2,'male single',none,4,'no known property',31,none,'for free',1,'high qualif/self emp/mgmt',1,yes,yes,good
+'0<=X<200',12,'existing paid',radio/tv,1092,'<100','1<=X<4',4,'female div/dep/mar',guarantor,4,'real estate',49,none,own,2,skilled,1,yes,yes,good
+'<0',24,'delayed previously',radio/tv,1024,'<100','<1',4,'male mar/wid',none,4,'real estate',48,stores,own,1,skilled,1,none,yes,bad
+'no checking',12,'existing paid',business,1076,'<100','1<=X<4',2,'male mar/wid',none,2,'real estate',26,none,own,1,skilled,1,yes,no,good
+'0<=X<200',36,'existing paid','used car',9398,'<100','<1',1,'male mar/wid',none,4,car,28,none,rent,1,'high qualif/self emp/mgmt',1,yes,yes,bad
+'<0',24,'critical/other existing credit','used car',6419,'<100','>=7',2,'female div/dep/mar',none,4,'no known property',44,none,'for free',2,'high qualif/self emp/mgmt',2,yes,yes,good
+'>=200',42,'critical/other existing credit','used car',4796,'<100','>=7',4,'male single',none,4,'no known property',56,none,'for free',1,skilled,1,none,yes,good
+'no checking',48,'critical/other existing credit',business,7629,'no known savings','>=7',4,'male div/sep',none,2,car,46,bank,own,2,'high qualif/self emp/mgmt',2,none,yes,good
+'0<=X<200',48,'existing paid',furniture/equipment,9960,'<100','<1',1,'female div/dep/mar',none,2,car,26,none,own,1,skilled,1,yes,yes,bad
+'no checking',12,'existing paid','used car',4675,'no known savings','<1',1,'female div/dep/mar',none,4,car,20,none,rent,1,skilled,1,none,yes,good
+'no checking',10,'existing paid','new car',1287,'no known savings','>=7',4,'male single','co applicant',2,'life insurance',45,none,own,1,'unskilled resident',1,none,no,good
+'no checking',18,'existing paid',furniture/equipment,2515,'<100','1<=X<4',3,'male single',none,4,'real estate',43,none,own,1,skilled,1,yes,yes,good
+'0<=X<200',21,'critical/other existing credit',furniture/equipment,2745,'>=1000','4<=X<7',3,'male single',none,2,car,32,none,own,2,skilled,1,yes,yes,good
+'no checking',6,'existing paid','new car',672,'<100',unemployed,1,'female div/dep/mar',none,4,'real estate',54,none,own,1,'unemp/unskilled non res',1,yes,yes,good
+'0<=X<200',36,'no credits/all paid',radio/tv,3804,'<100','1<=X<4',4,'female div/dep/mar',none,1,car,42,none,own,1,skilled,1,yes,yes,bad
+'>=200',24,'critical/other existing credit','new car',1344,'no known savings','4<=X<7',4,'male single',none,2,'real estate',37,bank,own,2,'unskilled resident',2,none,yes,bad
+'<0',10,'critical/other existing credit','new car',1038,'<100','4<=X<7',4,'male single','co applicant',3,'life insurance',49,none,own,2,skilled,1,yes,yes,good
+'no checking',48,'critical/other existing credit','new car',10127,'500<=X<1000','1<=X<4',2,'male single',none,2,'no known property',44,bank,'for free',1,skilled,1,none,yes,bad
+'no checking',6,'existing paid',furniture/equipment,1543,'>=1000','1<=X<4',4,'male div/sep',none,2,'real estate',33,none,own,1,skilled,1,none,yes,good
+'no checking',30,'existing paid','used car',4811,'no known savings','4<=X<7',2,'female div/dep/mar',none,4,'life insurance',24,stores,rent,1,'unskilled resident',1,none,yes,good
+'<0',12,'existing paid',radio/tv,727,'100<=X<500','<1',4,'male mar/wid',none,3,'no known property',33,none,own,1,'unskilled resident',1,yes,yes,bad
+'0<=X<200',8,'existing paid',furniture/equipment,1237,'<100','1<=X<4',3,'female div/dep/mar',none,4,'real estate',24,none,own,1,skilled,1,none,yes,bad
+'0<=X<200',9,'existing paid','new car',276,'<100','1<=X<4',4,'male mar/wid',none,4,'real estate',22,none,rent,1,'unskilled resident',1,none,yes,good
+'0<=X<200',48,'existing paid',other,5381,'no known savings',unemployed,3,'male single',none,4,'no known property',40,bank,'for free',1,'unemp/unskilled non res',1,yes,yes,good
+'no checking',24,'existing paid',furniture/equipment,5511,'100<=X<500','1<=X<4',4,'male single',none,1,car,25,stores,own,1,skilled,1,none,yes,good
+'>=200',24,'existing paid',furniture/equipment,3749,'<100','<1',2,'female div/dep/mar',none,4,car,26,none,own,1,skilled,1,none,yes,good
+'0<=X<200',12,'existing paid','new car',685,'<100','4<=X<7',2,'male mar/wid',none,3,car,25,bank,own,1,'unskilled resident',1,none,yes,bad
+'>=200',4,'existing paid','new car',1494,'no known savings','<1',1,'male single',none,2,'real estate',29,none,own,1,'unskilled resident',2,none,no,good
+'<0',36,'all paid',furniture/equipment,2746,'<100','>=7',4,'male single',none,4,car,31,bank,own,1,skilled,1,none,yes,bad
+'<0',12,'existing paid',furniture/equipment,708,'<100','1<=X<4',2,'male single',guarantor,3,'life insurance',38,none,own,1,'unskilled resident',2,none,yes,good
+'0<=X<200',24,'existing paid',furniture/equipment,4351,'no known savings','1<=X<4',1,'female div/dep/mar',none,4,'life insurance',48,none,own,1,'unskilled resident',1,yes,yes,good
+'no checking',12,'critical/other existing credit',education,701,'<100','1<=X<4',4,'male single',none,2,car,32,none,own,2,skilled,1,none,yes,good
+'<0',15,'delayed previously',furniture/equipment,3643,'<100','>=7',1,'female div/dep/mar',none,4,'life insurance',27,none,own,2,'unskilled resident',1,none,yes,good
+'0<=X<200',30,'critical/other existing credit','new car',4249,'<100',unemployed,4,'male mar/wid',none,2,car,28,none,own,2,'high qualif/self emp/mgmt',1,none,yes,bad
+'<0',24,'existing paid',radio/tv,1938,'<100','<1',4,'male div/sep',none,3,'life insurance',32,none,own,1,skilled,1,none,yes,bad
+'<0',24,'existing paid','used car',2910,'<100','4<=X<7',2,'male single',none,1,'no known property',34,none,'for free',1,'high qualif/self emp/mgmt',1,yes,yes,good
+'<0',18,'existing paid',furniture/equipment,2659,'>=1000','1<=X<4',4,'male single',none,2,car,28,none,own,1,skilled,1,none,yes,good
+'no checking',18,'critical/other existing credit','new car',1028,'<100','1<=X<4',4,'female div/dep/mar',none,3,'real estate',36,none,own,2,skilled,1,none,yes,good
+'<0',8,'critical/other existing credit','new car',3398,'<100','4<=X<7',1,'male single',none,4,'real estate',39,none,own,2,'unskilled resident',1,none,no,good
+'no checking',12,'critical/other existing credit',furniture/equipment,5801,'no known savings','>=7',2,'male single',none,4,'life insurance',49,none,rent,1,skilled,1,yes,yes,good
+'no checking',24,'existing paid','new car',1525,'>=1000','4<=X<7',4,'female div/dep/mar',none,3,car,34,none,own,1,skilled,2,yes,yes,good
+'>=200',36,'existing paid',radio/tv,4473,'<100','>=7',4,'male single',none,2,car,31,none,own,1,skilled,1,none,yes,good
+'0<=X<200',6,'existing paid',radio/tv,1068,'<100','>=7',4,'male single',none,4,car,28,none,own,1,skilled,2,none,yes,good
+'<0',24,'critical/other existing credit','used car',6615,'<100',unemployed,2,'male single',none,4,'no known property',75,none,'for free',2,'high qualif/self emp/mgmt',1,yes,yes,good
+'no checking',18,'critical/other existing credit',education,1864,'100<=X<500','1<=X<4',4,'female div/dep/mar',none,2,'real estate',30,none,own,2,skilled,1,none,yes,bad
+'0<=X<200',60,'existing paid','new car',7408,'100<=X<500','<1',4,'female div/dep/mar',none,2,'life insurance',24,none,own,1,'high qualif/self emp/mgmt',1,none,yes,bad
+'no checking',48,'critical/other existing credit','used car',11590,'100<=X<500','1<=X<4',2,'female div/dep/mar',none,4,car,24,bank,rent,2,'unskilled resident',1,none,yes,bad
+'<0',24,'no credits/all paid',furniture/equipment,4110,'<100','>=7',3,'male single',none,4,'no known property',23,bank,rent,2,skilled,2,none,yes,bad
+'<0',6,'critical/other existing credit',furniture/equipment,3384,'<100','1<=X<4',1,'male div/sep',none,4,'real estate',44,none,rent,1,'high qualif/self emp/mgmt',1,yes,yes,bad
+'0<=X<200',13,'existing paid',radio/tv,2101,'<100','<1',2,'female div/dep/mar',guarantor,4,'life insurance',23,none,own,1,'unskilled resident',1,none,yes,good
+'<0',15,'existing paid','domestic appliance',1275,'no known savings','1<=X<4',4,'female div/dep/mar',none,2,car,24,none,rent,1,skilled,1,none,yes,bad
+'<0',24,'existing paid',furniture/equipment,4169,'<100','1<=X<4',4,'male single',none,4,'life insurance',28,none,own,1,skilled,1,none,yes,good
+'0<=X<200',10,'existing paid',furniture/equipment,1521,'<100','1<=X<4',4,'male div/sep',none,2,car,31,none,own,1,'unskilled resident',1,none,yes,good
+'0<=X<200',24,'critical/other existing credit',education,5743,'<100','<1',2,'female div/dep/mar',none,4,'no known property',24,none,'for free',2,skilled,1,yes,yes,good
+'<0',21,'existing paid',furniture/equipment,3599,'<100','4<=X<7',1,'female div/dep/mar',none,4,car,26,none,rent,1,'unskilled resident',1,none,yes,good
+'0<=X<200',18,'existing paid',radio/tv,3213,'500<=X<1000','<1',1,'male mar/wid',none,3,'real estate',25,none,rent,1,skilled,1,none,yes,good
+'0<=X<200',18,'existing paid',business,4439,'<100','>=7',1,'male single','co applicant',1,'real estate',33,bank,own,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'>=200',10,'existing paid','new car',3949,'<100','<1',1,'male single',guarantor,1,'life insurance',37,none,own,1,'unskilled resident',2,none,yes,good
+'no checking',15,'critical/other existing credit',radio/tv,1459,'<100','1<=X<4',4,'female div/dep/mar',none,2,car,43,none,own,1,'unskilled resident',1,none,yes,good
+'0<=X<200',13,'critical/other existing credit',radio/tv,882,'<100','<1',4,'male single',guarantor,4,'real estate',23,none,own,2,skilled,1,none,yes,good
+'0<=X<200',24,'existing paid',radio/tv,3758,'500<=X<1000',unemployed,1,'female div/dep/mar',none,4,'no known property',23,none,rent,1,'unemp/unskilled non res',1,none,yes,good
+'no checking',6,'delayed previously',business,1743,'100<=X<500','1<=X<4',1,'male single',none,2,'real estate',34,none,own,2,'unskilled resident',1,none,yes,good
+'0<=X<200',9,'critical/other existing credit',education,1136,'>=1000','>=7',4,'male single',none,3,'no known property',32,none,'for free',2,skilled,2,none,yes,bad
+'no checking',9,'existing paid','domestic appliance',1236,'<100','<1',1,'female div/dep/mar',none,4,'real estate',23,none,rent,1,skilled,1,yes,yes,good
+'0<=X<200',9,'existing paid',furniture/equipment,959,'<100','1<=X<4',1,'female div/dep/mar',none,2,car,29,none,own,1,skilled,1,none,no,bad
+'no checking',18,'critical/other existing credit','used car',3229,'no known savings',unemployed,2,'male single',none,4,'no known property',38,none,own,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'<0',12,'no credits/all paid',radio/tv,6199,'<100','1<=X<4',4,'male single',none,2,'life insurance',28,none,rent,2,skilled,1,yes,yes,bad
+'no checking',10,'existing paid',education,727,'500<=X<1000','>=7',4,'male single',none,4,'no known property',46,none,'for free',1,skilled,1,yes,yes,good
+'0<=X<200',24,'existing paid','new car',1246,'<100','<1',4,'male single',none,2,'real estate',23,stores,own,1,'unskilled resident',1,none,yes,bad
+'no checking',12,'critical/other existing credit',radio/tv,2331,'no known savings','>=7',1,'male single','co applicant',4,'real estate',49,none,own,1,skilled,1,yes,yes,good
+'no checking',36,'delayed previously',radio/tv,4463,'<100','1<=X<4',4,'male single',none,2,car,26,none,own,2,'high qualif/self emp/mgmt',1,yes,yes,bad
+'no checking',12,'existing paid',radio/tv,776,'<100','1<=X<4',4,'male mar/wid',none,2,'real estate',28,none,own,1,skilled,1,none,yes,good
+'<0',30,'existing paid',furniture/equipment,2406,'<100','4<=X<7',4,'female div/dep/mar',none,4,'real estate',23,none,rent,1,skilled,1,none,yes,bad
+'0<=X<200',18,'existing paid',education,1239,'no known savings','1<=X<4',4,'male single',none,4,'no known property',61,none,'for free',1,skilled,1,none,yes,good
+'>=200',12,'existing paid',radio/tv,3399,'no known savings','>=7',2,'male single',none,3,car,37,none,own,1,'high qualif/self emp/mgmt',1,none,yes,good
+'>=200',12,'delayed previously','new car',2247,'<100','1<=X<4',2,'female div/dep/mar',none,2,car,36,stores,own,2,skilled,1,yes,yes,good
+'no checking',6,'existing paid',furniture/equipment,1766,'<100','1<=X<4',1,'male mar/wid',none,2,'life insurance',21,none,rent,1,skilled,1,none,yes,good
+'<0',18,'existing paid',furniture/equipment,2473,'<100',unemployed,4,'male single',none,1,car,25,none,own,1,'unemp/unskilled non res',1,none,yes,bad
+'no checking',12,'existing paid',business,1542,'<100','4<=X<7',2,'male single',none,4,car,36,none,own,1,skilled,1,yes,yes,good
+'no checking',18,'critical/other existing credit','used car',3850,'<100','4<=X<7',3,'male single',none,1,car,27,none,own,2,skilled,1,none,yes,good
+'<0',18,'existing paid',furniture/equipment,3650,'<100','<1',1,'female div/dep/mar',none,4,car,22,none,rent,1,skilled,1,none,yes,good
+'<0',36,'existing paid',furniture/equipment,3446,'<100','>=7',4,'male single',none,2,car,42,none,own,1,skilled,2,none,yes,bad
+'0<=X<200',18,'existing paid',furniture/equipment,3001,'<100','4<=X<7',2,'female div/dep/mar',none,4,'real estate',40,none,rent,1,skilled,1,none,yes,good
+'no checking',36,'existing paid','new car',3079,'no known savings','1<=X<4',4,'male single',none,4,'real estate',36,none,own,1,skilled,1,none,yes,good
+'no checking',18,'critical/other existing credit',radio/tv,6070,'<100','>=7',3,'male single',none,4,car,33,none,own,2,skilled,1,yes,yes,good
+'no checking',10,'critical/other existing credit',furniture/equipment,2146,'<100','<1',1,'female div/dep/mar',none,3,'real estate',23,none,rent,2,skilled,1,none,yes,good
+'no checking',60,'critical/other existing credit','new car',13756,'no known savings','>=7',2,'male single',none,4,'no known property',63,bank,'for free',1,'high qualif/self emp/mgmt',1,yes,yes,good
+'0<=X<200',60,'all paid',other,14782,'100<=X<500','>=7',3,'female div/dep/mar',none,4,'no known property',60,bank,'for free',2,'high qualif/self emp/mgmt',1,yes,yes,bad
+'<0',48,'all paid',business,7685,'<100','4<=X<7',2,'female div/dep/mar',guarantor,4,car,37,none,rent,1,skilled,1,none,yes,bad
+'no checking',18,'delayed previously',radio/tv,2320,'<100',unemployed,2,'male mar/wid',none,3,'real estate',34,none,own,2,skilled,1,none,yes,good
+'no checking',7,'delayed previously',radio/tv,846,'no known savings','>=7',3,'male single',none,4,'no known property',36,none,'for free',1,skilled,1,none,yes,good
+'0<=X<200',36,'existing paid','new car',14318,'<100','>=7',4,'male single',none,2,'no known property',57,none,'for free',1,'high qualif/self emp/mgmt',1,yes,yes,bad
+'no checking',6,'critical/other existing credit','new car',362,'100<=X<500','1<=X<4',4,'female div/dep/mar',none,4,car,52,none,own,2,'unskilled resident',1,none,yes,good
+'<0',20,'existing paid',furniture/equipment,2212,'no known savings','4<=X<7',4,'male single',none,4,car,39,none,own,1,skilled,1,yes,yes,good
+'0<=X<200',18,'existing paid','used car',12976,'<100',unemployed,3,'female div/dep/mar',none,4,'no known property',38,none,'for free',1,'high qualif/self emp/mgmt',1,yes,yes,bad
+'no checking',22,'existing paid','new car',1283,'no known savings','4<=X<7',4,'female div/dep/mar',none,4,'life insurance',25,none,rent,1,skilled,1,none,yes,good
+'>=200',12,'existing paid','new car',1330,'<100','<1',4,'male single',none,1,'real estate',26,none,own,1,skilled,1,none,yes,good
+'no checking',30,'delayed previously',business,4272,'100<=X<500','1<=X<4',2,'male single',none,2,'life insurance',26,none,own,2,'unskilled resident',1,none,yes,good
+'no checking',18,'critical/other existing credit',radio/tv,2238,'<100','1<=X<4',2,'female div/dep/mar',none,1,car,25,none,own,2,skilled,1,none,yes,good
+'no checking',18,'existing paid',radio/tv,1126,'no known savings','<1',4,'female div/dep/mar',none,2,'real estate',21,none,rent,1,skilled,1,yes,yes,good
+'0<=X<200',18,'critical/other existing credit',furniture/equipment,7374,'<100',unemployed,4,'male single',none,4,'life insurance',40,stores,own,2,'high qualif/self emp/mgmt',1,yes,yes,good
+'0<=X<200',15,'critical/other existing credit',business,2326,'500<=X<1000','1<=X<4',2,'male single',none,4,car,27,bank,own,1,skilled,1,none,yes,good
+'no checking',9,'existing paid',business,1449,'<100','4<=X<7',3,'female div/dep/mar',none,2,car,27,none,own,2,skilled,1,none,yes,good
+'no checking',18,'existing paid','new car',1820,'<100','1<=X<4',2,'male mar/wid',none,2,'life insurance',30,none,own,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'0<=X<200',12,'existing paid',furniture/equipment,983,'>=1000','<1',1,'female div/dep/mar',none,4,'real estate',19,none,rent,1,'unskilled resident',1,none,yes,good
+'<0',36,'existing paid','new car',3249,'<100','4<=X<7',2,'male single',none,4,'no known property',39,bank,'for free',1,'high qualif/self emp/mgmt',2,yes,yes,good
+'<0',6,'critical/other existing credit',radio/tv,1957,'<100','4<=X<7',1,'female div/dep/mar',none,4,car,31,none,own,1,skilled,1,none,yes,good
+'no checking',9,'critical/other existing credit',furniture/equipment,2406,'<100',unemployed,2,'male single',none,3,car,31,none,own,1,'high qualif/self emp/mgmt',1,none,yes,good
+'0<=X<200',39,'delayed previously',education,11760,'100<=X<500','4<=X<7',2,'male single',none,3,'no known property',32,none,rent,1,skilled,1,yes,yes,good
+'<0',12,'existing paid',furniture/equipment,2578,'<100',unemployed,3,'female div/dep/mar',none,4,'no known property',55,none,'for free',1,'high qualif/self emp/mgmt',1,none,yes,good
+'<0',36,'critical/other existing credit',furniture/equipment,2348,'<100','1<=X<4',3,'male mar/wid',none,2,'life insurance',46,none,own,2,skilled,1,yes,yes,good
+'0<=X<200',12,'existing paid','new car',1223,'<100','>=7',1,'male div/sep',none,1,'real estate',46,none,rent,2,skilled,1,none,yes,bad
+'no checking',24,'critical/other existing credit',radio/tv,1516,'>=1000','1<=X<4',4,'female div/dep/mar',none,1,'real estate',43,none,own,2,'unskilled resident',1,none,yes,good
+'no checking',18,'existing paid',radio/tv,1473,'<100','<1',3,'male mar/wid',none,4,'real estate',39,none,own,1,skilled,1,yes,yes,good
+'0<=X<200',18,'critical/other existing credit',business,1887,'no known savings','1<=X<4',4,'male mar/wid',none,4,'real estate',28,bank,own,2,skilled,1,none,yes,good
+'no checking',24,'delayed previously',business,8648,'<100','<1',2,'male single',none,2,car,27,bank,own,2,skilled,1,yes,yes,bad
+'no checking',14,'delayed previously','new car',802,'<100','1<=X<4',4,'male single',none,2,car,27,none,own,2,'unskilled resident',1,none,yes,good
+'0<=X<200',18,'delayed previously','new car',2899,'no known savings','>=7',4,'male single',none,4,car,43,none,own,1,skilled,2,none,yes,good
+'0<=X<200',24,'existing paid',radio/tv,2039,'<100','<1',1,'male mar/wid',none,1,'life insurance',22,none,own,1,skilled,1,yes,yes,bad
+'no checking',24,'critical/other existing credit','used car',2197,'no known savings','4<=X<7',4,'male single',none,4,car,43,none,own,2,skilled,2,yes,yes,good
+'<0',15,'existing paid',radio/tv,1053,'<100','<1',4,'male mar/wid',none,2,'real estate',27,none,own,1,skilled,1,none,no,good
+'no checking',24,'existing paid',radio/tv,3235,'500<=X<1000','>=7',3,'male div/sep',none,2,car,26,none,own,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'>=200',12,'critical/other existing credit','new car',939,'500<=X<1000','4<=X<7',4,'male mar/wid',none,2,'real estate',28,none,own,3,skilled,1,yes,yes,bad
+'0<=X<200',24,'existing paid',radio/tv,1967,'<100','>=7',4,'female div/dep/mar',none,4,car,20,none,own,1,skilled,1,yes,yes,good
+'no checking',33,'critical/other existing credit','used car',7253,'<100','4<=X<7',3,'male single',none,2,car,35,none,own,2,'high qualif/self emp/mgmt',1,yes,yes,good
+'no checking',12,'critical/other existing credit',business,2292,'<100',unemployed,4,'male single',none,2,car,42,stores,own,2,'high qualif/self emp/mgmt',1,yes,yes,bad
+'no checking',10,'existing paid','new car',1597,'500<=X<1000','1<=X<4',3,'male single',none,2,'no known property',40,none,rent,1,'unskilled resident',2,none,no,good
+'<0',24,'existing paid','new car',1381,'no known savings','1<=X<4',4,'female div/dep/mar',none,2,'life insurance',35,none,own,1,skilled,1,none,yes,bad
+'no checking',36,'critical/other existing credit','used car',5842,'<100','>=7',2,'male single',none,2,'life insurance',35,none,own,2,skilled,2,yes,yes,good
+'<0',12,'existing paid','new car',2579,'<100','<1',4,'male single',none,1,'real estate',33,none,own,1,'unskilled resident',2,none,yes,bad
+'<0',18,'delayed previously',education,8471,'no known savings','1<=X<4',1,'female div/dep/mar',none,2,car,23,none,rent,2,skilled,1,yes,yes,good
+'no checking',21,'existing paid','new car',2782,'500<=X<1000','4<=X<7',1,'female div/dep/mar',none,2,car,31,bank,own,1,'high qualif/self emp/mgmt',1,none,yes,good
+'0<=X<200',18,'existing paid','new car',1042,'no known savings','1<=X<4',4,'female div/dep/mar',none,2,'life insurance',33,none,own,1,skilled,1,none,yes,bad
+'no checking',15,'existing paid','new car',3186,'>=1000','4<=X<7',2,'female div/dep/mar',none,3,car,20,none,rent,1,skilled,1,none,yes,good
+'0<=X<200',12,'existing paid','used car',2028,'no known savings','1<=X<4',4,'male single',none,2,car,30,none,own,1,skilled,1,none,yes,good
+'0<=X<200',12,'critical/other existing credit','new car',958,'<100','4<=X<7',2,'male single',none,3,'real estate',47,none,own,2,'unskilled resident',2,none,yes,good
+'no checking',21,'delayed previously',furniture/equipment,1591,'100<=X<500','4<=X<7',4,'male single',none,3,'real estate',34,none,own,2,'high qualif/self emp/mgmt',1,none,yes,good
+'0<=X<200',12,'existing paid',furniture/equipment,2762,'no known savings','>=7',1,'female div/dep/mar',none,2,'life insurance',25,bank,own,1,skilled,1,yes,yes,bad
+'0<=X<200',18,'existing paid','used car',2779,'<100','1<=X<4',1,'male mar/wid',none,3,car,21,none,rent,1,skilled,1,yes,yes,good
+'no checking',28,'critical/other existing credit',radio/tv,2743,'<100','>=7',4,'male single',none,2,car,29,none,own,2,skilled,1,none,yes,good
+'no checking',18,'critical/other existing credit',radio/tv,1149,'>=1000','1<=X<4',4,'male single',none,3,'real estate',46,none,own,2,skilled,1,none,yes,good
+'no checking',9,'existing paid',furniture/equipment,1313,'<100','>=7',1,'male single',none,4,car,20,none,own,1,skilled,1,none,yes,good
+'<0',18,'critical/other existing credit',repairs,1190,'<100',unemployed,2,'female div/dep/mar',none,4,'no known property',55,none,'for free',3,'unemp/unskilled non res',2,none,yes,bad
+'no checking',5,'existing paid',business,3448,'<100','4<=X<7',1,'male single',none,4,'real estate',74,none,own,1,'unskilled resident',1,none,yes,good
+'0<=X<200',24,'existing paid',other,11328,'<100','1<=X<4',2,'male single','co applicant',3,car,29,bank,own,2,'high qualif/self emp/mgmt',1,yes,yes,bad
+'<0',6,'critical/other existing credit',furniture/equipment,1872,'<100',unemployed,4,'male single',none,4,'no known property',36,none,'for free',3,'high qualif/self emp/mgmt',1,yes,yes,good
+'no checking',24,'critical/other existing credit',repairs,2058,'<100','1<=X<4',4,'male div/sep',none,2,'real estate',33,none,own,2,skilled,1,yes,yes,good
+'<0',9,'existing paid',furniture/equipment,2136,'<100','1<=X<4',3,'male single',none,2,'real estate',25,none,own,1,skilled,1,none,yes,good
+'0<=X<200',12,'existing paid',radio/tv,1484,'no known savings','1<=X<4',2,'male mar/wid',none,1,'real estate',25,none,own,1,skilled,1,yes,yes,bad
+'no checking',6,'existing paid',repairs,660,'500<=X<1000','4<=X<7',2,'male mar/wid',none,4,'real estate',23,none,rent,1,'unskilled resident',1,none,yes,good
+'no checking',24,'critical/other existing credit','new car',1287,'>=1000','>=7',4,'female div/dep/mar',none,4,'real estate',37,none,own,2,skilled,1,yes,yes,good
+'<0',42,'critical/other existing credit',repairs,3394,'<100',unemployed,4,'male single','co applicant',4,car,65,none,own,2,'unemp/unskilled non res',1,none,yes,good
+'>=200',12,'all paid',business,609,'<100','<1',4,'female div/dep/mar',none,1,'real estate',26,none,own,1,'unemp/unskilled non res',1,none,yes,bad
+'no checking',12,'existing paid','new car',1884,'<100','>=7',4,'male single',none,4,car,39,none,own,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'<0',12,'existing paid',furniture/equipment,1620,'<100','1<=X<4',2,'female div/dep/mar','co applicant',3,'life insurance',30,none,own,1,skilled,1,none,yes,good
+'0<=X<200',20,'delayed previously',other,2629,'<100','1<=X<4',2,'male single',none,3,car,29,bank,own,2,skilled,1,yes,yes,good
+'no checking',12,'existing paid',education,719,'<100','>=7',4,'male single',none,4,car,41,bank,own,1,'unskilled resident',2,none,yes,bad
+'0<=X<200',48,'critical/other existing credit',furniture/equipment,5096,'<100','1<=X<4',2,'female div/dep/mar',none,3,car,30,none,own,1,'high qualif/self emp/mgmt',1,yes,yes,bad
+'no checking',9,'critical/other existing credit',education,1244,'no known savings','>=7',4,'female div/dep/mar',none,4,'life insurance',41,none,rent,2,'unskilled resident',1,none,yes,good
+'<0',36,'existing paid','new car',1842,'<100','<1',4,'female div/dep/mar',none,4,car,34,none,own,1,skilled,1,yes,yes,bad
+'0<=X<200',7,'existing paid',radio/tv,2576,'<100','1<=X<4',2,'male single',guarantor,2,'real estate',35,none,own,1,skilled,1,none,yes,good
+'>=200',12,'existing paid',furniture/equipment,1424,'no known savings','>=7',3,'female div/dep/mar',none,4,'real estate',55,none,own,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'0<=X<200',15,'delayed previously',repairs,1512,'>=1000','1<=X<4',3,'male mar/wid',none,3,'life insurance',61,stores,own,2,skilled,1,none,yes,bad
+'no checking',36,'critical/other existing credit','used car',11054,'no known savings','1<=X<4',4,'male single',none,2,car,30,none,own,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'no checking',6,'existing paid',radio/tv,518,'<100','1<=X<4',3,'female div/dep/mar',none,1,'real estate',29,none,own,1,skilled,1,none,yes,good
+'no checking',12,'no credits/all paid',furniture/equipment,2759,'<100','>=7',2,'male single',none,4,'life insurance',34,none,own,2,skilled,1,none,yes,good
+'no checking',24,'existing paid','used car',2670,'<100','>=7',4,'male single',none,4,car,35,none,own,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'<0',24,'existing paid','new car',4817,'<100','4<=X<7',2,'male single','co applicant',3,'life insurance',31,none,own,1,skilled,1,yes,yes,bad
+'no checking',24,'existing paid','used car',2679,'<100','<1',4,'female div/dep/mar',none,1,'no known property',29,none,own,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'<0',11,'critical/other existing credit','new car',3905,'<100','1<=X<4',2,'male single',none,2,'real estate',36,none,rent,2,skilled,2,none,yes,good
+'<0',12,'existing paid','used car',3386,'<100','>=7',3,'male single',none,4,'no known property',35,none,'for free',1,skilled,1,yes,yes,bad
+'<0',6,'existing paid','domestic appliance',343,'<100','<1',4,'female div/dep/mar',none,1,'real estate',27,none,own,1,skilled,1,none,yes,good
+'no checking',18,'existing paid',radio/tv,4594,'<100','<1',3,'male single',none,2,car,32,none,own,1,skilled,1,yes,yes,good
+'<0',36,'existing paid',furniture/equipment,3620,'<100','1<=X<4',1,'male single',guarantor,2,'life insurance',37,none,own,1,skilled,2,none,yes,good
+'<0',15,'existing paid','new car',1721,'<100','<1',2,'male single',none,3,'real estate',36,none,own,1,skilled,1,none,yes,good
+'0<=X<200',12,'existing paid',furniture/equipment,3017,'<100','<1',3,'female div/dep/mar',none,1,'real estate',34,none,rent,1,'high qualif/self emp/mgmt',1,none,yes,good
+'0<=X<200',12,'existing paid',retraining,754,'no known savings','>=7',4,'male single',none,4,'life insurance',38,none,own,2,skilled,1,none,yes,good
+'no checking',18,'existing paid',business,1950,'<100','4<=X<7',4,'male single',none,1,car,34,stores,own,2,skilled,1,yes,yes,good
+'<0',24,'existing paid','used car',2924,'<100','1<=X<4',3,'male single',guarantor,4,'no known property',63,bank,own,1,skilled,2,yes,yes,good
+'<0',24,'delayed previously',radio/tv,1659,'<100','<1',4,'female div/dep/mar',none,2,car,29,none,rent,1,'unskilled resident',1,yes,yes,bad
+'no checking',48,'delayed previously',radio/tv,7238,'no known savings','>=7',3,'male single',none,3,car,32,bank,own,2,skilled,2,none,yes,good
+'no checking',33,'delayed previously',business,2764,'<100','1<=X<4',2,'female div/dep/mar',none,2,car,26,none,own,2,skilled,1,yes,yes,good
+'no checking',24,'delayed previously','used car',4679,'<100','4<=X<7',3,'male single',none,3,car,35,none,own,2,'unskilled resident',1,yes,yes,good
+'0<=X<200',24,'existing paid',radio/tv,3092,'100<=X<500','<1',3,'male mar/wid',none,2,car,22,none,rent,1,skilled,1,yes,yes,bad
+'<0',6,'existing paid',education,448,'<100','<1',4,'female div/dep/mar',none,4,'life insurance',23,none,own,1,skilled,1,none,yes,bad
+'<0',9,'existing paid','new car',654,'<100','1<=X<4',4,'male single',none,3,car,28,none,own,1,'unskilled resident',1,none,yes,bad
+'no checking',6,'existing paid',retraining,1238,'no known savings',unemployed,4,'male single',none,4,'life insurance',36,none,own,1,'high qualif/self emp/mgmt',2,yes,yes,good
+'0<=X<200',18,'critical/other existing credit',radio/tv,1245,'<100','1<=X<4',4,'male mar/wid',none,2,car,33,none,own,1,skilled,1,none,yes,bad
+'<0',18,'no credits/all paid',furniture/equipment,3114,'<100','<1',1,'female div/dep/mar',none,4,'life insurance',26,none,rent,1,skilled,1,none,yes,bad
+'no checking',39,'existing paid','used car',2569,'500<=X<1000','1<=X<4',4,'male single',none,4,car,24,none,own,1,skilled,1,none,yes,good
+'>=200',24,'existing paid',radio/tv,5152,'<100','4<=X<7',4,'male single',none,2,car,25,bank,own,1,skilled,1,none,yes,good
+'0<=X<200',12,'existing paid',business,1037,'100<=X<500','4<=X<7',3,'male single',none,4,'real estate',39,none,own,1,'unskilled resident',1,none,yes,good
+'<0',15,'critical/other existing credit',furniture/equipment,1478,'<100','>=7',4,'male single',none,4,car,44,none,own,2,skilled,2,yes,yes,good
+'0<=X<200',12,'critical/other existing credit',radio/tv,3573,'<100','1<=X<4',1,'female div/dep/mar',none,1,'real estate',23,none,own,1,'unskilled resident',1,none,yes,good
+'0<=X<200',24,'existing paid','new car',1201,'<100','<1',4,'male single',none,1,'life insurance',26,none,own,1,skilled,1,none,yes,good
+'<0',30,'existing paid',furniture/equipment,3622,'>=1000','>=7',4,'female div/dep/mar',none,4,'life insurance',57,none,rent,2,skilled,1,yes,yes,good
+'no checking',15,'delayed previously',furniture/equipment,960,'>=1000','4<=X<7',3,'female div/dep/mar',none,2,'life insurance',30,none,own,2,skilled,1,none,yes,good
+'no checking',12,'critical/other existing credit','new car',1163,'500<=X<1000','1<=X<4',4,'male single',none,4,'real estate',44,none,own,1,skilled,1,yes,yes,good
+'0<=X<200',6,'delayed previously','new car',1209,'<100',unemployed,4,'male single',none,4,'life insurance',47,none,own,1,'high qualif/self emp/mgmt',1,yes,yes,bad
+'no checking',12,'existing paid',radio/tv,3077,'<100','1<=X<4',2,'male single',none,4,car,52,none,own,1,skilled,1,yes,yes,good
+'no checking',24,'existing paid','new car',3757,'<100','>=7',4,'female div/dep/mar','co applicant',4,'no known property',62,none,'for free',1,skilled,1,yes,yes,good
+'no checking',10,'existing paid','new car',1418,'100<=X<500','1<=X<4',3,'male single',none,2,'real estate',35,none,rent,1,'unskilled resident',1,none,no,good
+'no checking',6,'existing paid','new car',3518,'<100','1<=X<4',2,'male single',guarantor,3,'life insurance',26,none,rent,1,skilled,1,none,yes,good
+'no checking',12,'critical/other existing credit',radio/tv,1934,'<100','>=7',2,'male single',none,2,'no known property',26,none,own,2,skilled,1,none,yes,good
+'0<=X<200',27,'no credits/all paid',business,8318,'<100','>=7',2,'female div/dep/mar',none,4,'no known property',42,none,'for free',2,'high qualif/self emp/mgmt',1,yes,yes,bad
+'no checking',6,'critical/other existing credit',radio/tv,1237,'100<=X<500','1<=X<4',1,'female div/dep/mar',none,1,'life insurance',27,none,own,2,skilled,1,none,yes,good
+'0<=X<200',6,'existing paid',radio/tv,368,'no known savings','>=7',4,'male single',none,4,'life insurance',38,none,own,1,skilled,1,none,yes,good
+'<0',12,'critical/other existing credit','new car',2122,'<100','1<=X<4',3,'male single',none,2,'real estate',39,none,rent,2,'unskilled resident',2,none,no,good
+'<0',24,'existing paid',furniture/equipment,2996,'no known savings','1<=X<4',2,'male mar/wid',none,4,car,20,none,own,1,skilled,1,none,yes,bad
+'0<=X<200',36,'existing paid',furniture/equipment,9034,'100<=X<500','<1',4,'male single','co applicant',1,'no known property',29,none,rent,1,'high qualif/self emp/mgmt',1,yes,yes,bad
+'no checking',24,'critical/other existing credit',furniture/equipment,1585,'<100','4<=X<7',4,'male single',none,3,'life insurance',40,none,own,2,skilled,1,none,yes,good
+'0<=X<200',18,'existing paid',radio/tv,1301,'<100','>=7',4,'male mar/wid',guarantor,2,'real estate',32,none,own,1,'unskilled resident',1,none,yes,good
+'>=200',6,'critical/other existing credit','new car',1323,'100<=X<500','>=7',2,'male div/sep',none,4,car,28,none,own,2,skilled,2,yes,yes,good
+'<0',24,'existing paid','new car',3123,'<100','<1',4,'female div/dep/mar',none,1,'life insurance',27,none,own,1,skilled,1,none,yes,bad
+'<0',36,'existing paid','used car',5493,'<100','>=7',2,'male single',none,4,'no known property',42,none,'for free',1,skilled,2,none,yes,good
+'>=200',9,'existing paid',radio/tv,1126,'100<=X<500','>=7',2,'male div/sep',none,4,'real estate',49,none,own,1,skilled,1,none,yes,good
+'0<=X<200',24,'critical/other existing credit',radio/tv,1216,'100<=X<500','<1',4,'male single',none,4,'no known property',38,bank,own,2,skilled,2,none,yes,bad
+'<0',24,'existing paid','new car',1207,'<100','<1',4,'female div/dep/mar',none,4,'life insurance',24,none,rent,1,skilled,1,none,yes,bad
+'no checking',10,'existing paid','new car',1309,'no known savings','1<=X<4',4,'male single',guarantor,4,'life insurance',27,none,own,1,'unskilled resident',1,none,yes,bad
+'>=200',15,'critical/other existing credit','used car',2360,'500<=X<1000','1<=X<4',2,'male single',none,2,car,36,none,own,1,skilled,1,yes,yes,good
+'0<=X<200',15,'all paid','new car',6850,'100<=X<500',unemployed,1,'male single',none,2,'life insurance',34,none,own,1,'high qualif/self emp/mgmt',2,yes,yes,bad
+'no checking',24,'existing paid',radio/tv,1413,'<100','1<=X<4',4,'male mar/wid',none,2,'life insurance',28,none,own,1,skilled,1,none,yes,good
+'no checking',39,'existing paid','used car',8588,'100<=X<500','>=7',4,'male single',none,2,car,45,none,own,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'<0',12,'existing paid','new car',759,'<100','4<=X<7',4,'male single',none,2,'real estate',26,none,own,1,skilled,1,none,yes,bad
+'no checking',36,'existing paid','used car',4686,'<100','1<=X<4',2,'male single',none,2,'no known property',32,none,'for free',1,'high qualif/self emp/mgmt',1,yes,yes,good
+'>=200',15,'existing paid',business,2687,'<100','4<=X<7',2,'male single',none,4,'life insurance',26,none,rent,1,skilled,1,yes,yes,good
+'0<=X<200',12,'delayed previously',radio/tv,585,'<100','1<=X<4',4,'male mar/wid','co applicant',4,'real estate',20,none,rent,2,skilled,1,none,yes,good
+'no checking',24,'existing paid','new car',2255,'no known savings','<1',4,'male single',none,1,'life insurance',54,none,own,1,skilled,1,none,yes,good
+'<0',6,'critical/other existing credit','new car',609,'<100','4<=X<7',4,'female div/dep/mar',none,3,'life insurance',37,none,own,2,skilled,1,none,no,good
+'<0',6,'critical/other existing credit','new car',1361,'<100','<1',2,'male single',none,4,'real estate',40,none,own,1,'unskilled resident',2,none,no,good
+'no checking',36,'critical/other existing credit',furniture/equipment,7127,'<100','<1',2,'female div/dep/mar',none,4,'life insurance',23,none,rent,2,skilled,1,yes,yes,bad
+'<0',6,'existing paid','new car',1203,'100<=X<500','>=7',3,'male single',none,2,'life insurance',43,none,own,1,skilled,1,yes,yes,good
+'no checking',6,'critical/other existing credit',radio/tv,700,'no known savings','>=7',4,'male single',none,4,'no known property',36,none,'for free',2,skilled,1,none,yes,good
+'no checking',24,'critical/other existing credit',repairs,5507,'<100','>=7',3,'male single',none,4,'no known property',44,none,'for free',2,skilled,1,none,yes,good
+'<0',18,'existing paid',radio/tv,3190,'<100','1<=X<4',2,'female div/dep/mar',none,2,'real estate',24,none,own,1,skilled,1,none,yes,bad
+'<0',48,'no credits/all paid',furniture/equipment,7119,'<100','1<=X<4',3,'male single',none,4,'no known property',53,none,'for free',2,skilled,2,none,yes,bad
+'no checking',24,'existing paid','used car',3488,'100<=X<500','4<=X<7',3,'female div/dep/mar',none,4,car,23,none,own,1,skilled,1,none,yes,good
+'0<=X<200',18,'existing paid',radio/tv,1113,'<100','1<=X<4',4,'female div/dep/mar',guarantor,4,'real estate',26,none,own,1,'unskilled resident',2,none,yes,good
+'0<=X<200',26,'existing paid','used car',7966,'<100','<1',2,'male single',none,3,car,30,none,own,2,skilled,1,none,yes,good
+'no checking',15,'critical/other existing credit',education,1532,'100<=X<500','1<=X<4',4,'female div/dep/mar',none,3,car,31,none,own,1,skilled,1,none,yes,good
+'no checking',4,'critical/other existing credit',radio/tv,1503,'<100','4<=X<7',2,'male single',none,1,'real estate',42,none,own,2,'unskilled resident',2,none,yes,good
+'<0',36,'existing paid',radio/tv,2302,'<100','1<=X<4',4,'male div/sep',none,4,car,31,none,rent,1,skilled,1,none,yes,bad
+'<0',6,'existing paid','new car',662,'<100','<1',3,'male single',none,4,'real estate',41,none,own,1,'unskilled resident',2,yes,yes,good
+'0<=X<200',36,'existing paid',education,2273,'<100','4<=X<7',3,'male single',none,1,car,32,none,own,2,skilled,2,none,yes,good
+'0<=X<200',15,'existing paid','new car',2631,'100<=X<500','1<=X<4',2,'female div/dep/mar',none,4,car,28,none,rent,2,skilled,1,yes,yes,bad
+'no checking',12,'delayed previously','used car',1503,'<100','1<=X<4',4,'male mar/wid',none,4,'real estate',41,none,rent,1,skilled,1,none,yes,good
+'no checking',24,'existing paid',radio/tv,1311,'100<=X<500','4<=X<7',4,'male mar/wid',none,3,'life insurance',26,none,own,1,skilled,1,yes,yes,good
+'no checking',24,'existing paid',radio/tv,3105,'no known savings','<1',4,'male single',none,2,car,25,none,own,2,skilled,1,none,yes,good
+'>=200',21,'critical/other existing credit',education,2319,'<100','<1',2,'male div/sep',none,1,car,33,none,rent,1,skilled,1,none,yes,bad
+'<0',6,'existing paid','new car',1374,'no known savings',unemployed,4,'female div/dep/mar',none,3,'life insurance',75,none,own,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'0<=X<200',18,'critical/other existing credit',furniture/equipment,3612,'<100','>=7',3,'female div/dep/mar',none,4,'life insurance',37,none,own,1,skilled,1,yes,yes,good
+'<0',48,'existing paid','new car',7763,'<100','>=7',4,'male single',none,4,'no known property',42,bank,'for free',1,'high qualif/self emp/mgmt',1,none,yes,bad
+'>=200',18,'existing paid',furniture/equipment,3049,'<100','<1',1,'female div/dep/mar',none,1,'life insurance',45,stores,own,1,'unskilled resident',1,none,yes,good
+'0<=X<200',12,'existing paid',radio/tv,1534,'<100','<1',1,'male mar/wid',none,1,'real estate',23,none,rent,1,skilled,1,none,yes,bad
+'no checking',24,'delayed previously','new car',2032,'<100','>=7',4,'male single',none,4,'no known property',60,none,'for free',2,skilled,1,yes,yes,good
+'<0',30,'existing paid',furniture/equipment,6350,'no known savings','>=7',4,'male single',none,4,'life insurance',31,none,own,1,skilled,1,none,yes,bad
+'>=200',18,'existing paid',furniture/equipment,2864,'<100','1<=X<4',2,'male single',none,1,'real estate',34,none,own,1,'unskilled resident',2,none,yes,bad
+'no checking',12,'critical/other existing credit','new car',1255,'<100','>=7',4,'male single',none,4,'real estate',61,none,own,2,'unskilled resident',1,none,yes,good
+'<0',24,'delayed previously','new car',1333,'<100',unemployed,4,'male single',none,2,'real estate',43,none,'for free',2,skilled,2,none,yes,bad
+'no checking',24,'critical/other existing credit','new car',2022,'<100','1<=X<4',4,'female div/dep/mar',none,4,car,37,none,own,1,skilled,1,yes,yes,good
+'no checking',24,'existing paid',radio/tv,1552,'<100','4<=X<7',3,'male single',none,1,car,32,bank,own,1,skilled,2,none,yes,good
+'<0',12,'all paid',radio/tv,626,'<100','1<=X<4',4,'female div/dep/mar',none,4,'real estate',24,bank,own,1,'unskilled resident',1,none,yes,bad
+'no checking',48,'critical/other existing credit','used car',8858,'no known savings','4<=X<7',2,'male single',none,1,'no known property',35,none,'for free',2,skilled,1,yes,yes,good
+'no checking',12,'critical/other existing credit',repairs,996,'no known savings','4<=X<7',4,'female div/dep/mar',none,4,'real estate',23,none,own,2,skilled,1,none,yes,good
+'no checking',6,'all paid',radio/tv,1750,'500<=X<1000','>=7',2,'male single',none,4,'life insurance',45,bank,own,1,'unskilled resident',2,none,yes,good
+'<0',48,'existing paid',radio/tv,6999,'<100','4<=X<7',1,'male mar/wid',guarantor,1,'real estate',34,none,own,2,skilled,1,yes,yes,bad
+'0<=X<200',12,'critical/other existing credit','new car',1995,'100<=X<500','<1',4,'male single',none,1,car,27,none,own,1,skilled,1,none,yes,good
+'0<=X<200',9,'existing paid',education,1199,'<100','4<=X<7',4,'female div/dep/mar',none,4,'life insurance',67,none,own,2,'high qualif/self emp/mgmt',1,yes,yes,good
+'0<=X<200',12,'existing paid',radio/tv,1331,'<100','<1',2,'male single',none,1,car,22,stores,own,1,skilled,1,none,yes,bad
+'0<=X<200',18,'no credits/all paid','new car',2278,'100<=X<500','<1',3,'female div/dep/mar',none,3,car,28,none,own,2,skilled,1,none,yes,bad
+'no checking',21,'no credits/all paid','new car',5003,'no known savings','1<=X<4',1,'female div/dep/mar',none,4,'life insurance',29,bank,own,2,skilled,1,yes,yes,bad
+'<0',24,'all paid',furniture/equipment,3552,'<100','4<=X<7',3,'male single',none,4,car,27,bank,own,1,skilled,1,none,yes,bad
+'0<=X<200',18,'critical/other existing credit',furniture/equipment,1928,'<100','<1',2,'male single',none,2,'real estate',31,none,own,2,'unskilled resident',1,none,yes,bad
+'<0',24,'existing paid','used car',2964,'no known savings','>=7',4,'male single',none,4,'no known property',49,bank,'for free',1,skilled,2,yes,yes,good
+'<0',24,'all paid',radio/tv,1546,'<100','4<=X<7',4,'male single',guarantor,4,car,24,bank,rent,1,'unskilled resident',1,none,yes,bad
+'>=200',6,'delayed previously',radio/tv,683,'<100','<1',2,'female div/dep/mar',none,1,'life insurance',29,bank,own,1,skilled,1,none,yes,good
+'0<=X<200',36,'existing paid','new car',12389,'no known savings','1<=X<4',1,'male single',none,4,'no known property',37,none,'for free',1,skilled,1,yes,yes,bad
+'0<=X<200',24,'delayed previously',business,4712,'no known savings','1<=X<4',4,'male single',none,2,'life insurance',37,bank,own,2,'high qualif/self emp/mgmt',1,yes,yes,good
+'0<=X<200',24,'delayed previously',radio/tv,1553,'100<=X<500','4<=X<7',3,'female div/dep/mar',none,2,'life insurance',23,none,rent,2,skilled,1,yes,yes,good
+'<0',12,'existing paid','new car',1372,'<100','4<=X<7',2,'male div/sep',none,3,car,36,none,own,1,skilled,1,none,yes,bad
+'no checking',24,'critical/other existing credit',radio/tv,2578,'>=1000','>=7',2,'male single',none,2,car,34,none,own,1,skilled,1,none,yes,good
+'0<=X<200',48,'existing paid',radio/tv,3979,'no known savings','4<=X<7',4,'male single',none,1,car,41,none,own,2,skilled,2,yes,yes,good
+'<0',48,'existing paid',radio/tv,6758,'<100','1<=X<4',3,'female div/dep/mar',none,2,car,31,none,own,1,skilled,1,yes,yes,bad
+'<0',24,'existing paid',furniture/equipment,3234,'<100','<1',4,'female div/dep/mar',none,4,'real estate',23,none,rent,1,'unskilled resident',1,yes,yes,bad
+'no checking',30,'critical/other existing credit',radio/tv,5954,'<100','4<=X<7',3,'male single','co applicant',2,car,38,none,own,1,skilled,1,none,yes,good
+'no checking',24,'existing paid','used car',5433,'no known savings',unemployed,2,'female div/dep/mar',none,4,'life insurance',26,none,rent,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'<0',15,'existing paid',business,806,'<100','1<=X<4',4,'female div/dep/mar',none,4,'life insurance',22,none,own,1,'unskilled resident',1,none,yes,good
+'0<=X<200',9,'existing paid',radio/tv,1082,'<100','>=7',4,'male single',none,4,car,27,none,own,2,'unskilled resident',1,none,yes,good
+'no checking',15,'critical/other existing credit',furniture/equipment,2788,'<100','4<=X<7',2,'female div/dep/mar','co applicant',3,car,24,bank,own,2,skilled,1,none,yes,good
+'0<=X<200',12,'existing paid',radio/tv,2930,'<100','4<=X<7',2,'female div/dep/mar',none,1,'real estate',27,none,own,1,skilled,1,none,yes,good
+'no checking',24,'critical/other existing credit',education,1927,'no known savings','1<=X<4',3,'female div/dep/mar',none,2,car,33,none,own,2,skilled,1,yes,yes,good
+'0<=X<200',36,'critical/other existing credit','new car',2820,'<100','<1',4,'male div/sep',none,4,car,27,none,own,2,skilled,1,none,yes,bad
+'no checking',24,'existing paid',retraining,937,'<100','<1',4,'male mar/wid',none,3,car,27,none,own,2,'unskilled resident',1,none,yes,good
+'0<=X<200',18,'critical/other existing credit','new car',1056,'<100','>=7',3,'male single',guarantor,3,'real estate',30,bank,own,2,skilled,1,none,yes,bad
+'0<=X<200',12,'critical/other existing credit','new car',3124,'<100','<1',1,'male single',none,3,'real estate',49,bank,own,2,'unskilled resident',2,none,yes,good
+'no checking',9,'existing paid',furniture/equipment,1388,'<100','1<=X<4',4,'female div/dep/mar',none,2,'real estate',26,none,rent,1,skilled,1,none,yes,good
+'0<=X<200',36,'existing paid',repairs,2384,'<100','<1',4,'male single',none,1,'no known property',33,none,rent,1,'unskilled resident',1,none,yes,bad
+'no checking',12,'existing paid','new car',2133,'no known savings','>=7',4,'female div/dep/mar',none,4,'no known property',52,none,'for free',1,'high qualif/self emp/mgmt',1,yes,yes,good
+'<0',18,'existing paid',furniture/equipment,2039,'<100','1<=X<4',1,'female div/dep/mar',none,4,'real estate',20,bank,rent,1,skilled,1,none,yes,bad
+'<0',9,'critical/other existing credit','new car',2799,'<100','1<=X<4',2,'male single',none,2,'real estate',36,none,rent,2,skilled,2,none,yes,good
+'<0',12,'existing paid',furniture/equipment,1289,'<100','1<=X<4',4,'male single',guarantor,1,'life insurance',21,none,own,1,'unskilled resident',1,none,yes,good
+'<0',18,'existing paid','domestic appliance',1217,'<100','1<=X<4',4,'male mar/wid',none,3,'real estate',47,none,own,1,'unskilled resident',1,yes,yes,bad
+'<0',12,'critical/other existing credit',furniture/equipment,2246,'<100','>=7',3,'male single',none,3,'life insurance',60,none,own,2,skilled,1,none,yes,bad
+'<0',12,'critical/other existing credit',radio/tv,385,'<100','4<=X<7',4,'female div/dep/mar',none,3,'real estate',58,none,own,4,'unskilled resident',1,yes,yes,good
+'0<=X<200',24,'delayed previously','new car',1965,'no known savings','1<=X<4',4,'female div/dep/mar',none,4,car,42,none,rent,2,skilled,1,yes,yes,good
+'no checking',21,'existing paid',business,1572,'>=1000','>=7',4,'female div/dep/mar',none,4,'real estate',36,bank,own,1,'unskilled resident',1,none,yes,good
+'0<=X<200',24,'existing paid','new car',2718,'<100','1<=X<4',3,'female div/dep/mar',none,4,'life insurance',20,none,rent,1,'unskilled resident',1,yes,yes,bad
+'<0',24,'all paid',other,1358,'no known savings','>=7',4,'male single',none,3,car,40,stores,own,1,'high qualif/self emp/mgmt',1,yes,yes,bad
+'0<=X<200',6,'all paid','new car',931,'100<=X<500','<1',1,'female div/dep/mar',none,1,'life insurance',32,stores,own,1,'unskilled resident',1,none,yes,bad
+'<0',24,'existing paid','new car',1442,'<100','4<=X<7',4,'female div/dep/mar',none,4,car,23,none,rent,2,skilled,1,none,yes,bad
+'0<=X<200',24,'no credits/all paid',business,4241,'<100','1<=X<4',1,'male single',none,4,'real estate',36,none,own,3,'unskilled resident',1,yes,yes,bad
+'no checking',18,'critical/other existing credit','new car',2775,'<100','4<=X<7',2,'male single',none,2,'life insurance',31,bank,own,2,skilled,1,none,yes,bad
+'no checking',24,'delayed previously',business,3863,'<100','1<=X<4',1,'male single',none,2,'no known property',32,none,'for free',1,skilled,1,none,yes,good
+'0<=X<200',7,'existing paid',radio/tv,2329,'<100','<1',1,'female div/dep/mar',guarantor,1,'real estate',45,none,own,1,skilled,1,none,yes,good
+'0<=X<200',9,'existing paid',furniture/equipment,918,'<100','1<=X<4',4,'female div/dep/mar',none,1,'life insurance',30,none,own,1,skilled,1,none,yes,bad
+'0<=X<200',24,'all paid',education,1837,'<100','4<=X<7',4,'female div/dep/mar',none,4,'no known property',34,bank,'for free',1,'unskilled resident',1,none,yes,bad
+'no checking',36,'existing paid',furniture/equipment,3349,'<100','1<=X<4',4,'female div/dep/mar',none,2,car,28,none,own,1,'high qualif/self emp/mgmt',1,yes,yes,bad
+'>=200',10,'existing paid',furniture/equipment,1275,'<100','<1',4,'female div/dep/mar',none,2,'life insurance',23,none,own,1,skilled,1,none,yes,good
+'<0',24,'all paid',furniture/equipment,2828,'500<=X<1000','1<=X<4',4,'male single',none,4,'real estate',22,stores,own,1,skilled,1,yes,yes,good
+'no checking',24,'critical/other existing credit',business,4526,'<100','1<=X<4',3,'male single',none,2,'real estate',74,none,own,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'0<=X<200',36,'existing paid',radio/tv,2671,'100<=X<500','1<=X<4',4,'female div/dep/mar','co applicant',4,'no known property',50,none,'for free',1,skilled,1,none,yes,bad
+'no checking',18,'existing paid',radio/tv,2051,'<100','<1',4,'male single',none,1,'real estate',33,none,own,1,skilled,1,none,yes,good
+'no checking',15,'existing paid','used car',1300,'no known savings','>=7',4,'male single',none,4,'no known property',45,bank,'for free',1,skilled,2,none,yes,good
+'<0',12,'existing paid','domestic appliance',741,'100<=X<500',unemployed,4,'female div/dep/mar',none,3,'life insurance',22,none,own,1,skilled,1,none,yes,bad
+'>=200',10,'existing paid','new car',1240,'100<=X<500','>=7',1,'female div/dep/mar',none,4,'no known property',48,none,'for free',1,'unskilled resident',2,none,yes,bad
+'<0',21,'existing paid',radio/tv,3357,'>=1000','<1',4,'female div/dep/mar',none,2,car,29,bank,own,1,skilled,1,none,yes,good
+'<0',24,'all paid','used car',3632,'<100','1<=X<4',1,'female div/dep/mar',guarantor,4,car,22,bank,rent,1,skilled,1,none,no,good
+'no checking',18,'delayed previously',furniture/equipment,1808,'<100','4<=X<7',4,'female div/dep/mar',none,1,'real estate',22,none,own,1,skilled,1,none,yes,bad
+'0<=X<200',48,'no credits/all paid',business,12204,'no known savings','1<=X<4',2,'male single',none,2,car,48,bank,own,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'0<=X<200',60,'delayed previously',radio/tv,9157,'no known savings','1<=X<4',2,'male single',none,2,'no known property',27,none,'for free',1,'high qualif/self emp/mgmt',1,none,yes,good
+'<0',6,'critical/other existing credit','new car',3676,'<100','1<=X<4',1,'male single',none,3,'real estate',37,none,rent,3,skilled,2,none,yes,good
+'0<=X<200',30,'existing paid',furniture/equipment,3441,'100<=X<500','1<=X<4',2,'female div/dep/mar','co applicant',4,car,21,none,rent,1,skilled,1,none,yes,bad
+'no checking',12,'existing paid','new car',640,'<100','1<=X<4',4,'male div/sep',none,2,'real estate',49,none,own,1,'unskilled resident',1,none,yes,good
+'0<=X<200',21,'critical/other existing credit',business,3652,'<100','4<=X<7',2,'male single',none,3,'life insurance',27,none,own,2,skilled,1,none,yes,good
+'no checking',18,'critical/other existing credit','new car',1530,'<100','1<=X<4',3,'male single',none,2,'life insurance',32,bank,own,2,skilled,1,none,yes,bad
+'no checking',48,'existing paid',business,3914,'no known savings','1<=X<4',4,'male div/sep',none,2,'real estate',38,bank,own,1,skilled,1,none,yes,bad
+'<0',12,'existing paid',furniture/equipment,1858,'<100','<1',4,'female div/dep/mar',none,1,car,22,none,rent,1,skilled,1,none,yes,good
+'<0',18,'existing paid',radio/tv,2600,'<100','1<=X<4',4,'male single',none,4,'no known property',65,none,'for free',2,skilled,1,none,yes,bad
+'no checking',15,'existing paid',radio/tv,1979,'no known savings','>=7',4,'male single',none,2,car,35,none,own,1,skilled,1,none,yes,good
+'>=200',6,'existing paid',furniture/equipment,2116,'<100','1<=X<4',2,'male single',none,2,'real estate',41,none,own,1,skilled,1,yes,yes,good
+'0<=X<200',9,'all paid','new car',1437,'100<=X<500','4<=X<7',2,'male single',none,3,'no known property',29,none,own,1,skilled,1,none,yes,bad
+'no checking',42,'critical/other existing credit',furniture/equipment,4042,'500<=X<1000','1<=X<4',4,'male single',none,4,'real estate',36,none,own,2,skilled,1,yes,yes,good
+'no checking',9,'existing paid',education,3832,'no known savings','>=7',1,'male single',none,4,'real estate',64,none,own,1,'unskilled resident',1,none,yes,good
+'<0',24,'existing paid',radio/tv,3660,'<100','1<=X<4',2,'female div/dep/mar',none,4,car,28,none,own,1,skilled,1,none,yes,good
+'<0',18,'all paid',furniture/equipment,1553,'<100','1<=X<4',4,'male single',none,3,car,44,bank,own,1,skilled,1,none,yes,bad
+'0<=X<200',15,'existing paid',radio/tv,1444,'no known savings','<1',4,'male single',none,1,'life insurance',23,none,own,1,skilled,1,none,yes,good
+'no checking',9,'existing paid',furniture/equipment,1980,'<100','<1',2,'female div/dep/mar','co applicant',2,car,19,none,rent,2,skilled,1,none,yes,bad
+'0<=X<200',24,'existing paid','new car',1355,'<100','<1',3,'female div/dep/mar',none,4,car,25,none,own,1,'unskilled resident',1,yes,yes,bad
+'no checking',12,'existing paid',education,1393,'<100','>=7',4,'male single',none,4,'life insurance',47,bank,own,3,skilled,2,yes,yes,good
+'no checking',24,'existing paid',radio/tv,1376,'500<=X<1000','4<=X<7',4,'female div/dep/mar',none,1,car,28,none,own,1,skilled,1,none,yes,good
+'no checking',60,'delayed previously',radio/tv,15653,'<100','4<=X<7',2,'male single',none,4,car,21,none,own,2,skilled,1,yes,yes,good
+'no checking',12,'existing paid',radio/tv,1493,'<100','<1',4,'female div/dep/mar',none,3,car,34,none,own,1,skilled,2,none,yes,good
+'<0',42,'delayed previously',radio/tv,4370,'<100','4<=X<7',3,'male single',none,2,'life insurance',26,bank,own,2,skilled,2,yes,yes,bad
+'<0',18,'existing paid',education,750,'<100',unemployed,4,'female div/dep/mar',none,1,'real estate',27,none,own,1,'unemp/unskilled non res',1,none,yes,bad
+'0<=X<200',15,'existing paid',repairs,1308,'<100','>=7',4,'male single',none,4,car,38,none,own,2,'unskilled resident',1,none,yes,good
+'no checking',15,'existing paid',education,4623,'100<=X<500','1<=X<4',3,'male single',none,2,'life insurance',40,none,own,1,'high qualif/self emp/mgmt',1,yes,yes,bad
+'no checking',24,'critical/other existing credit',radio/tv,1851,'<100','4<=X<7',4,'male mar/wid',guarantor,2,car,33,none,own,2,skilled,1,yes,yes,good
+'<0',18,'critical/other existing credit',radio/tv,1880,'<100','4<=X<7',4,'male mar/wid',none,1,'life insurance',32,none,own,2,'high qualif/self emp/mgmt',1,yes,yes,good
+'no checking',36,'delayed previously',business,7980,'no known savings','<1',4,'male single',none,4,car,27,none,rent,2,skilled,1,yes,yes,bad
+'<0',30,'no credits/all paid',furniture/equipment,4583,'<100','1<=X<4',2,'male div/sep',guarantor,2,'real estate',32,none,own,2,skilled,1,none,yes,good
+'no checking',12,'existing paid','new car',1386,'500<=X<1000','1<=X<4',2,'female div/dep/mar',none,2,'life insurance',26,none,own,1,skilled,1,none,yes,bad
+'>=200',24,'existing paid','new car',947,'<100','4<=X<7',4,'male single',none,3,'no known property',38,bank,'for free',1,skilled,2,none,yes,bad
+'<0',12,'existing paid',education,684,'<100','1<=X<4',4,'male single',none,4,car,40,none,rent,1,'unskilled resident',2,none,yes,bad
+'<0',48,'existing paid',education,7476,'<100','4<=X<7',4,'male single',none,1,'no known property',50,none,'for free',1,'high qualif/self emp/mgmt',1,yes,yes,good
+'0<=X<200',12,'existing paid',furniture/equipment,1922,'<100','1<=X<4',4,'male single',none,2,'life insurance',37,none,own,1,'unskilled resident',1,none,yes,bad
+'<0',24,'existing paid','new car',2303,'<100','>=7',4,'male single','co applicant',1,'real estate',45,none,own,1,skilled,1,none,yes,bad
+'0<=X<200',36,'delayed previously','new car',8086,'100<=X<500','>=7',2,'male single',none,4,car,42,none,own,4,'high qualif/self emp/mgmt',1,yes,yes,bad
+'no checking',24,'critical/other existing credit','used car',2346,'<100','4<=X<7',4,'male single',none,3,car,35,none,own,2,skilled,1,yes,yes,good
+'<0',14,'existing paid','new car',3973,'<100',unemployed,1,'male single',none,4,'no known property',22,none,'for free',1,skilled,1,none,yes,good
+'0<=X<200',12,'existing paid','new car',888,'<100','>=7',4,'male single',none,4,car,41,bank,own,1,'unskilled resident',2,none,yes,bad
+'no checking',48,'existing paid',radio/tv,10222,'no known savings','4<=X<7',4,'male single',none,3,car,37,stores,own,1,skilled,1,yes,yes,good
+'0<=X<200',30,'no credits/all paid',business,4221,'<100','1<=X<4',2,'female div/dep/mar',none,1,car,28,none,own,2,skilled,1,none,yes,good
+'0<=X<200',18,'critical/other existing credit',furniture/equipment,6361,'<100','>=7',2,'male single',none,1,'no known property',41,none,own,1,skilled,1,yes,yes,good
+'>=200',12,'existing paid',radio/tv,1297,'<100','1<=X<4',3,'male mar/wid',none,4,'real estate',23,none,rent,1,skilled,1,none,yes,good
+'<0',12,'existing paid','new car',900,'no known savings','1<=X<4',4,'male mar/wid',none,2,car,23,none,own,1,skilled,1,none,yes,bad
+'no checking',21,'existing paid',furniture/equipment,2241,'<100','>=7',4,'male single',none,2,'real estate',50,none,own,2,skilled,1,none,yes,good
+'0<=X<200',6,'delayed previously',furniture/equipment,1050,'<100',unemployed,4,'male single',none,1,'life insurance',35,stores,own,2,'high qualif/self emp/mgmt',1,yes,yes,good
+'>=200',6,'critical/other existing credit',education,1047,'<100','1<=X<4',2,'female div/dep/mar',none,4,'life insurance',50,none,own,1,'unskilled resident',1,none,yes,good
+'no checking',24,'critical/other existing credit',other,6314,'<100',unemployed,4,'male single','co applicant',2,'no known property',27,bank,own,2,'high qualif/self emp/mgmt',1,yes,yes,good
+'0<=X<200',30,'all paid',furniture/equipment,3496,'>=1000','1<=X<4',4,'male single',none,2,car,34,stores,own,1,skilled,2,yes,yes,good
+'no checking',48,'all paid',business,3609,'<100','1<=X<4',1,'female div/dep/mar',none,1,'real estate',27,stores,own,1,skilled,1,none,yes,good
+'<0',12,'critical/other existing credit','new car',4843,'<100','>=7',3,'male single','co applicant',4,'life insurance',43,none,rent,2,skilled,1,yes,yes,bad
+'>=200',30,'critical/other existing credit',radio/tv,3017,'<100','>=7',4,'male single',none,4,'life insurance',47,none,own,1,skilled,1,none,yes,good
+'no checking',24,'critical/other existing credit',business,4139,'100<=X<500','1<=X<4',3,'male single',none,3,'life insurance',27,none,own,2,'unskilled resident',1,yes,yes,good
+'no checking',36,'existing paid',business,5742,'100<=X<500','4<=X<7',2,'male single',none,2,car,31,none,own,2,skilled,1,yes,yes,good
+'no checking',60,'existing paid','new car',10366,'<100','>=7',2,'male single',none,4,'life insurance',42,none,own,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'no checking',6,'critical/other existing credit','new car',2080,'500<=X<1000','1<=X<4',1,'male mar/wid',none,2,car,24,none,own,1,skilled,1,none,yes,good
+'no checking',21,'delayed previously',business,2580,'500<=X<1000','<1',4,'male single',none,2,'real estate',41,bank,own,1,'unskilled resident',2,none,yes,bad
+'no checking',30,'critical/other existing credit',radio/tv,4530,'<100','4<=X<7',4,'female div/dep/mar',none,4,car,26,none,rent,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'no checking',24,'critical/other existing credit',furniture/equipment,5150,'<100','>=7',4,'male single',none,4,car,33,none,own,1,skilled,1,yes,yes,good
+'0<=X<200',72,'existing paid',radio/tv,5595,'100<=X<500','1<=X<4',2,'male mar/wid',none,2,car,24,none,own,1,skilled,1,none,yes,bad
+'<0',24,'existing paid',radio/tv,2384,'<100','>=7',4,'male single',none,4,'real estate',64,bank,rent,1,'unskilled resident',1,none,yes,good
+'no checking',18,'existing paid',radio/tv,1453,'<100','<1',3,'female div/dep/mar',none,1,'real estate',26,none,own,1,skilled,1,none,yes,good
+'no checking',6,'existing paid',education,1538,'<100','<1',1,'female div/dep/mar',none,2,'no known property',56,none,own,1,skilled,1,none,yes,good
+'no checking',12,'existing paid',radio/tv,2279,'no known savings','1<=X<4',4,'male single',none,4,'no known property',37,none,'for free',1,skilled,1,yes,yes,good
+'no checking',15,'delayed previously',radio/tv,1478,'<100','1<=X<4',4,'male mar/wid',none,3,'real estate',33,bank,own,2,skilled,1,none,yes,good
+'no checking',24,'critical/other existing credit',radio/tv,5103,'<100','<1',3,'male mar/wid',none,3,'no known property',47,none,'for free',3,skilled,1,yes,yes,good
+'0<=X<200',36,'delayed previously',business,9857,'100<=X<500','4<=X<7',1,'male single',none,3,'life insurance',31,none,own,2,'unskilled resident',2,yes,yes,good
+'no checking',60,'existing paid','new car',6527,'no known savings','1<=X<4',4,'male single',none,4,'no known property',34,none,'for free',1,skilled,2,yes,yes,good
+'>=200',10,'critical/other existing credit',radio/tv,1347,'no known savings','4<=X<7',4,'male single',none,2,'life insurance',27,none,own,2,skilled,1,yes,yes,good
+'0<=X<200',36,'delayed previously','new car',2862,'100<=X<500','>=7',4,'male single',none,3,'no known property',30,none,'for free',1,skilled,1,none,yes,good
+'no checking',9,'existing paid',radio/tv,2753,'100<=X<500','>=7',3,'male single','co applicant',4,car,35,none,own,1,skilled,1,yes,yes,good
+'<0',12,'existing paid','new car',3651,'>=1000','1<=X<4',1,'male single',none,3,'life insurance',31,none,own,1,skilled,2,none,yes,good
+'<0',15,'critical/other existing credit',furniture/equipment,975,'<100','1<=X<4',2,'male div/sep',none,3,'life insurance',25,none,own,2,skilled,1,none,yes,good
+'0<=X<200',15,'existing paid',repairs,2631,'100<=X<500','1<=X<4',3,'female div/dep/mar',none,2,'real estate',25,none,own,1,'unskilled resident',1,none,yes,good
+'0<=X<200',24,'existing paid',radio/tv,2896,'100<=X<500','<1',2,'male single',none,1,car,29,none,own,1,skilled,1,none,yes,good
+'<0',6,'critical/other existing credit','new car',4716,'no known savings','<1',1,'male single',none,3,'real estate',44,none,own,2,'unskilled resident',2,none,yes,good
+'no checking',24,'existing paid',radio/tv,2284,'<100','4<=X<7',4,'male single',none,2,car,28,none,own,1,skilled,1,yes,yes,good
+'no checking',6,'existing paid','used car',1236,'500<=X<1000','1<=X<4',2,'male single',none,4,'life insurance',50,none,rent,1,skilled,1,none,yes,good
+'0<=X<200',12,'existing paid',radio/tv,1103,'<100','4<=X<7',4,'male single',guarantor,3,'real estate',29,none,own,2,skilled,1,none,no,good
+'no checking',12,'critical/other existing credit','new car',926,'<100',unemployed,1,'female div/dep/mar',none,2,'life insurance',38,none,own,1,'unemp/unskilled non res',1,none,yes,good
+'no checking',18,'critical/other existing credit',radio/tv,1800,'<100','1<=X<4',4,'male single',none,2,car,24,none,own,2,skilled,1,none,yes,good
+'>=200',15,'existing paid',education,1905,'<100','>=7',4,'male single',none,4,car,40,none,rent,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'no checking',12,'existing paid',furniture/equipment,1123,'500<=X<1000','1<=X<4',4,'female div/dep/mar',none,4,car,29,none,rent,1,'unskilled resident',1,none,yes,bad
+'<0',48,'critical/other existing credit','used car',6331,'<100','>=7',4,'male single',none,4,'no known property',46,none,'for free',2,skilled,1,yes,yes,bad
+'>=200',24,'existing paid',radio/tv,1377,'100<=X<500','>=7',4,'female div/dep/mar',none,2,'no known property',47,none,'for free',1,skilled,1,yes,yes,good
+'0<=X<200',30,'delayed previously',business,2503,'100<=X<500','>=7',4,'male single',none,2,'life insurance',41,stores,own,2,skilled,1,none,yes,good
+'0<=X<200',27,'existing paid',business,2528,'<100','<1',4,'female div/dep/mar',none,1,'life insurance',32,none,own,1,skilled,2,yes,yes,good
+'no checking',15,'existing paid','new car',5324,'500<=X<1000','>=7',1,'female div/dep/mar',none,4,'no known property',35,none,'for free',1,skilled,1,none,yes,good
+'0<=X<200',48,'existing paid','new car',6560,'100<=X<500','4<=X<7',3,'male single',none,2,'life insurance',24,none,own,1,skilled,1,none,yes,bad
+'0<=X<200',12,'no credits/all paid',furniture/equipment,2969,'<100','<1',4,'female div/dep/mar',none,3,'life insurance',25,none,rent,2,skilled,1,none,yes,bad
+'0<=X<200',9,'existing paid',radio/tv,1206,'<100','>=7',4,'female div/dep/mar',none,4,'real estate',25,none,own,1,skilled,1,none,yes,good
+'0<=X<200',9,'existing paid',radio/tv,2118,'<100','1<=X<4',2,'male single',none,2,'real estate',37,none,own,1,'unskilled resident',2,none,yes,good
+'no checking',18,'critical/other existing credit',radio/tv,629,'500<=X<1000','>=7',4,'male single',none,3,'life insurance',32,bank,own,2,'high qualif/self emp/mgmt',1,yes,yes,good
+'<0',6,'all paid',education,1198,'<100','>=7',4,'female div/dep/mar',none,4,'no known property',35,none,'for free',1,skilled,1,none,yes,bad
+'no checking',21,'existing paid','used car',2476,'no known savings','>=7',4,'male single',none,4,'real estate',46,none,own,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'<0',9,'critical/other existing credit',radio/tv,1138,'<100','1<=X<4',4,'male single',none,4,'real estate',25,none,own,2,'unskilled resident',1,none,yes,good
+'0<=X<200',60,'existing paid','new car',14027,'<100','4<=X<7',4,'male single',none,2,'no known property',27,none,own,1,'high qualif/self emp/mgmt',1,yes,yes,bad
+'no checking',30,'critical/other existing credit','used car',7596,'no known savings','>=7',1,'male single',none,4,car,63,none,own,2,skilled,1,none,yes,good
+'no checking',30,'critical/other existing credit',radio/tv,3077,'no known savings','>=7',3,'male single',none,2,car,40,none,own,2,skilled,2,yes,yes,good
+'no checking',18,'existing paid',radio/tv,1505,'<100','1<=X<4',4,'male single',none,2,'no known property',32,none,'for free',1,'high qualif/self emp/mgmt',1,yes,yes,good
+'>=200',24,'critical/other existing credit',radio/tv,3148,'no known savings','1<=X<4',3,'male single',none,2,car,31,none,own,2,skilled,1,yes,yes,good
+'0<=X<200',20,'no credits/all paid','used car',6148,'100<=X<500','>=7',3,'male mar/wid',none,4,car,31,bank,own,2,skilled,1,yes,yes,good
+'>=200',9,'no credits/all paid',radio/tv,1337,'<100','<1',4,'male single',none,2,car,34,none,own,2,'high qualif/self emp/mgmt',1,yes,yes,bad
+'0<=X<200',6,'all paid',education,433,'>=1000','<1',4,'female div/dep/mar',none,2,'life insurance',24,bank,rent,1,skilled,2,none,yes,bad
+'<0',12,'existing paid','new car',1228,'<100','1<=X<4',4,'female div/dep/mar',none,2,'real estate',24,none,own,1,'unskilled resident',1,none,yes,bad
+'0<=X<200',9,'existing paid',radio/tv,790,'500<=X<1000','1<=X<4',4,'female div/dep/mar',none,3,'real estate',66,none,own,1,'unskilled resident',1,none,yes,good
+'no checking',27,'existing paid','new car',2570,'<100','1<=X<4',3,'female div/dep/mar',none,3,'real estate',21,none,rent,1,skilled,1,none,yes,bad
+'no checking',6,'critical/other existing credit','new car',250,'>=1000','1<=X<4',2,'female div/dep/mar',none,2,'real estate',41,bank,own,2,'unskilled resident',1,none,yes,good
+'no checking',15,'critical/other existing credit',radio/tv,1316,'500<=X<1000','1<=X<4',2,'male mar/wid',none,2,'life insurance',47,none,own,2,'unskilled resident',1,none,yes,good
+'<0',18,'existing paid',radio/tv,1882,'<100','1<=X<4',4,'female div/dep/mar',none,4,car,25,bank,rent,2,skilled,1,none,yes,bad
+'0<=X<200',48,'all paid',business,6416,'<100','>=7',4,'female div/dep/mar',none,3,'no known property',59,none,rent,1,skilled,1,none,yes,bad
+'>=200',24,'critical/other existing credit',business,1275,'>=1000','1<=X<4',2,'male div/sep',none,4,'real estate',36,none,own,2,skilled,1,yes,yes,good
+'0<=X<200',24,'delayed previously',radio/tv,6403,'<100','<1',1,'male single',none,2,car,33,none,own,1,skilled,1,none,yes,good
+'<0',24,'existing paid',radio/tv,1987,'<100','1<=X<4',2,'male single',none,4,'real estate',21,none,rent,1,'unskilled resident',2,none,yes,bad
+'0<=X<200',8,'existing paid',radio/tv,760,'<100','4<=X<7',4,'female div/dep/mar',guarantor,2,'real estate',44,none,own,1,'unskilled resident',1,none,yes,good
+'no checking',24,'existing paid','used car',2603,'>=1000','1<=X<4',2,'female div/dep/mar',none,4,car,28,none,rent,1,skilled,1,yes,yes,good
+'no checking',4,'critical/other existing credit','new car',3380,'<100','4<=X<7',1,'female div/dep/mar',none,1,'real estate',37,none,own,1,skilled,2,none,yes,good
+'0<=X<200',36,'all paid','domestic appliance',3990,'no known savings','<1',3,'female div/dep/mar',none,2,'no known property',29,bank,own,1,'unemp/unskilled non res',1,none,yes,good
+'0<=X<200',24,'existing paid','used car',11560,'<100','1<=X<4',1,'female div/dep/mar',none,4,car,23,none,rent,2,'high qualif/self emp/mgmt',1,none,yes,bad
+'<0',18,'existing paid','new car',4380,'100<=X<500','1<=X<4',3,'male single',none,4,car,35,none,own,1,'unskilled resident',2,yes,yes,good
+'no checking',6,'critical/other existing credit','new car',6761,'<100','4<=X<7',1,'male single',none,3,'no known property',45,none,own,2,'high qualif/self emp/mgmt',2,yes,yes,good
+'0<=X<200',30,'no credits/all paid',business,4280,'100<=X<500','1<=X<4',4,'female div/dep/mar',none,4,car,26,none,rent,2,'unskilled resident',1,none,yes,bad
+'<0',24,'all paid','new car',2325,'100<=X<500','4<=X<7',2,'male single',none,3,car,32,bank,own,1,skilled,1,none,yes,good
+'0<=X<200',10,'all paid',radio/tv,1048,'<100','1<=X<4',4,'male single',none,4,'real estate',23,stores,own,1,'unskilled resident',1,none,yes,good
+'no checking',21,'existing paid',radio/tv,3160,'no known savings','>=7',4,'male single',none,3,'life insurance',41,none,own,1,skilled,1,yes,yes,good
+'<0',24,'all paid',furniture/equipment,2483,'500<=X<1000','1<=X<4',4,'male single',none,4,'real estate',22,stores,own,1,skilled,1,yes,yes,good
+'<0',39,'critical/other existing credit',furniture/equipment,14179,'no known savings','4<=X<7',4,'male single',none,4,'life insurance',30,none,own,2,'high qualif/self emp/mgmt',1,yes,yes,good
+'<0',13,'critical/other existing credit',business,1797,'<100','<1',3,'male single',none,1,'life insurance',28,bank,own,2,'unskilled resident',1,none,yes,good
+'<0',15,'existing paid','new car',2511,'<100',unemployed,1,'female div/dep/mar',none,4,car,23,none,rent,1,skilled,1,none,yes,good
+'<0',12,'existing paid','new car',1274,'<100','<1',3,'female div/dep/mar',none,1,'real estate',37,none,own,1,'unskilled resident',1,none,yes,bad
+'no checking',21,'existing paid','used car',5248,'no known savings','1<=X<4',1,'male single',none,3,car,26,none,own,1,skilled,1,none,yes,good
+'no checking',15,'existing paid','used car',3029,'<100','4<=X<7',2,'male single',none,2,car,33,none,own,1,skilled,1,none,yes,good
+'<0',6,'existing paid',furniture/equipment,428,'<100','>=7',2,'female div/dep/mar',none,1,'life insurance',49,bank,own,1,skilled,1,yes,yes,good
+'<0',18,'existing paid','new car',976,'<100','<1',1,'female div/dep/mar',none,2,car,23,none,own,1,'unskilled resident',1,none,yes,bad
+'0<=X<200',12,'existing paid',business,841,'100<=X<500','4<=X<7',2,'female div/dep/mar',none,4,'real estate',23,none,rent,1,'unskilled resident',1,none,yes,good
+'no checking',30,'critical/other existing credit',radio/tv,5771,'<100','4<=X<7',4,'female div/dep/mar',none,2,car,25,none,own,2,skilled,1,none,yes,good
+'no checking',12,'delayed previously',repairs,1555,'>=1000','>=7',4,'male single',none,4,'no known property',55,none,'for free',2,skilled,2,none,yes,bad
+'<0',24,'existing paid','new car',1285,'no known savings','4<=X<7',4,'female div/dep/mar',none,4,'no known property',32,none,rent,1,skilled,1,none,yes,bad
+'>=200',6,'critical/other existing credit','new car',1299,'<100','1<=X<4',1,'male single',none,1,'real estate',74,none,own,3,'unemp/unskilled non res',2,none,no,good
+'>=200',15,'critical/other existing credit',radio/tv,1271,'no known savings','1<=X<4',3,'male single',none,4,'no known property',39,none,'for free',2,skilled,1,yes,yes,bad
+'no checking',24,'existing paid','new car',1393,'<100','1<=X<4',2,'male single',guarantor,2,'real estate',31,none,own,1,skilled,1,yes,yes,good
+'<0',12,'critical/other existing credit','new car',691,'<100','>=7',4,'male single',none,3,'life insurance',35,none,own,2,skilled,1,none,yes,bad
+'no checking',15,'critical/other existing credit','new car',5045,'no known savings','>=7',1,'female div/dep/mar',none,4,car,59,none,own,1,skilled,1,yes,yes,good
+'<0',18,'critical/other existing credit',furniture/equipment,2124,'<100','1<=X<4',4,'female div/dep/mar',none,4,'real estate',24,none,rent,2,skilled,1,none,yes,bad
+'<0',12,'existing paid',radio/tv,2214,'<100','1<=X<4',4,'male single',none,3,'life insurance',24,none,own,1,'unskilled resident',1,none,yes,good
+'no checking',21,'critical/other existing credit','new car',12680,'no known savings','>=7',4,'male single',none,4,'no known property',30,none,'for free',1,'high qualif/self emp/mgmt',1,yes,yes,bad
+'no checking',24,'critical/other existing credit','new car',2463,'100<=X<500','4<=X<7',4,'male mar/wid',none,3,'life insurance',27,none,own,2,skilled,1,yes,yes,good
+'0<=X<200',12,'existing paid',radio/tv,1155,'<100','>=7',3,'male mar/wid',guarantor,3,'real estate',40,bank,own,2,'unskilled resident',1,none,yes,good
+'<0',30,'existing paid',furniture/equipment,3108,'<100','<1',2,'male div/sep',none,4,'life insurance',31,none,own,1,'unskilled resident',1,none,yes,bad
+'no checking',10,'existing paid','used car',2901,'no known savings','<1',1,'female div/dep/mar',none,4,'real estate',31,none,rent,1,skilled,1,none,yes,good
+'0<=X<200',12,'critical/other existing credit',furniture/equipment,3617,'<100','>=7',1,'male single',none,4,car,28,none,rent,3,skilled,1,yes,yes,good
+'no checking',12,'critical/other existing credit',radio/tv,1655,'<100','>=7',2,'male single',none,4,'real estate',63,none,own,2,'unskilled resident',1,yes,yes,good
+'<0',24,'existing paid','used car',2812,'no known savings','>=7',2,'female div/dep/mar',none,4,'real estate',26,none,rent,1,skilled,1,none,yes,good
+'<0',36,'critical/other existing credit',education,8065,'<100','1<=X<4',3,'female div/dep/mar',none,2,'no known property',25,none,own,2,'high qualif/self emp/mgmt',1,yes,yes,bad
+'no checking',21,'critical/other existing credit','used car',3275,'<100','>=7',1,'male single',none,4,car,36,none,own,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'no checking',24,'critical/other existing credit',radio/tv,2223,'100<=X<500','>=7',4,'male single',none,4,'life insurance',52,bank,own,2,skilled,1,none,yes,good
+'>=200',12,'critical/other existing credit','new car',1480,'500<=X<1000',unemployed,2,'male single',none,4,'no known property',66,bank,'for free',3,'unemp/unskilled non res',1,none,yes,good
+'<0',24,'existing paid','new car',1371,'no known savings','1<=X<4',4,'female div/dep/mar',none,4,'real estate',25,none,rent,1,skilled,1,none,yes,bad
+'no checking',36,'critical/other existing credit','new car',3535,'<100','4<=X<7',4,'male single',none,4,car,37,none,own,2,skilled,1,yes,yes,good
+'<0',18,'existing paid',radio/tv,3509,'<100','4<=X<7',4,'female div/dep/mar',guarantor,1,'real estate',25,none,own,1,skilled,1,none,yes,good
+'no checking',36,'critical/other existing credit','used car',5711,'>=1000','>=7',4,'male single',none,2,car,38,none,own,2,'high qualif/self emp/mgmt',1,yes,yes,good
+'0<=X<200',18,'existing paid',repairs,3872,'<100',unemployed,2,'female div/dep/mar',none,4,car,67,none,own,1,skilled,1,yes,yes,good
+'0<=X<200',39,'critical/other existing credit',radio/tv,4933,'<100','4<=X<7',2,'male single',guarantor,2,'real estate',25,none,own,2,skilled,1,none,yes,bad
+'no checking',24,'critical/other existing credit','new car',1940,'>=1000','>=7',4,'male single',none,4,'real estate',60,none,own,1,skilled,1,yes,yes,good
+'0<=X<200',12,'no credits/all paid',retraining,1410,'<100','1<=X<4',2,'male single',none,2,'real estate',31,none,own,1,'unskilled resident',1,yes,yes,good
+'0<=X<200',12,'existing paid','new car',836,'100<=X<500','<1',4,'female div/dep/mar',none,2,'life insurance',23,bank,own,1,'unskilled resident',1,none,yes,bad
+'0<=X<200',20,'existing paid','used car',6468,'no known savings',unemployed,1,'male div/sep',none,4,'real estate',60,none,own,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'0<=X<200',18,'existing paid',business,1941,'>=1000','1<=X<4',4,'male single',none,2,'life insurance',35,none,own,1,'unskilled resident',1,yes,yes,good
+'no checking',22,'existing paid',radio/tv,2675,'500<=X<1000','>=7',3,'male single',none,4,car,40,none,own,1,skilled,1,none,yes,good
+'no checking',48,'critical/other existing credit','used car',2751,'no known savings','>=7',4,'male single',none,3,car,38,none,own,2,skilled,2,yes,yes,good
+'0<=X<200',48,'delayed previously',education,6224,'<100','>=7',4,'male single',none,4,'no known property',50,none,'for free',1,skilled,1,none,yes,bad
+'<0',40,'critical/other existing credit',education,5998,'<100','1<=X<4',4,'male single',none,3,'no known property',27,bank,own,1,skilled,1,yes,yes,bad
+'0<=X<200',21,'existing paid',business,1188,'<100','>=7',2,'female div/dep/mar',none,4,'life insurance',39,none,own,1,skilled,2,none,yes,bad
+'no checking',24,'existing paid','used car',6313,'no known savings','>=7',3,'male single',none,4,car,41,none,own,1,'high qualif/self emp/mgmt',2,yes,yes,good
+'no checking',6,'critical/other existing credit',furniture/equipment,1221,'no known savings','1<=X<4',1,'male mar/wid',none,2,'life insurance',27,none,own,2,skilled,1,none,yes,good
+'>=200',24,'existing paid',furniture/equipment,2892,'<100','>=7',3,'male div/sep',none,4,'no known property',51,none,'for free',1,skilled,1,none,yes,good
+'no checking',24,'existing paid',furniture/equipment,3062,'500<=X<1000','>=7',4,'male single',none,3,'no known property',32,none,rent,1,skilled,1,yes,yes,good
+'no checking',9,'existing paid',furniture/equipment,2301,'100<=X<500','<1',2,'female div/dep/mar',none,4,'life insurance',22,none,rent,1,skilled,1,none,yes,good
+'<0',18,'existing paid','used car',7511,'no known savings','>=7',1,'male single',none,4,'life insurance',51,none,'for free',1,skilled,2,yes,yes,bad
+'no checking',12,'critical/other existing credit',furniture/equipment,1258,'<100','<1',2,'female div/dep/mar',none,4,'life insurance',22,none,rent,2,'unskilled resident',1,none,yes,good
+'no checking',24,'delayed previously','new car',717,'no known savings','>=7',4,'male mar/wid',none,4,car,54,none,own,2,skilled,1,yes,yes,good
+'0<=X<200',9,'existing paid','new car',1549,'no known savings','<1',4,'male single',none,2,'real estate',35,none,own,1,'unemp/unskilled non res',1,none,yes,good
+'no checking',24,'critical/other existing credit',education,1597,'<100','>=7',4,'male single',none,4,'no known property',54,none,'for free',2,skilled,2,none,yes,good
+'0<=X<200',18,'critical/other existing credit',radio/tv,1795,'<100','>=7',3,'female div/dep/mar',guarantor,4,'real estate',48,bank,rent,2,'unskilled resident',1,yes,yes,good
+'<0',20,'critical/other existing credit',furniture/equipment,4272,'<100','>=7',1,'female div/dep/mar',none,4,'life insurance',24,none,own,2,skilled,1,none,yes,good
+'no checking',12,'critical/other existing credit',radio/tv,976,'no known savings','>=7',4,'male single',none,4,car,35,none,own,2,skilled,1,none,yes,good
+'0<=X<200',12,'existing paid','new car',7472,'no known savings',unemployed,1,'female div/dep/mar',none,2,'real estate',24,none,rent,1,'unemp/unskilled non res',1,none,yes,good
+'<0',36,'existing paid','new car',9271,'<100','4<=X<7',2,'male single',none,1,car,24,none,own,1,skilled,1,yes,yes,bad
+'0<=X<200',6,'existing paid',radio/tv,590,'<100','<1',3,'male mar/wid',none,3,'real estate',26,none,own,1,'unskilled resident',1,none,no,good
+'no checking',12,'critical/other existing credit',radio/tv,930,'no known savings','>=7',4,'male single',none,4,'real estate',65,none,own,4,skilled,1,none,yes,good
+'0<=X<200',42,'all paid','used car',9283,'<100',unemployed,1,'male single',none,2,'no known property',55,bank,'for free',1,'high qualif/self emp/mgmt',1,yes,yes,good
+'0<=X<200',15,'no credits/all paid','new car',1778,'<100','<1',2,'female div/dep/mar',none,1,'real estate',26,none,rent,2,'unemp/unskilled non res',1,none,yes,bad
+'0<=X<200',8,'existing paid',business,907,'<100','<1',3,'male mar/wid',none,2,'real estate',26,none,own,1,skilled,1,yes,yes,good
+'0<=X<200',6,'existing paid',radio/tv,484,'<100','4<=X<7',3,'male mar/wid',guarantor,3,'real estate',28,bank,own,1,'unskilled resident',1,none,yes,good
+'<0',36,'critical/other existing credit','used car',9629,'<100','4<=X<7',4,'male single',none,4,car,24,none,own,2,skilled,1,yes,yes,bad
+'<0',48,'existing paid','domestic appliance',3051,'<100','1<=X<4',3,'male single',none,4,car,54,none,own,1,skilled,1,none,yes,bad
+'<0',48,'existing paid','new car',3931,'<100','4<=X<7',4,'male single',none,4,'no known property',46,none,'for free',1,skilled,2,none,yes,bad
+'0<=X<200',36,'delayed previously','new car',7432,'<100','1<=X<4',2,'female div/dep/mar',none,2,'life insurance',54,none,rent,1,skilled,1,none,yes,good
+'no checking',6,'existing paid','domestic appliance',1338,'500<=X<1000','1<=X<4',1,'male div/sep',none,4,'real estate',62,none,own,1,skilled,1,none,yes,good
+'no checking',6,'critical/other existing credit',radio/tv,1554,'<100','4<=X<7',1,'female div/dep/mar',none,2,car,24,none,rent,2,skilled,1,yes,yes,good
+'<0',36,'existing paid',other,15857,'<100',unemployed,2,'male div/sep','co applicant',3,car,43,none,own,1,'high qualif/self emp/mgmt',1,none,yes,good
+'<0',18,'existing paid',radio/tv,1345,'<100','1<=X<4',4,'male mar/wid',none,3,'real estate',26,bank,own,1,skilled,1,none,yes,bad
+'no checking',12,'existing paid','new car',1101,'<100','1<=X<4',3,'male mar/wid',none,2,'real estate',27,none,own,2,skilled,1,yes,yes,good
+'>=200',12,'existing paid',radio/tv,3016,'<100','1<=X<4',3,'male mar/wid',none,1,car,24,none,own,1,skilled,1,none,yes,good
+'<0',36,'existing paid',furniture/equipment,2712,'<100','>=7',2,'male single',none,2,'life insurance',41,bank,own,1,skilled,2,none,yes,bad
+'<0',8,'critical/other existing credit','new car',731,'<100','>=7',4,'male single',none,4,'real estate',47,none,own,2,'unskilled resident',1,none,yes,good
+'no checking',18,'critical/other existing credit',furniture/equipment,3780,'<100','<1',3,'male div/sep',none,2,car,35,none,own,2,'high qualif/self emp/mgmt',1,yes,yes,good
+'<0',21,'critical/other existing credit','new car',1602,'<100','>=7',4,'male mar/wid',none,3,car,30,none,own,2,skilled,1,yes,yes,good
+'<0',18,'critical/other existing credit','new car',3966,'<100','>=7',1,'female div/dep/mar',none,4,'real estate',33,bank,rent,3,skilled,1,yes,yes,bad
+'no checking',18,'no credits/all paid',business,4165,'<100','1<=X<4',2,'male single',none,2,car,36,stores,own,2,skilled,2,none,yes,bad
+'<0',36,'existing paid','used car',8335,'no known savings','>=7',3,'male single',none,4,'no known property',47,none,'for free',1,skilled,1,none,yes,bad
+'0<=X<200',48,'delayed previously',business,6681,'no known savings','1<=X<4',4,'male single',none,4,'no known property',38,none,'for free',1,skilled,2,yes,yes,good
+'no checking',24,'delayed previously',business,2375,'500<=X<1000','1<=X<4',4,'male single',none,2,car,44,none,own,2,skilled,2,yes,yes,good
+'<0',18,'existing paid','new car',1216,'<100','<1',4,'female div/dep/mar',none,3,car,23,none,rent,1,skilled,1,yes,yes,bad
+'<0',45,'no credits/all paid',business,11816,'<100','>=7',2,'male single',none,4,car,29,none,rent,2,skilled,1,none,yes,bad
+'0<=X<200',24,'existing paid',radio/tv,5084,'no known savings','>=7',2,'female div/dep/mar',none,4,car,42,none,own,1,skilled,1,yes,yes,good
+'>=200',15,'existing paid',radio/tv,2327,'<100','<1',2,'female div/dep/mar',none,3,'real estate',25,none,own,1,'unskilled resident',1,none,yes,bad
+'<0',12,'no credits/all paid','new car',1082,'<100','1<=X<4',4,'male single',none,4,car,48,bank,own,2,skilled,1,none,yes,bad
+'no checking',12,'existing paid',radio/tv,886,'no known savings','1<=X<4',4,'female div/dep/mar',none,2,car,21,none,own,1,skilled,1,none,yes,good
+'no checking',4,'existing paid',furniture/equipment,601,'<100','<1',1,'female div/dep/mar',none,3,'real estate',23,none,rent,1,'unskilled resident',2,none,yes,good
+'<0',24,'critical/other existing credit','used car',2957,'<100','>=7',4,'male single',none,4,'life insurance',63,none,own,2,skilled,1,yes,yes,good
+'no checking',24,'critical/other existing credit',radio/tv,2611,'<100','>=7',4,'male mar/wid','co applicant',3,'real estate',46,none,own,2,skilled,1,none,yes,good
+'<0',36,'existing paid',furniture/equipment,5179,'<100','4<=X<7',4,'male single',none,2,'life insurance',29,none,own,1,skilled,1,none,yes,bad
+'no checking',21,'delayed previously','used car',2993,'<100','1<=X<4',3,'male single',none,2,'real estate',28,stores,own,2,'unskilled resident',1,none,yes,good
+'no checking',18,'existing paid',repairs,1943,'<100','<1',4,'female div/dep/mar',none,4,'real estate',23,none,own,1,skilled,1,none,yes,bad
+'no checking',24,'all paid',business,1559,'<100','4<=X<7',4,'male single',none,4,car,50,bank,own,1,skilled,1,yes,yes,good
+'no checking',18,'existing paid',furniture/equipment,3422,'<100','>=7',4,'male single',none,4,'life insurance',47,bank,own,3,skilled,2,yes,yes,good
+'0<=X<200',21,'existing paid',furniture/equipment,3976,'no known savings','4<=X<7',2,'male single',none,3,car,35,none,own,1,skilled,1,yes,yes,good
+'no checking',18,'existing paid','new car',6761,'no known savings','1<=X<4',2,'male single',none,4,car,68,none,rent,2,skilled,1,none,yes,bad
+'no checking',24,'existing paid','new car',1249,'<100','<1',4,'male mar/wid',none,2,'real estate',28,none,own,1,skilled,1,none,yes,good
+'<0',9,'existing paid',radio/tv,1364,'<100','4<=X<7',3,'male single',none,4,'real estate',59,none,own,1,skilled,1,none,yes,good
+'<0',12,'existing paid',radio/tv,709,'<100','>=7',4,'male single',none,4,'real estate',57,stores,own,1,'unskilled resident',1,none,yes,bad
+'<0',20,'critical/other existing credit','new car',2235,'<100','1<=X<4',4,'male mar/wid',guarantor,2,'life insurance',33,bank,rent,2,skilled,1,none,no,bad
+'no checking',24,'critical/other existing credit','used car',4042,'no known savings','4<=X<7',3,'male single',none,4,'life insurance',43,none,own,2,skilled,1,yes,yes,good
+'no checking',15,'critical/other existing credit',radio/tv,1471,'<100','1<=X<4',4,'male single',none,4,'no known property',35,none,'for free',2,skilled,1,yes,yes,good
+'<0',18,'all paid','new car',1442,'<100','4<=X<7',4,'male single',none,4,'no known property',32,none,'for free',2,'unskilled resident',2,none,yes,bad
+'no checking',36,'delayed previously','new car',10875,'<100','>=7',2,'male single',none,2,car,45,none,own,2,skilled,2,yes,yes,good
+'no checking',24,'existing paid','new car',1474,'100<=X<500','<1',4,'male mar/wid',none,3,'real estate',33,none,own,1,skilled,1,yes,yes,good
+'no checking',10,'existing paid',retraining,894,'no known savings','4<=X<7',4,'female div/dep/mar',none,3,'life insurance',40,none,own,1,skilled,1,yes,yes,good
+'no checking',15,'critical/other existing credit',furniture/equipment,3343,'<100','1<=X<4',4,'male single',none,2,'no known property',28,none,'for free',1,skilled,1,yes,yes,good
+'<0',15,'existing paid','new car',3959,'<100','1<=X<4',3,'female div/dep/mar',none,2,'life insurance',29,none,own,1,skilled,1,yes,yes,bad
+'no checking',9,'existing paid','new car',3577,'100<=X<500','1<=X<4',1,'male single',guarantor,2,'real estate',26,none,rent,1,skilled,2,none,no,good
+'no checking',24,'critical/other existing credit','used car',5804,'>=1000','1<=X<4',4,'male single',none,2,'real estate',27,none,own,2,skilled,1,none,yes,good
+'no checking',18,'delayed previously',business,2169,'<100','1<=X<4',4,'male mar/wid',none,2,car,28,none,own,1,skilled,1,yes,yes,bad
+'<0',24,'existing paid',radio/tv,2439,'<100','<1',4,'female div/dep/mar',none,4,'real estate',35,none,own,1,skilled,1,yes,yes,bad
+'no checking',27,'critical/other existing credit',furniture/equipment,4526,'>=1000','<1',4,'male single',none,2,'real estate',32,stores,own,2,'unskilled resident',2,yes,yes,good
+'no checking',10,'existing paid',furniture/equipment,2210,'<100','1<=X<4',2,'male single',none,2,'real estate',25,bank,rent,1,'unskilled resident',1,none,yes,bad
+'no checking',15,'existing paid',furniture/equipment,2221,'500<=X<1000','1<=X<4',2,'female div/dep/mar',none,4,car,20,none,rent,1,skilled,1,none,yes,good
+'<0',18,'existing paid',radio/tv,2389,'<100','<1',4,'female div/dep/mar',none,1,car,27,stores,own,1,skilled,1,none,yes,good
+'no checking',12,'critical/other existing credit',furniture/equipment,3331,'<100','>=7',2,'male single',none,4,'life insurance',42,stores,own,1,skilled,1,none,yes,good
+'no checking',36,'existing paid',business,7409,'no known savings','>=7',3,'male single',none,2,'life insurance',37,none,own,2,skilled,1,none,yes,good
+'<0',12,'existing paid',furniture/equipment,652,'<100','>=7',4,'female div/dep/mar',none,4,'life insurance',24,none,rent,1,skilled,1,none,yes,good
+'no checking',36,'delayed previously',furniture/equipment,7678,'500<=X<1000','4<=X<7',2,'female div/dep/mar',none,4,car,40,none,own,2,skilled,1,yes,yes,good
+'>=200',6,'critical/other existing credit','new car',1343,'<100','>=7',1,'male single',none,4,'real estate',46,none,own,2,skilled,2,none,no,good
+'<0',24,'critical/other existing credit',business,1382,'100<=X<500','4<=X<7',4,'male single',none,1,'real estate',26,none,own,2,skilled,1,yes,yes,good
+'no checking',15,'existing paid','domestic appliance',874,'no known savings','<1',4,'female div/dep/mar',none,1,'real estate',24,none,own,1,skilled,1,none,yes,good
+'<0',12,'existing paid',furniture/equipment,3590,'<100','1<=X<4',2,'male single','co applicant',2,'life insurance',29,none,own,1,'unskilled resident',2,none,yes,good
+'0<=X<200',11,'critical/other existing credit','new car',1322,'>=1000','1<=X<4',4,'female div/dep/mar',none,4,car,40,none,own,2,skilled,1,none,yes,good
+'<0',18,'all paid',radio/tv,1940,'<100','<1',3,'male single','co applicant',4,'no known property',36,bank,'for free',1,'high qualif/self emp/mgmt',1,yes,yes,good
+'no checking',36,'existing paid',radio/tv,3595,'<100','>=7',4,'male single',none,2,car,28,none,own,1,skilled,1,none,yes,good
+'<0',9,'existing paid','new car',1422,'<100','<1',3,'male single',none,2,'no known property',27,none,'for free',1,'high qualif/self emp/mgmt',1,yes,yes,bad
+'no checking',30,'critical/other existing credit',radio/tv,6742,'no known savings','4<=X<7',2,'male single',none,3,'life insurance',36,none,own,2,skilled,1,none,yes,good
+'no checking',24,'existing paid','used car',7814,'<100','4<=X<7',3,'male single',none,3,car,38,none,own,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'no checking',24,'existing paid','used car',9277,'no known savings','1<=X<4',2,'male div/sep',none,4,'no known property',48,none,'for free',1,skilled,1,yes,yes,good
+'0<=X<200',30,'critical/other existing credit','new car',2181,'no known savings','>=7',4,'male single',none,4,'real estate',36,none,own,2,skilled,1,none,yes,good
+'no checking',18,'critical/other existing credit',radio/tv,1098,'<100',unemployed,4,'female div/dep/mar',none,4,car,65,none,own,2,'unemp/unskilled non res',1,none,yes,good
+'0<=X<200',24,'existing paid',furniture/equipment,4057,'<100','4<=X<7',3,'male div/sep',none,3,car,43,none,own,1,skilled,1,yes,yes,bad
+'<0',12,'existing paid',education,795,'<100','<1',4,'female div/dep/mar',none,4,'life insurance',53,none,own,1,skilled,1,none,yes,bad
+'0<=X<200',24,'critical/other existing credit',business,2825,'no known savings','4<=X<7',4,'male single',none,3,'no known property',34,none,own,2,skilled,2,yes,yes,good
+'0<=X<200',48,'existing paid',business,15672,'<100','1<=X<4',2,'male single',none,2,car,23,none,own,1,skilled,1,yes,yes,bad
+'no checking',36,'critical/other existing credit','new car',6614,'<100','>=7',4,'male single',none,4,car,34,none,own,2,'high qualif/self emp/mgmt',1,yes,yes,good
+'no checking',28,'all paid','used car',7824,'no known savings','<1',3,'male single',guarantor,4,'real estate',40,bank,rent,2,skilled,2,yes,yes,good
+'<0',27,'critical/other existing credit',business,2442,'<100','>=7',4,'male single',none,4,car,43,stores,own,4,'high qualif/self emp/mgmt',2,yes,yes,good
+'no checking',15,'critical/other existing credit',radio/tv,1829,'<100','>=7',4,'male single',none,4,car,46,none,own,2,skilled,1,yes,yes,good
+'<0',12,'critical/other existing credit','new car',2171,'<100','1<=X<4',4,'male single',none,4,'life insurance',38,bank,own,2,'unskilled resident',1,none,no,good
+'0<=X<200',36,'critical/other existing credit','used car',5800,'<100','1<=X<4',3,'male single',none,4,car,34,none,own,2,skilled,1,yes,yes,good
+'no checking',18,'critical/other existing credit',radio/tv,1169,'no known savings','1<=X<4',4,'male single',none,3,'life insurance',29,none,own,2,skilled,1,yes,yes,good
+'no checking',36,'delayed previously','used car',8947,'no known savings','4<=X<7',3,'male single',none,2,car,31,stores,own,1,'high qualif/self emp/mgmt',2,yes,yes,good
+'<0',21,'existing paid',radio/tv,2606,'<100','<1',4,'female div/dep/mar',none,4,'life insurance',28,none,rent,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'no checking',12,'critical/other existing credit',furniture/equipment,1592,'>=1000','4<=X<7',3,'female div/dep/mar',none,2,'life insurance',35,none,own,1,skilled,1,none,no,good
+'no checking',15,'existing paid',furniture/equipment,2186,'no known savings','4<=X<7',1,'female div/dep/mar',none,4,'real estate',33,bank,rent,1,'unskilled resident',1,none,yes,good
+'<0',18,'existing paid',furniture/equipment,4153,'<100','1<=X<4',2,'male single','co applicant',3,car,42,none,own,1,skilled,1,none,yes,bad
+'<0',16,'critical/other existing credit','new car',2625,'<100','>=7',2,'male single',guarantor,4,'life insurance',43,bank,rent,1,skilled,1,yes,yes,bad
+'no checking',20,'critical/other existing credit','new car',3485,'no known savings','<1',2,'male div/sep',none,4,'real estate',44,none,own,2,skilled,1,yes,yes,good
+'no checking',36,'critical/other existing credit','used car',10477,'no known savings','>=7',2,'male single',none,4,'no known property',42,none,'for free',2,skilled,1,none,yes,good
+'no checking',15,'existing paid',radio/tv,1386,'no known savings','1<=X<4',4,'male mar/wid',none,2,'real estate',40,none,rent,1,skilled,1,yes,yes,good
+'no checking',24,'existing paid',radio/tv,1278,'<100','>=7',4,'male single',none,1,'real estate',36,none,own,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'<0',12,'existing paid',radio/tv,1107,'<100','1<=X<4',2,'male single',none,2,'real estate',20,none,rent,1,'high qualif/self emp/mgmt',2,yes,yes,good
+'<0',21,'existing paid','new car',3763,'no known savings','4<=X<7',2,'male single','co applicant',2,'real estate',24,none,own,1,'unskilled resident',1,none,no,good
+'0<=X<200',36,'existing paid',education,3711,'no known savings','1<=X<4',2,'male mar/wid',none,2,car,27,none,own,1,skilled,1,none,yes,good
+'no checking',15,'delayed previously','used car',3594,'<100','<1',1,'female div/dep/mar',none,2,'life insurance',46,none,own,2,'unskilled resident',1,none,yes,good
+'0<=X<200',9,'existing paid','new car',3195,'no known savings','1<=X<4',1,'female div/dep/mar',none,2,'real estate',33,none,own,1,'unskilled resident',1,none,yes,good
+'no checking',36,'delayed previously',radio/tv,4454,'<100','1<=X<4',4,'female div/dep/mar',none,4,'real estate',34,none,own,2,skilled,1,none,yes,good
+'0<=X<200',24,'critical/other existing credit',furniture/equipment,4736,'<100','<1',2,'female div/dep/mar',none,4,car,25,bank,own,1,'unskilled resident',1,none,yes,bad
+'0<=X<200',30,'existing paid',radio/tv,2991,'no known savings','>=7',2,'female div/dep/mar',none,4,car,25,none,own,1,skilled,1,none,yes,good
+'no checking',11,'existing paid',business,2142,'>=1000','>=7',1,'male div/sep',none,2,'real estate',28,none,own,1,skilled,1,yes,yes,good
+'<0',24,'all paid',business,3161,'<100','1<=X<4',4,'male single',none,2,'life insurance',31,none,rent,1,skilled,1,yes,yes,bad
+'0<=X<200',48,'no credits/all paid',other,18424,'<100','1<=X<4',1,'female div/dep/mar',none,2,'life insurance',32,bank,own,1,'high qualif/self emp/mgmt',1,yes,no,bad
+'no checking',10,'existing paid','used car',2848,'100<=X<500','1<=X<4',1,'male single','co applicant',2,'real estate',32,none,own,1,skilled,2,none,yes,good
+'<0',6,'existing paid','new car',14896,'<100','>=7',1,'male single',none,4,'no known property',68,bank,own,1,'high qualif/self emp/mgmt',1,yes,yes,bad
+'<0',24,'existing paid',furniture/equipment,2359,'100<=X<500',unemployed,1,'male div/sep',none,1,'life insurance',33,none,own,1,skilled,1,none,yes,bad
+'<0',24,'existing paid',furniture/equipment,3345,'<100','>=7',4,'male single',none,2,'life insurance',39,none,rent,1,'high qualif/self emp/mgmt',1,yes,yes,bad
+'no checking',18,'critical/other existing credit',furniture/equipment,1817,'<100','1<=X<4',4,'female div/dep/mar',none,2,'no known property',28,none,own,2,skilled,1,none,yes,good
+'no checking',48,'delayed previously',radio/tv,12749,'500<=X<1000','4<=X<7',4,'male single',none,1,car,37,none,own,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'<0',9,'existing paid',radio/tv,1366,'<100','<1',3,'female div/dep/mar',none,4,'life insurance',22,none,rent,1,skilled,1,none,yes,bad
+'0<=X<200',12,'existing paid','new car',2002,'<100','4<=X<7',3,'male single',none,4,'life insurance',30,none,rent,1,skilled,2,yes,yes,good
+'<0',24,'all paid',furniture/equipment,6872,'<100','<1',2,'male div/sep',none,1,'life insurance',55,bank,own,1,skilled,1,yes,yes,bad
+'<0',12,'all paid','new car',697,'<100','<1',4,'male single',none,2,car,46,bank,own,2,skilled,1,yes,yes,bad
+'<0',18,'critical/other existing credit',furniture/equipment,1049,'<100','<1',4,'female div/dep/mar',none,4,'life insurance',21,none,rent,1,skilled,1,none,yes,good
+'<0',48,'existing paid','used car',10297,'<100','4<=X<7',4,'male single',none,4,'no known property',39,stores,'for free',3,skilled,2,yes,yes,bad
+'no checking',30,'existing paid',radio/tv,1867,'no known savings','>=7',4,'male single',none,4,car,58,none,own,1,skilled,1,yes,yes,good
+'<0',12,'delayed previously','new car',1344,'<100','1<=X<4',4,'male single',none,2,'real estate',43,none,own,2,'unskilled resident',2,none,yes,good
+'<0',24,'existing paid',furniture/equipment,1747,'<100','<1',4,'male single','co applicant',1,'life insurance',24,none,own,1,'unskilled resident',1,none,no,good
+'0<=X<200',9,'existing paid',radio/tv,1670,'<100','<1',4,'female div/dep/mar',none,2,car,22,none,own,1,skilled,1,yes,yes,bad
+'no checking',9,'critical/other existing credit','new car',1224,'<100','1<=X<4',3,'male single',none,1,'real estate',30,none,own,2,skilled,1,none,yes,good
+'no checking',12,'critical/other existing credit',radio/tv,522,'500<=X<1000','>=7',4,'male single',none,4,'life insurance',42,none,own,2,skilled,2,yes,yes,good
+'<0',12,'existing paid',radio/tv,1498,'<100','1<=X<4',4,'female div/dep/mar',none,1,car,23,bank,own,1,skilled,1,none,yes,good
+'0<=X<200',30,'delayed previously',radio/tv,1919,'100<=X<500','<1',4,'male single',none,3,'no known property',30,stores,own,2,'high qualif/self emp/mgmt',1,none,yes,bad
+'>=200',9,'existing paid',radio/tv,745,'<100','1<=X<4',3,'female div/dep/mar',none,2,'real estate',28,none,own,1,'unskilled resident',1,none,yes,bad
+'0<=X<200',6,'existing paid',radio/tv,2063,'<100','<1',4,'male mar/wid',none,3,car,30,none,rent,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'0<=X<200',60,'existing paid',education,6288,'<100','1<=X<4',4,'male single',none,4,'no known property',42,none,'for free',1,skilled,1,none,yes,bad
+'no checking',24,'critical/other existing credit','used car',6842,'no known savings','1<=X<4',2,'male single',none,4,'life insurance',46,none,own,2,'high qualif/self emp/mgmt',2,yes,yes,good
+'no checking',12,'existing paid','new car',3527,'no known savings','<1',2,'male single',none,3,'life insurance',45,none,own,1,'high qualif/self emp/mgmt',2,yes,yes,good
+'no checking',10,'existing paid','new car',1546,'<100','1<=X<4',3,'male single',none,2,'real estate',31,none,own,1,'unskilled resident',2,none,no,good
+'no checking',24,'existing paid',furniture/equipment,929,'no known savings','4<=X<7',4,'male single',none,2,car,31,stores,own,1,skilled,1,yes,yes,good
+'no checking',4,'critical/other existing credit','new car',1455,'<100','4<=X<7',2,'male single',none,1,'real estate',42,none,own,3,'unskilled resident',2,none,yes,good
+'<0',15,'existing paid',furniture/equipment,1845,'<100','<1',4,'female div/dep/mar',guarantor,1,'life insurance',46,none,rent,1,skilled,1,none,yes,good
+'0<=X<200',48,'no credits/all paid','new car',8358,'500<=X<1000','<1',1,'female div/dep/mar',none,1,car,30,none,own,2,skilled,1,none,yes,good
+'<0',24,'all paid',furniture/equipment,3349,'500<=X<1000','<1',4,'male single',none,4,'no known property',30,none,'for free',1,skilled,2,yes,yes,bad
+'no checking',12,'existing paid','new car',2859,'no known savings',unemployed,4,'male single',none,4,'no known property',38,none,own,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'no checking',18,'existing paid',furniture/equipment,1533,'<100','<1',4,'male mar/wid','co applicant',1,'life insurance',43,none,own,1,'unskilled resident',2,none,yes,bad
+'no checking',24,'existing paid',radio/tv,3621,'100<=X<500','>=7',2,'male single',none,4,car,31,none,own,2,skilled,1,none,yes,bad
+'0<=X<200',18,'critical/other existing credit',business,3590,'<100',unemployed,3,'male mar/wid',none,3,car,40,none,own,3,'unemp/unskilled non res',2,yes,yes,good
+'<0',36,'delayed previously',business,2145,'<100','4<=X<7',2,'male single',none,1,car,24,none,own,2,skilled,1,yes,yes,bad
+'0<=X<200',24,'existing paid','used car',4113,'500<=X<1000','<1',3,'female div/dep/mar',none,4,car,28,none,rent,1,skilled,1,none,yes,bad
+'no checking',36,'existing paid',furniture/equipment,10974,'<100',unemployed,4,'female div/dep/mar',none,2,car,26,none,own,2,'high qualif/self emp/mgmt',1,yes,yes,bad
+'<0',12,'existing paid','new car',1893,'<100','1<=X<4',4,'female div/dep/mar',guarantor,4,'life insurance',29,none,own,1,skilled,1,yes,yes,good
+'<0',24,'critical/other existing credit',radio/tv,1231,'>=1000','>=7',4,'female div/dep/mar',none,4,'life insurance',57,none,rent,2,'high qualif/self emp/mgmt',1,yes,yes,good
+'>=200',30,'critical/other existing credit',radio/tv,3656,'no known savings','>=7',4,'male single',none,4,'life insurance',49,stores,own,2,'unskilled resident',1,none,yes,good
+'0<=X<200',9,'critical/other existing credit',radio/tv,1154,'<100','>=7',2,'male single',none,4,'real estate',37,none,own,3,'unskilled resident',1,none,yes,good
+'<0',28,'existing paid','new car',4006,'<100','1<=X<4',3,'male single',none,2,car,45,none,own,1,'unskilled resident',1,none,yes,bad
+'0<=X<200',24,'existing paid',furniture/equipment,3069,'100<=X<500','>=7',4,'male single',none,4,'no known property',30,none,'for free',1,skilled,1,none,yes,good
+'no checking',6,'critical/other existing credit',radio/tv,1740,'<100','>=7',2,'male mar/wid',none,2,'real estate',30,none,rent,2,skilled,1,none,yes,good
+'0<=X<200',21,'delayed previously','new car',2353,'<100','1<=X<4',1,'male div/sep',none,4,'life insurance',47,none,own,2,skilled,1,none,yes,good
+'no checking',15,'existing paid','new car',3556,'no known savings','1<=X<4',3,'male single',none,2,'no known property',29,none,own,1,skilled,1,none,yes,good
+'no checking',24,'existing paid',radio/tv,2397,'500<=X<1000','>=7',3,'male single',none,2,car,35,bank,own,2,skilled,1,yes,yes,bad
+'0<=X<200',6,'existing paid',repairs,454,'<100','<1',3,'male mar/wid',none,1,'life insurance',22,none,own,1,'unskilled resident',1,none,yes,good
+'0<=X<200',30,'existing paid',radio/tv,1715,'no known savings','1<=X<4',4,'female div/dep/mar',none,1,car,26,none,own,1,skilled,1,none,yes,good
+'0<=X<200',27,'critical/other existing credit',radio/tv,2520,'500<=X<1000','1<=X<4',4,'male single',none,2,'life insurance',23,none,own,2,'unskilled resident',1,none,yes,bad
+'no checking',15,'existing paid',radio/tv,3568,'<100','>=7',4,'female div/dep/mar',none,2,car,54,bank,rent,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'no checking',42,'existing paid',radio/tv,7166,'no known savings','4<=X<7',2,'male mar/wid',none,4,'life insurance',29,none,rent,1,skilled,1,yes,yes,good
+'<0',11,'critical/other existing credit','new car',3939,'<100','1<=X<4',1,'male single',none,2,'real estate',40,none,own,2,'unskilled resident',2,none,yes,good
+'0<=X<200',15,'existing paid',repairs,1514,'100<=X<500','1<=X<4',4,'male single',guarantor,2,'real estate',22,none,own,1,skilled,1,none,yes,good
+'no checking',24,'existing paid','new car',7393,'<100','1<=X<4',1,'male single',none,4,'life insurance',43,none,own,1,'unskilled resident',2,none,yes,good
+'<0',24,'all paid','new car',1193,'<100',unemployed,1,'female div/dep/mar','co applicant',4,'no known property',29,none,rent,2,'unemp/unskilled non res',1,none,yes,bad
+'<0',60,'existing paid',business,7297,'<100','>=7',4,'male single','co applicant',4,'no known property',36,none,rent,1,skilled,1,none,yes,bad
+'no checking',30,'critical/other existing credit',radio/tv,2831,'<100','1<=X<4',4,'female div/dep/mar',none,2,car,33,none,own,1,skilled,1,yes,yes,good
+'>=200',24,'existing paid',radio/tv,1258,'500<=X<1000','1<=X<4',3,'female div/dep/mar',none,3,car,57,none,own,1,'unskilled resident',1,none,yes,good
+'0<=X<200',6,'existing paid',radio/tv,753,'<100','1<=X<4',2,'female div/dep/mar',guarantor,3,'real estate',64,none,own,1,skilled,1,none,yes,good
+'0<=X<200',18,'delayed previously',business,2427,'no known savings','>=7',4,'male single',none,2,'life insurance',42,none,own,2,skilled,1,none,yes,good
+'no checking',24,'delayed previously','new car',2538,'<100','>=7',4,'male single',none,4,car,47,none,own,2,'unskilled resident',2,none,yes,bad
+'0<=X<200',15,'all paid','new car',1264,'100<=X<500','1<=X<4',2,'male mar/wid',none,2,'life insurance',25,none,rent,1,skilled,1,none,yes,bad
+'0<=X<200',30,'critical/other existing credit',furniture/equipment,8386,'<100','4<=X<7',2,'male single',none,2,'life insurance',49,none,own,1,skilled,1,none,yes,bad
+'no checking',48,'existing paid',business,4844,'<100',unemployed,3,'male single',none,2,car,33,bank,rent,1,'high qualif/self emp/mgmt',1,yes,yes,bad
+'>=200',21,'existing paid','new car',2923,'100<=X<500','1<=X<4',1,'female div/dep/mar',none,1,car,28,bank,own,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'<0',36,'existing paid','used car',8229,'<100','1<=X<4',2,'male single',none,2,'life insurance',26,none,own,1,skilled,2,none,yes,bad
+'no checking',24,'critical/other existing credit',furniture/equipment,2028,'<100','4<=X<7',2,'male single',none,2,'life insurance',30,none,own,2,'unskilled resident',1,none,yes,good
+'<0',15,'critical/other existing credit',furniture/equipment,1433,'<100','1<=X<4',4,'female div/dep/mar',none,3,'life insurance',25,none,rent,2,skilled,1,none,yes,good
+'>=200',42,'no credits/all paid',business,6289,'<100','<1',2,'male div/sep',none,1,'life insurance',33,none,own,2,skilled,1,none,yes,good
+'no checking',13,'existing paid',radio/tv,1409,'100<=X<500',unemployed,2,'female div/dep/mar',none,4,'real estate',64,none,own,1,skilled,1,none,yes,good
+'<0',24,'existing paid','used car',6579,'<100',unemployed,4,'male single',none,2,'no known property',29,none,'for free',1,'high qualif/self emp/mgmt',1,yes,yes,good
+'0<=X<200',24,'critical/other existing credit',radio/tv,1743,'<100','>=7',4,'male single',none,2,'life insurance',48,none,own,2,'unskilled resident',1,none,yes,good
+'no checking',12,'critical/other existing credit',education,3565,'no known savings','<1',2,'male single',none,1,'life insurance',37,none,own,2,'unskilled resident',2,none,yes,good
+'no checking',15,'all paid',radio/tv,1569,'100<=X<500','>=7',4,'male single',none,4,car,34,bank,own,1,'unskilled resident',2,none,yes,good
+'<0',18,'existing paid',radio/tv,1936,'no known savings','4<=X<7',2,'male mar/wid',none,4,car,23,none,rent,2,'unskilled resident',1,none,yes,good
+'<0',36,'existing paid',furniture/equipment,3959,'<100',unemployed,4,'male single',none,3,'life insurance',30,none,own,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'no checking',12,'existing paid','new car',2390,'no known savings','>=7',4,'male single',none,3,car,50,none,own,1,skilled,1,yes,yes,good
+'no checking',12,'existing paid',furniture/equipment,1736,'<100','4<=X<7',3,'female div/dep/mar',none,4,'real estate',31,none,own,1,'unskilled resident',1,none,yes,good
+'<0',30,'existing paid','used car',3857,'<100','1<=X<4',4,'male div/sep',none,4,'life insurance',40,none,own,1,'high qualif/self emp/mgmt',1,yes,yes,good
+'no checking',12,'existing paid',radio/tv,804,'<100','>=7',4,'male single',none,4,car,38,none,own,1,skilled,1,none,yes,good
+'<0',45,'existing paid',radio/tv,1845,'<100','1<=X<4',4,'male single',none,4,'no known property',23,none,'for free',1,skilled,1,yes,yes,bad
+'0<=X<200',45,'critical/other existing credit','used car',4576,'100<=X<500',unemployed,3,'male single',none,4,car,27,none,own,1,skilled,1,none,yes,good
diff --git a/arff/src/test/resources/weka-data/diabetes.arff b/arff/src/test/resources/weka-data/diabetes.arff
new file mode 100644
index 0000000..db781b0
--- /dev/null
+++ b/arff/src/test/resources/weka-data/diabetes.arff
@@ -0,0 +1,863 @@
+% 1. Title: Pima Indians Diabetes Database
+% 
+% 2. Sources:
+%    (a) Original owners: National Institute of Diabetes and Digestive and
+%                         Kidney Diseases
+%    (b) Donor of database: Vincent Sigillito (vgs@aplcen.apl.jhu.edu)
+%                           Research Center, RMI Group Leader
+%                           Applied Physics Laboratory
+%                           The Johns Hopkins University
+%                           Johns Hopkins Road
+%                           Laurel, MD 20707
+%                           (301) 953-6231
+%    (c) Date received: 9 May 1990
+% 
+% 3. Past Usage:
+%     1. Smith,~J.~W., Everhart,~J.~E., Dickson,~W.~C., Knowler,~W.~C., \&
+%        Johannes,~R.~S. (1988). Using the ADAP learning algorithm to forecast
+%        the onset of diabetes mellitus.  In {\it Proceedings of the Symposium
+%        on Computer Applications and Medical Care} (pp. 261--265).  IEEE
+%        Computer Society Press.
+% 
+%        The diagnostic, binary-valued variable investigated is whether the
+%        patient shows signs of diabetes according to World Health Organization
+%        criteria (i.e., if the 2 hour post-load plasma glucose was at least 
+%        200 mg/dl at any survey  examination or if found during routine medical
+%        care).   The population lives near Phoenix, Arizona, USA.
+% 
+%        Results: Their ADAP algorithm makes a real-valued prediction between
+%        0 and 1.  This was transformed into a binary decision using a cutoff of 
+%        0.448.  Using 576 training instances, the sensitivity and specificity
+%        of their algorithm was 76% on the remaining 192 instances.
+% 
+% 4. Relevant Information:
+%       Several constraints were placed on the selection of these instances from
+%       a larger database.  In particular, all patients here are females at
+%       least 21 years old of Pima Indian heritage.  ADAP is an adaptive learning
+%       routine that generates and executes digital analogs of perceptron-like
+%       devices.  It is a unique algorithm; see the paper for details.
+% 
+% 5. Number of Instances: 768
+% 
+% 6. Number of Attributes: 8 plus class 
+% 
+% 7. For Each Attribute: (all numeric-valued)
+%    1. Number of times pregnant
+%    2. Plasma glucose concentration a 2 hours in an oral glucose tolerance test
+%    3. Diastolic blood pressure (mm Hg)
+%    4. Triceps skin fold thickness (mm)
+%    5. 2-Hour serum insulin (mu U/ml)
+%    6. Body mass index (weight in kg/(height in m)^2)
+%    7. Diabetes pedigree function
+%    8. Age (years)
+%    9. Class variable (0 or 1)
+% 
+% 8. Missing Attribute Values: None
+% 
+% 9. Class Distribution: (class value 1 is interpreted as "tested positive for
+%    diabetes")
+% 
+%    Class Value  Number of instances
+%    0            500
+%    1            268
+% 
+% 10. Brief statistical analysis:
+% 
+%     Attribute number:    Mean:   Standard Deviation:
+%     1.                     3.8     3.4
+%     2.                   120.9    32.0
+%     3.                    69.1    19.4
+%     4.                    20.5    16.0
+%     5.                    79.8   115.2
+%     6.                    32.0     7.9
+%     7.                     0.5     0.3
+%     8.                    33.2    11.8
+% 
+% 
+%
+%
+%
+%
+% Relabeled values in attribute 'class'
+%    From: 0                       To: tested_negative     
+%    From: 1                       To: tested_positive     
+%
+@relation pima_diabetes
+@attribute 'preg' numeric
+@attribute 'plas' numeric
+@attribute 'pres' numeric
+@attribute 'skin' numeric
+@attribute 'insu' numeric
+@attribute 'mass' numeric
+@attribute 'pedi' numeric
+@attribute 'age' numeric
+@attribute 'class' { tested_negative, tested_positive}
+@data
+6,148,72,35,0,33.6,0.627,50,tested_positive
+1,85,66,29,0,26.6,0.351,31,tested_negative
+8,183,64,0,0,23.3,0.672,32,tested_positive
+1,89,66,23,94,28.1,0.167,21,tested_negative
+0,137,40,35,168,43.1,2.288,33,tested_positive
+5,116,74,0,0,25.6,0.201,30,tested_negative
+3,78,50,32,88,31,0.248,26,tested_positive
+10,115,0,0,0,35.3,0.134,29,tested_negative
+2,197,70,45,543,30.5,0.158,53,tested_positive
+8,125,96,0,0,0,0.232,54,tested_positive
+4,110,92,0,0,37.6,0.191,30,tested_negative
+10,168,74,0,0,38,0.537,34,tested_positive
+10,139,80,0,0,27.1,1.441,57,tested_negative
+1,189,60,23,846,30.1,0.398,59,tested_positive
+5,166,72,19,175,25.8,0.587,51,tested_positive
+7,100,0,0,0,30,0.484,32,tested_positive
+0,118,84,47,230,45.8,0.551,31,tested_positive
+7,107,74,0,0,29.6,0.254,31,tested_positive
+1,103,30,38,83,43.3,0.183,33,tested_negative
+1,115,70,30,96,34.6,0.529,32,tested_positive
+3,126,88,41,235,39.3,0.704,27,tested_negative
+8,99,84,0,0,35.4,0.388,50,tested_negative
+7,196,90,0,0,39.8,0.451,41,tested_positive
+9,119,80,35,0,29,0.263,29,tested_positive
+11,143,94,33,146,36.6,0.254,51,tested_positive
+10,125,70,26,115,31.1,0.205,41,tested_positive
+7,147,76,0,0,39.4,0.257,43,tested_positive
+1,97,66,15,140,23.2,0.487,22,tested_negative
+13,145,82,19,110,22.2,0.245,57,tested_negative
+5,117,92,0,0,34.1,0.337,38,tested_negative
+5,109,75,26,0,36,0.546,60,tested_negative
+3,158,76,36,245,31.6,0.851,28,tested_positive
+3,88,58,11,54,24.8,0.267,22,tested_negative
+6,92,92,0,0,19.9,0.188,28,tested_negative
+10,122,78,31,0,27.6,0.512,45,tested_negative
+4,103,60,33,192,24,0.966,33,tested_negative
+11,138,76,0,0,33.2,0.42,35,tested_negative
+9,102,76,37,0,32.9,0.665,46,tested_positive
+2,90,68,42,0,38.2,0.503,27,tested_positive
+4,111,72,47,207,37.1,1.39,56,tested_positive
+3,180,64,25,70,34,0.271,26,tested_negative
+7,133,84,0,0,40.2,0.696,37,tested_negative
+7,106,92,18,0,22.7,0.235,48,tested_negative
+9,171,110,24,240,45.4,0.721,54,tested_positive
+7,159,64,0,0,27.4,0.294,40,tested_negative
+0,180,66,39,0,42,1.893,25,tested_positive
+1,146,56,0,0,29.7,0.564,29,tested_negative
+2,71,70,27,0,28,0.586,22,tested_negative
+7,103,66,32,0,39.1,0.344,31,tested_positive
+7,105,0,0,0,0,0.305,24,tested_negative
+1,103,80,11,82,19.4,0.491,22,tested_negative
+1,101,50,15,36,24.2,0.526,26,tested_negative
+5,88,66,21,23,24.4,0.342,30,tested_negative
+8,176,90,34,300,33.7,0.467,58,tested_positive
+7,150,66,42,342,34.7,0.718,42,tested_negative
+1,73,50,10,0,23,0.248,21,tested_negative
+7,187,68,39,304,37.7,0.254,41,tested_positive
+0,100,88,60,110,46.8,0.962,31,tested_negative
+0,146,82,0,0,40.5,1.781,44,tested_negative
+0,105,64,41,142,41.5,0.173,22,tested_negative
+2,84,0,0,0,0,0.304,21,tested_negative
+8,133,72,0,0,32.9,0.27,39,tested_positive
+5,44,62,0,0,25,0.587,36,tested_negative
+2,141,58,34,128,25.4,0.699,24,tested_negative
+7,114,66,0,0,32.8,0.258,42,tested_positive
+5,99,74,27,0,29,0.203,32,tested_negative
+0,109,88,30,0,32.5,0.855,38,tested_positive
+2,109,92,0,0,42.7,0.845,54,tested_negative
+1,95,66,13,38,19.6,0.334,25,tested_negative
+4,146,85,27,100,28.9,0.189,27,tested_negative
+2,100,66,20,90,32.9,0.867,28,tested_positive
+5,139,64,35,140,28.6,0.411,26,tested_negative
+13,126,90,0,0,43.4,0.583,42,tested_positive
+4,129,86,20,270,35.1,0.231,23,tested_negative
+1,79,75,30,0,32,0.396,22,tested_negative
+1,0,48,20,0,24.7,0.14,22,tested_negative
+7,62,78,0,0,32.6,0.391,41,tested_negative
+5,95,72,33,0,37.7,0.37,27,tested_negative
+0,131,0,0,0,43.2,0.27,26,tested_positive
+2,112,66,22,0,25,0.307,24,tested_negative
+3,113,44,13,0,22.4,0.14,22,tested_negative
+2,74,0,0,0,0,0.102,22,tested_negative
+7,83,78,26,71,29.3,0.767,36,tested_negative
+0,101,65,28,0,24.6,0.237,22,tested_negative
+5,137,108,0,0,48.8,0.227,37,tested_positive
+2,110,74,29,125,32.4,0.698,27,tested_negative
+13,106,72,54,0,36.6,0.178,45,tested_negative
+2,100,68,25,71,38.5,0.324,26,tested_negative
+15,136,70,32,110,37.1,0.153,43,tested_positive
+1,107,68,19,0,26.5,0.165,24,tested_negative
+1,80,55,0,0,19.1,0.258,21,tested_negative
+4,123,80,15,176,32,0.443,34,tested_negative
+7,81,78,40,48,46.7,0.261,42,tested_negative
+4,134,72,0,0,23.8,0.277,60,tested_positive
+2,142,82,18,64,24.7,0.761,21,tested_negative
+6,144,72,27,228,33.9,0.255,40,tested_negative
+2,92,62,28,0,31.6,0.13,24,tested_negative
+1,71,48,18,76,20.4,0.323,22,tested_negative
+6,93,50,30,64,28.7,0.356,23,tested_negative
+1,122,90,51,220,49.7,0.325,31,tested_positive
+1,163,72,0,0,39,1.222,33,tested_positive
+1,151,60,0,0,26.1,0.179,22,tested_negative
+0,125,96,0,0,22.5,0.262,21,tested_negative
+1,81,72,18,40,26.6,0.283,24,tested_negative
+2,85,65,0,0,39.6,0.93,27,tested_negative
+1,126,56,29,152,28.7,0.801,21,tested_negative
+1,96,122,0,0,22.4,0.207,27,tested_negative
+4,144,58,28,140,29.5,0.287,37,tested_negative
+3,83,58,31,18,34.3,0.336,25,tested_negative
+0,95,85,25,36,37.4,0.247,24,tested_positive
+3,171,72,33,135,33.3,0.199,24,tested_positive
+8,155,62,26,495,34,0.543,46,tested_positive
+1,89,76,34,37,31.2,0.192,23,tested_negative
+4,76,62,0,0,34,0.391,25,tested_negative
+7,160,54,32,175,30.5,0.588,39,tested_positive
+4,146,92,0,0,31.2,0.539,61,tested_positive
+5,124,74,0,0,34,0.22,38,tested_positive
+5,78,48,0,0,33.7,0.654,25,tested_negative
+4,97,60,23,0,28.2,0.443,22,tested_negative
+4,99,76,15,51,23.2,0.223,21,tested_negative
+0,162,76,56,100,53.2,0.759,25,tested_positive
+6,111,64,39,0,34.2,0.26,24,tested_negative
+2,107,74,30,100,33.6,0.404,23,tested_negative
+5,132,80,0,0,26.8,0.186,69,tested_negative
+0,113,76,0,0,33.3,0.278,23,tested_positive
+1,88,30,42,99,55,0.496,26,tested_positive
+3,120,70,30,135,42.9,0.452,30,tested_negative
+1,118,58,36,94,33.3,0.261,23,tested_negative
+1,117,88,24,145,34.5,0.403,40,tested_positive
+0,105,84,0,0,27.9,0.741,62,tested_positive
+4,173,70,14,168,29.7,0.361,33,tested_positive
+9,122,56,0,0,33.3,1.114,33,tested_positive
+3,170,64,37,225,34.5,0.356,30,tested_positive
+8,84,74,31,0,38.3,0.457,39,tested_negative
+2,96,68,13,49,21.1,0.647,26,tested_negative
+2,125,60,20,140,33.8,0.088,31,tested_negative
+0,100,70,26,50,30.8,0.597,21,tested_negative
+0,93,60,25,92,28.7,0.532,22,tested_negative
+0,129,80,0,0,31.2,0.703,29,tested_negative
+5,105,72,29,325,36.9,0.159,28,tested_negative
+3,128,78,0,0,21.1,0.268,55,tested_negative
+5,106,82,30,0,39.5,0.286,38,tested_negative
+2,108,52,26,63,32.5,0.318,22,tested_negative
+10,108,66,0,0,32.4,0.272,42,tested_positive
+4,154,62,31,284,32.8,0.237,23,tested_negative
+0,102,75,23,0,0,0.572,21,tested_negative
+9,57,80,37,0,32.8,0.096,41,tested_negative
+2,106,64,35,119,30.5,1.4,34,tested_negative
+5,147,78,0,0,33.7,0.218,65,tested_negative
+2,90,70,17,0,27.3,0.085,22,tested_negative
+1,136,74,50,204,37.4,0.399,24,tested_negative
+4,114,65,0,0,21.9,0.432,37,tested_negative
+9,156,86,28,155,34.3,1.189,42,tested_positive
+1,153,82,42,485,40.6,0.687,23,tested_negative
+8,188,78,0,0,47.9,0.137,43,tested_positive
+7,152,88,44,0,50,0.337,36,tested_positive
+2,99,52,15,94,24.6,0.637,21,tested_negative
+1,109,56,21,135,25.2,0.833,23,tested_negative
+2,88,74,19,53,29,0.229,22,tested_negative
+17,163,72,41,114,40.9,0.817,47,tested_positive
+4,151,90,38,0,29.7,0.294,36,tested_negative
+7,102,74,40,105,37.2,0.204,45,tested_negative
+0,114,80,34,285,44.2,0.167,27,tested_negative
+2,100,64,23,0,29.7,0.368,21,tested_negative
+0,131,88,0,0,31.6,0.743,32,tested_positive
+6,104,74,18,156,29.9,0.722,41,tested_positive
+3,148,66,25,0,32.5,0.256,22,tested_negative
+4,120,68,0,0,29.6,0.709,34,tested_negative
+4,110,66,0,0,31.9,0.471,29,tested_negative
+3,111,90,12,78,28.4,0.495,29,tested_negative
+6,102,82,0,0,30.8,0.18,36,tested_positive
+6,134,70,23,130,35.4,0.542,29,tested_positive
+2,87,0,23,0,28.9,0.773,25,tested_negative
+1,79,60,42,48,43.5,0.678,23,tested_negative
+2,75,64,24,55,29.7,0.37,33,tested_negative
+8,179,72,42,130,32.7,0.719,36,tested_positive
+6,85,78,0,0,31.2,0.382,42,tested_negative
+0,129,110,46,130,67.1,0.319,26,tested_positive
+5,143,78,0,0,45,0.19,47,tested_negative
+5,130,82,0,0,39.1,0.956,37,tested_positive
+6,87,80,0,0,23.2,0.084,32,tested_negative
+0,119,64,18,92,34.9,0.725,23,tested_negative
+1,0,74,20,23,27.7,0.299,21,tested_negative
+5,73,60,0,0,26.8,0.268,27,tested_negative
+4,141,74,0,0,27.6,0.244,40,tested_negative
+7,194,68,28,0,35.9,0.745,41,tested_positive
+8,181,68,36,495,30.1,0.615,60,tested_positive
+1,128,98,41,58,32,1.321,33,tested_positive
+8,109,76,39,114,27.9,0.64,31,tested_positive
+5,139,80,35,160,31.6,0.361,25,tested_positive
+3,111,62,0,0,22.6,0.142,21,tested_negative
+9,123,70,44,94,33.1,0.374,40,tested_negative
+7,159,66,0,0,30.4,0.383,36,tested_positive
+11,135,0,0,0,52.3,0.578,40,tested_positive
+8,85,55,20,0,24.4,0.136,42,tested_negative
+5,158,84,41,210,39.4,0.395,29,tested_positive
+1,105,58,0,0,24.3,0.187,21,tested_negative
+3,107,62,13,48,22.9,0.678,23,tested_positive
+4,109,64,44,99,34.8,0.905,26,tested_positive
+4,148,60,27,318,30.9,0.15,29,tested_positive
+0,113,80,16,0,31,0.874,21,tested_negative
+1,138,82,0,0,40.1,0.236,28,tested_negative
+0,108,68,20,0,27.3,0.787,32,tested_negative
+2,99,70,16,44,20.4,0.235,27,tested_negative
+6,103,72,32,190,37.7,0.324,55,tested_negative
+5,111,72,28,0,23.9,0.407,27,tested_negative
+8,196,76,29,280,37.5,0.605,57,tested_positive
+5,162,104,0,0,37.7,0.151,52,tested_positive
+1,96,64,27,87,33.2,0.289,21,tested_negative
+7,184,84,33,0,35.5,0.355,41,tested_positive
+2,81,60,22,0,27.7,0.29,25,tested_negative
+0,147,85,54,0,42.8,0.375,24,tested_negative
+7,179,95,31,0,34.2,0.164,60,tested_negative
+0,140,65,26,130,42.6,0.431,24,tested_positive
+9,112,82,32,175,34.2,0.26,36,tested_positive
+12,151,70,40,271,41.8,0.742,38,tested_positive
+5,109,62,41,129,35.8,0.514,25,tested_positive
+6,125,68,30,120,30,0.464,32,tested_negative
+5,85,74,22,0,29,1.224,32,tested_positive
+5,112,66,0,0,37.8,0.261,41,tested_positive
+0,177,60,29,478,34.6,1.072,21,tested_positive
+2,158,90,0,0,31.6,0.805,66,tested_positive
+7,119,0,0,0,25.2,0.209,37,tested_negative
+7,142,60,33,190,28.8,0.687,61,tested_negative
+1,100,66,15,56,23.6,0.666,26,tested_negative
+1,87,78,27,32,34.6,0.101,22,tested_negative
+0,101,76,0,0,35.7,0.198,26,tested_negative
+3,162,52,38,0,37.2,0.652,24,tested_positive
+4,197,70,39,744,36.7,2.329,31,tested_negative
+0,117,80,31,53,45.2,0.089,24,tested_negative
+4,142,86,0,0,44,0.645,22,tested_positive
+6,134,80,37,370,46.2,0.238,46,tested_positive
+1,79,80,25,37,25.4,0.583,22,tested_negative
+4,122,68,0,0,35,0.394,29,tested_negative
+3,74,68,28,45,29.7,0.293,23,tested_negative
+4,171,72,0,0,43.6,0.479,26,tested_positive
+7,181,84,21,192,35.9,0.586,51,tested_positive
+0,179,90,27,0,44.1,0.686,23,tested_positive
+9,164,84,21,0,30.8,0.831,32,tested_positive
+0,104,76,0,0,18.4,0.582,27,tested_negative
+1,91,64,24,0,29.2,0.192,21,tested_negative
+4,91,70,32,88,33.1,0.446,22,tested_negative
+3,139,54,0,0,25.6,0.402,22,tested_positive
+6,119,50,22,176,27.1,1.318,33,tested_positive
+2,146,76,35,194,38.2,0.329,29,tested_negative
+9,184,85,15,0,30,1.213,49,tested_positive
+10,122,68,0,0,31.2,0.258,41,tested_negative
+0,165,90,33,680,52.3,0.427,23,tested_negative
+9,124,70,33,402,35.4,0.282,34,tested_negative
+1,111,86,19,0,30.1,0.143,23,tested_negative
+9,106,52,0,0,31.2,0.38,42,tested_negative
+2,129,84,0,0,28,0.284,27,tested_negative
+2,90,80,14,55,24.4,0.249,24,tested_negative
+0,86,68,32,0,35.8,0.238,25,tested_negative
+12,92,62,7,258,27.6,0.926,44,tested_positive
+1,113,64,35,0,33.6,0.543,21,tested_positive
+3,111,56,39,0,30.1,0.557,30,tested_negative
+2,114,68,22,0,28.7,0.092,25,tested_negative
+1,193,50,16,375,25.9,0.655,24,tested_negative
+11,155,76,28,150,33.3,1.353,51,tested_positive
+3,191,68,15,130,30.9,0.299,34,tested_negative
+3,141,0,0,0,30,0.761,27,tested_positive
+4,95,70,32,0,32.1,0.612,24,tested_negative
+3,142,80,15,0,32.4,0.2,63,tested_negative
+4,123,62,0,0,32,0.226,35,tested_positive
+5,96,74,18,67,33.6,0.997,43,tested_negative
+0,138,0,0,0,36.3,0.933,25,tested_positive
+2,128,64,42,0,40,1.101,24,tested_negative
+0,102,52,0,0,25.1,0.078,21,tested_negative
+2,146,0,0,0,27.5,0.24,28,tested_positive
+10,101,86,37,0,45.6,1.136,38,tested_positive
+2,108,62,32,56,25.2,0.128,21,tested_negative
+3,122,78,0,0,23,0.254,40,tested_negative
+1,71,78,50,45,33.2,0.422,21,tested_negative
+13,106,70,0,0,34.2,0.251,52,tested_negative
+2,100,70,52,57,40.5,0.677,25,tested_negative
+7,106,60,24,0,26.5,0.296,29,tested_positive
+0,104,64,23,116,27.8,0.454,23,tested_negative
+5,114,74,0,0,24.9,0.744,57,tested_negative
+2,108,62,10,278,25.3,0.881,22,tested_negative
+0,146,70,0,0,37.9,0.334,28,tested_positive
+10,129,76,28,122,35.9,0.28,39,tested_negative
+7,133,88,15,155,32.4,0.262,37,tested_negative
+7,161,86,0,0,30.4,0.165,47,tested_positive
+2,108,80,0,0,27,0.259,52,tested_positive
+7,136,74,26,135,26,0.647,51,tested_negative
+5,155,84,44,545,38.7,0.619,34,tested_negative
+1,119,86,39,220,45.6,0.808,29,tested_positive
+4,96,56,17,49,20.8,0.34,26,tested_negative
+5,108,72,43,75,36.1,0.263,33,tested_negative
+0,78,88,29,40,36.9,0.434,21,tested_negative
+0,107,62,30,74,36.6,0.757,25,tested_positive
+2,128,78,37,182,43.3,1.224,31,tested_positive
+1,128,48,45,194,40.5,0.613,24,tested_positive
+0,161,50,0,0,21.9,0.254,65,tested_negative
+6,151,62,31,120,35.5,0.692,28,tested_negative
+2,146,70,38,360,28,0.337,29,tested_positive
+0,126,84,29,215,30.7,0.52,24,tested_negative
+14,100,78,25,184,36.6,0.412,46,tested_positive
+8,112,72,0,0,23.6,0.84,58,tested_negative
+0,167,0,0,0,32.3,0.839,30,tested_positive
+2,144,58,33,135,31.6,0.422,25,tested_positive
+5,77,82,41,42,35.8,0.156,35,tested_negative
+5,115,98,0,0,52.9,0.209,28,tested_positive
+3,150,76,0,0,21,0.207,37,tested_negative
+2,120,76,37,105,39.7,0.215,29,tested_negative
+10,161,68,23,132,25.5,0.326,47,tested_positive
+0,137,68,14,148,24.8,0.143,21,tested_negative
+0,128,68,19,180,30.5,1.391,25,tested_positive
+2,124,68,28,205,32.9,0.875,30,tested_positive
+6,80,66,30,0,26.2,0.313,41,tested_negative
+0,106,70,37,148,39.4,0.605,22,tested_negative
+2,155,74,17,96,26.6,0.433,27,tested_positive
+3,113,50,10,85,29.5,0.626,25,tested_negative
+7,109,80,31,0,35.9,1.127,43,tested_positive
+2,112,68,22,94,34.1,0.315,26,tested_negative
+3,99,80,11,64,19.3,0.284,30,tested_negative
+3,182,74,0,0,30.5,0.345,29,tested_positive
+3,115,66,39,140,38.1,0.15,28,tested_negative
+6,194,78,0,0,23.5,0.129,59,tested_positive
+4,129,60,12,231,27.5,0.527,31,tested_negative
+3,112,74,30,0,31.6,0.197,25,tested_positive
+0,124,70,20,0,27.4,0.254,36,tested_positive
+13,152,90,33,29,26.8,0.731,43,tested_positive
+2,112,75,32,0,35.7,0.148,21,tested_negative
+1,157,72,21,168,25.6,0.123,24,tested_negative
+1,122,64,32,156,35.1,0.692,30,tested_positive
+10,179,70,0,0,35.1,0.2,37,tested_negative
+2,102,86,36,120,45.5,0.127,23,tested_positive
+6,105,70,32,68,30.8,0.122,37,tested_negative
+8,118,72,19,0,23.1,1.476,46,tested_negative
+2,87,58,16,52,32.7,0.166,25,tested_negative
+1,180,0,0,0,43.3,0.282,41,tested_positive
+12,106,80,0,0,23.6,0.137,44,tested_negative
+1,95,60,18,58,23.9,0.26,22,tested_negative
+0,165,76,43,255,47.9,0.259,26,tested_negative
+0,117,0,0,0,33.8,0.932,44,tested_negative
+5,115,76,0,0,31.2,0.343,44,tested_positive
+9,152,78,34,171,34.2,0.893,33,tested_positive
+7,178,84,0,0,39.9,0.331,41,tested_positive
+1,130,70,13,105,25.9,0.472,22,tested_negative
+1,95,74,21,73,25.9,0.673,36,tested_negative
+1,0,68,35,0,32,0.389,22,tested_negative
+5,122,86,0,0,34.7,0.29,33,tested_negative
+8,95,72,0,0,36.8,0.485,57,tested_negative
+8,126,88,36,108,38.5,0.349,49,tested_negative
+1,139,46,19,83,28.7,0.654,22,tested_negative
+3,116,0,0,0,23.5,0.187,23,tested_negative
+3,99,62,19,74,21.8,0.279,26,tested_negative
+5,0,80,32,0,41,0.346,37,tested_positive
+4,92,80,0,0,42.2,0.237,29,tested_negative
+4,137,84,0,0,31.2,0.252,30,tested_negative
+3,61,82,28,0,34.4,0.243,46,tested_negative
+1,90,62,12,43,27.2,0.58,24,tested_negative
+3,90,78,0,0,42.7,0.559,21,tested_negative
+9,165,88,0,0,30.4,0.302,49,tested_positive
+1,125,50,40,167,33.3,0.962,28,tested_positive
+13,129,0,30,0,39.9,0.569,44,tested_positive
+12,88,74,40,54,35.3,0.378,48,tested_negative
+1,196,76,36,249,36.5,0.875,29,tested_positive
+5,189,64,33,325,31.2,0.583,29,tested_positive
+5,158,70,0,0,29.8,0.207,63,tested_negative
+5,103,108,37,0,39.2,0.305,65,tested_negative
+4,146,78,0,0,38.5,0.52,67,tested_positive
+4,147,74,25,293,34.9,0.385,30,tested_negative
+5,99,54,28,83,34,0.499,30,tested_negative
+6,124,72,0,0,27.6,0.368,29,tested_positive
+0,101,64,17,0,21,0.252,21,tested_negative
+3,81,86,16,66,27.5,0.306,22,tested_negative
+1,133,102,28,140,32.8,0.234,45,tested_positive
+3,173,82,48,465,38.4,2.137,25,tested_positive
+0,118,64,23,89,0,1.731,21,tested_negative
+0,84,64,22,66,35.8,0.545,21,tested_negative
+2,105,58,40,94,34.9,0.225,25,tested_negative
+2,122,52,43,158,36.2,0.816,28,tested_negative
+12,140,82,43,325,39.2,0.528,58,tested_positive
+0,98,82,15,84,25.2,0.299,22,tested_negative
+1,87,60,37,75,37.2,0.509,22,tested_negative
+4,156,75,0,0,48.3,0.238,32,tested_positive
+0,93,100,39,72,43.4,1.021,35,tested_negative
+1,107,72,30,82,30.8,0.821,24,tested_negative
+0,105,68,22,0,20,0.236,22,tested_negative
+1,109,60,8,182,25.4,0.947,21,tested_negative
+1,90,62,18,59,25.1,1.268,25,tested_negative
+1,125,70,24,110,24.3,0.221,25,tested_negative
+1,119,54,13,50,22.3,0.205,24,tested_negative
+5,116,74,29,0,32.3,0.66,35,tested_positive
+8,105,100,36,0,43.3,0.239,45,tested_positive
+5,144,82,26,285,32,0.452,58,tested_positive
+3,100,68,23,81,31.6,0.949,28,tested_negative
+1,100,66,29,196,32,0.444,42,tested_negative
+5,166,76,0,0,45.7,0.34,27,tested_positive
+1,131,64,14,415,23.7,0.389,21,tested_negative
+4,116,72,12,87,22.1,0.463,37,tested_negative
+4,158,78,0,0,32.9,0.803,31,tested_positive
+2,127,58,24,275,27.7,1.6,25,tested_negative
+3,96,56,34,115,24.7,0.944,39,tested_negative
+0,131,66,40,0,34.3,0.196,22,tested_positive
+3,82,70,0,0,21.1,0.389,25,tested_negative
+3,193,70,31,0,34.9,0.241,25,tested_positive
+4,95,64,0,0,32,0.161,31,tested_positive
+6,137,61,0,0,24.2,0.151,55,tested_negative
+5,136,84,41,88,35,0.286,35,tested_positive
+9,72,78,25,0,31.6,0.28,38,tested_negative
+5,168,64,0,0,32.9,0.135,41,tested_positive
+2,123,48,32,165,42.1,0.52,26,tested_negative
+4,115,72,0,0,28.9,0.376,46,tested_positive
+0,101,62,0,0,21.9,0.336,25,tested_negative
+8,197,74,0,0,25.9,1.191,39,tested_positive
+1,172,68,49,579,42.4,0.702,28,tested_positive
+6,102,90,39,0,35.7,0.674,28,tested_negative
+1,112,72,30,176,34.4,0.528,25,tested_negative
+1,143,84,23,310,42.4,1.076,22,tested_negative
+1,143,74,22,61,26.2,0.256,21,tested_negative
+0,138,60,35,167,34.6,0.534,21,tested_positive
+3,173,84,33,474,35.7,0.258,22,tested_positive
+1,97,68,21,0,27.2,1.095,22,tested_negative
+4,144,82,32,0,38.5,0.554,37,tested_positive
+1,83,68,0,0,18.2,0.624,27,tested_negative
+3,129,64,29,115,26.4,0.219,28,tested_positive
+1,119,88,41,170,45.3,0.507,26,tested_negative
+2,94,68,18,76,26,0.561,21,tested_negative
+0,102,64,46,78,40.6,0.496,21,tested_negative
+2,115,64,22,0,30.8,0.421,21,tested_negative
+8,151,78,32,210,42.9,0.516,36,tested_positive
+4,184,78,39,277,37,0.264,31,tested_positive
+0,94,0,0,0,0,0.256,25,tested_negative
+1,181,64,30,180,34.1,0.328,38,tested_positive
+0,135,94,46,145,40.6,0.284,26,tested_negative
+1,95,82,25,180,35,0.233,43,tested_positive
+2,99,0,0,0,22.2,0.108,23,tested_negative
+3,89,74,16,85,30.4,0.551,38,tested_negative
+1,80,74,11,60,30,0.527,22,tested_negative
+2,139,75,0,0,25.6,0.167,29,tested_negative
+1,90,68,8,0,24.5,1.138,36,tested_negative
+0,141,0,0,0,42.4,0.205,29,tested_positive
+12,140,85,33,0,37.4,0.244,41,tested_negative
+5,147,75,0,0,29.9,0.434,28,tested_negative
+1,97,70,15,0,18.2,0.147,21,tested_negative
+6,107,88,0,0,36.8,0.727,31,tested_negative
+0,189,104,25,0,34.3,0.435,41,tested_positive
+2,83,66,23,50,32.2,0.497,22,tested_negative
+4,117,64,27,120,33.2,0.23,24,tested_negative
+8,108,70,0,0,30.5,0.955,33,tested_positive
+4,117,62,12,0,29.7,0.38,30,tested_positive
+0,180,78,63,14,59.4,2.42,25,tested_positive
+1,100,72,12,70,25.3,0.658,28,tested_negative
+0,95,80,45,92,36.5,0.33,26,tested_negative
+0,104,64,37,64,33.6,0.51,22,tested_positive
+0,120,74,18,63,30.5,0.285,26,tested_negative
+1,82,64,13,95,21.2,0.415,23,tested_negative
+2,134,70,0,0,28.9,0.542,23,tested_positive
+0,91,68,32,210,39.9,0.381,25,tested_negative
+2,119,0,0,0,19.6,0.832,72,tested_negative
+2,100,54,28,105,37.8,0.498,24,tested_negative
+14,175,62,30,0,33.6,0.212,38,tested_positive
+1,135,54,0,0,26.7,0.687,62,tested_negative
+5,86,68,28,71,30.2,0.364,24,tested_negative
+10,148,84,48,237,37.6,1.001,51,tested_positive
+9,134,74,33,60,25.9,0.46,81,tested_negative
+9,120,72,22,56,20.8,0.733,48,tested_negative
+1,71,62,0,0,21.8,0.416,26,tested_negative
+8,74,70,40,49,35.3,0.705,39,tested_negative
+5,88,78,30,0,27.6,0.258,37,tested_negative
+10,115,98,0,0,24,1.022,34,tested_negative
+0,124,56,13,105,21.8,0.452,21,tested_negative
+0,74,52,10,36,27.8,0.269,22,tested_negative
+0,97,64,36,100,36.8,0.6,25,tested_negative
+8,120,0,0,0,30,0.183,38,tested_positive
+6,154,78,41,140,46.1,0.571,27,tested_negative
+1,144,82,40,0,41.3,0.607,28,tested_negative
+0,137,70,38,0,33.2,0.17,22,tested_negative
+0,119,66,27,0,38.8,0.259,22,tested_negative
+7,136,90,0,0,29.9,0.21,50,tested_negative
+4,114,64,0,0,28.9,0.126,24,tested_negative
+0,137,84,27,0,27.3,0.231,59,tested_negative
+2,105,80,45,191,33.7,0.711,29,tested_positive
+7,114,76,17,110,23.8,0.466,31,tested_negative
+8,126,74,38,75,25.9,0.162,39,tested_negative
+4,132,86,31,0,28,0.419,63,tested_negative
+3,158,70,30,328,35.5,0.344,35,tested_positive
+0,123,88,37,0,35.2,0.197,29,tested_negative
+4,85,58,22,49,27.8,0.306,28,tested_negative
+0,84,82,31,125,38.2,0.233,23,tested_negative
+0,145,0,0,0,44.2,0.63,31,tested_positive
+0,135,68,42,250,42.3,0.365,24,tested_positive
+1,139,62,41,480,40.7,0.536,21,tested_negative
+0,173,78,32,265,46.5,1.159,58,tested_negative
+4,99,72,17,0,25.6,0.294,28,tested_negative
+8,194,80,0,0,26.1,0.551,67,tested_negative
+2,83,65,28,66,36.8,0.629,24,tested_negative
+2,89,90,30,0,33.5,0.292,42,tested_negative
+4,99,68,38,0,32.8,0.145,33,tested_negative
+4,125,70,18,122,28.9,1.144,45,tested_positive
+3,80,0,0,0,0,0.174,22,tested_negative
+6,166,74,0,0,26.6,0.304,66,tested_negative
+5,110,68,0,0,26,0.292,30,tested_negative
+2,81,72,15,76,30.1,0.547,25,tested_negative
+7,195,70,33,145,25.1,0.163,55,tested_positive
+6,154,74,32,193,29.3,0.839,39,tested_negative
+2,117,90,19,71,25.2,0.313,21,tested_negative
+3,84,72,32,0,37.2,0.267,28,tested_negative
+6,0,68,41,0,39,0.727,41,tested_positive
+7,94,64,25,79,33.3,0.738,41,tested_negative
+3,96,78,39,0,37.3,0.238,40,tested_negative
+10,75,82,0,0,33.3,0.263,38,tested_negative
+0,180,90,26,90,36.5,0.314,35,tested_positive
+1,130,60,23,170,28.6,0.692,21,tested_negative
+2,84,50,23,76,30.4,0.968,21,tested_negative
+8,120,78,0,0,25,0.409,64,tested_negative
+12,84,72,31,0,29.7,0.297,46,tested_positive
+0,139,62,17,210,22.1,0.207,21,tested_negative
+9,91,68,0,0,24.2,0.2,58,tested_negative
+2,91,62,0,0,27.3,0.525,22,tested_negative
+3,99,54,19,86,25.6,0.154,24,tested_negative
+3,163,70,18,105,31.6,0.268,28,tested_positive
+9,145,88,34,165,30.3,0.771,53,tested_positive
+7,125,86,0,0,37.6,0.304,51,tested_negative
+13,76,60,0,0,32.8,0.18,41,tested_negative
+6,129,90,7,326,19.6,0.582,60,tested_negative
+2,68,70,32,66,25,0.187,25,tested_negative
+3,124,80,33,130,33.2,0.305,26,tested_negative
+6,114,0,0,0,0,0.189,26,tested_negative
+9,130,70,0,0,34.2,0.652,45,tested_positive
+3,125,58,0,0,31.6,0.151,24,tested_negative
+3,87,60,18,0,21.8,0.444,21,tested_negative
+1,97,64,19,82,18.2,0.299,21,tested_negative
+3,116,74,15,105,26.3,0.107,24,tested_negative
+0,117,66,31,188,30.8,0.493,22,tested_negative
+0,111,65,0,0,24.6,0.66,31,tested_negative
+2,122,60,18,106,29.8,0.717,22,tested_negative
+0,107,76,0,0,45.3,0.686,24,tested_negative
+1,86,66,52,65,41.3,0.917,29,tested_negative
+6,91,0,0,0,29.8,0.501,31,tested_negative
+1,77,56,30,56,33.3,1.251,24,tested_negative
+4,132,0,0,0,32.9,0.302,23,tested_positive
+0,105,90,0,0,29.6,0.197,46,tested_negative
+0,57,60,0,0,21.7,0.735,67,tested_negative
+0,127,80,37,210,36.3,0.804,23,tested_negative
+3,129,92,49,155,36.4,0.968,32,tested_positive
+8,100,74,40,215,39.4,0.661,43,tested_positive
+3,128,72,25,190,32.4,0.549,27,tested_positive
+10,90,85,32,0,34.9,0.825,56,tested_positive
+4,84,90,23,56,39.5,0.159,25,tested_negative
+1,88,78,29,76,32,0.365,29,tested_negative
+8,186,90,35,225,34.5,0.423,37,tested_positive
+5,187,76,27,207,43.6,1.034,53,tested_positive
+4,131,68,21,166,33.1,0.16,28,tested_negative
+1,164,82,43,67,32.8,0.341,50,tested_negative
+4,189,110,31,0,28.5,0.68,37,tested_negative
+1,116,70,28,0,27.4,0.204,21,tested_negative
+3,84,68,30,106,31.9,0.591,25,tested_negative
+6,114,88,0,0,27.8,0.247,66,tested_negative
+1,88,62,24,44,29.9,0.422,23,tested_negative
+1,84,64,23,115,36.9,0.471,28,tested_negative
+7,124,70,33,215,25.5,0.161,37,tested_negative
+1,97,70,40,0,38.1,0.218,30,tested_negative
+8,110,76,0,0,27.8,0.237,58,tested_negative
+11,103,68,40,0,46.2,0.126,42,tested_negative
+11,85,74,0,0,30.1,0.3,35,tested_negative
+6,125,76,0,0,33.8,0.121,54,tested_positive
+0,198,66,32,274,41.3,0.502,28,tested_positive
+1,87,68,34,77,37.6,0.401,24,tested_negative
+6,99,60,19,54,26.9,0.497,32,tested_negative
+0,91,80,0,0,32.4,0.601,27,tested_negative
+2,95,54,14,88,26.1,0.748,22,tested_negative
+1,99,72,30,18,38.6,0.412,21,tested_negative
+6,92,62,32,126,32,0.085,46,tested_negative
+4,154,72,29,126,31.3,0.338,37,tested_negative
+0,121,66,30,165,34.3,0.203,33,tested_positive
+3,78,70,0,0,32.5,0.27,39,tested_negative
+2,130,96,0,0,22.6,0.268,21,tested_negative
+3,111,58,31,44,29.5,0.43,22,tested_negative
+2,98,60,17,120,34.7,0.198,22,tested_negative
+1,143,86,30,330,30.1,0.892,23,tested_negative
+1,119,44,47,63,35.5,0.28,25,tested_negative
+6,108,44,20,130,24,0.813,35,tested_negative
+2,118,80,0,0,42.9,0.693,21,tested_positive
+10,133,68,0,0,27,0.245,36,tested_negative
+2,197,70,99,0,34.7,0.575,62,tested_positive
+0,151,90,46,0,42.1,0.371,21,tested_positive
+6,109,60,27,0,25,0.206,27,tested_negative
+12,121,78,17,0,26.5,0.259,62,tested_negative
+8,100,76,0,0,38.7,0.19,42,tested_negative
+8,124,76,24,600,28.7,0.687,52,tested_positive
+1,93,56,11,0,22.5,0.417,22,tested_negative
+8,143,66,0,0,34.9,0.129,41,tested_positive
+6,103,66,0,0,24.3,0.249,29,tested_negative
+3,176,86,27,156,33.3,1.154,52,tested_positive
+0,73,0,0,0,21.1,0.342,25,tested_negative
+11,111,84,40,0,46.8,0.925,45,tested_positive
+2,112,78,50,140,39.4,0.175,24,tested_negative
+3,132,80,0,0,34.4,0.402,44,tested_positive
+2,82,52,22,115,28.5,1.699,25,tested_negative
+6,123,72,45,230,33.6,0.733,34,tested_negative
+0,188,82,14,185,32,0.682,22,tested_positive
+0,67,76,0,0,45.3,0.194,46,tested_negative
+1,89,24,19,25,27.8,0.559,21,tested_negative
+1,173,74,0,0,36.8,0.088,38,tested_positive
+1,109,38,18,120,23.1,0.407,26,tested_negative
+1,108,88,19,0,27.1,0.4,24,tested_negative
+6,96,0,0,0,23.7,0.19,28,tested_negative
+1,124,74,36,0,27.8,0.1,30,tested_negative
+7,150,78,29,126,35.2,0.692,54,tested_positive
+4,183,0,0,0,28.4,0.212,36,tested_positive
+1,124,60,32,0,35.8,0.514,21,tested_negative
+1,181,78,42,293,40,1.258,22,tested_positive
+1,92,62,25,41,19.5,0.482,25,tested_negative
+0,152,82,39,272,41.5,0.27,27,tested_negative
+1,111,62,13,182,24,0.138,23,tested_negative
+3,106,54,21,158,30.9,0.292,24,tested_negative
+3,174,58,22,194,32.9,0.593,36,tested_positive
+7,168,88,42,321,38.2,0.787,40,tested_positive
+6,105,80,28,0,32.5,0.878,26,tested_negative
+11,138,74,26,144,36.1,0.557,50,tested_positive
+3,106,72,0,0,25.8,0.207,27,tested_negative
+6,117,96,0,0,28.7,0.157,30,tested_negative
+2,68,62,13,15,20.1,0.257,23,tested_negative
+9,112,82,24,0,28.2,1.282,50,tested_positive
+0,119,0,0,0,32.4,0.141,24,tested_positive
+2,112,86,42,160,38.4,0.246,28,tested_negative
+2,92,76,20,0,24.2,1.698,28,tested_negative
+6,183,94,0,0,40.8,1.461,45,tested_negative
+0,94,70,27,115,43.5,0.347,21,tested_negative
+2,108,64,0,0,30.8,0.158,21,tested_negative
+4,90,88,47,54,37.7,0.362,29,tested_negative
+0,125,68,0,0,24.7,0.206,21,tested_negative
+0,132,78,0,0,32.4,0.393,21,tested_negative
+5,128,80,0,0,34.6,0.144,45,tested_negative
+4,94,65,22,0,24.7,0.148,21,tested_negative
+7,114,64,0,0,27.4,0.732,34,tested_positive
+0,102,78,40,90,34.5,0.238,24,tested_negative
+2,111,60,0,0,26.2,0.343,23,tested_negative
+1,128,82,17,183,27.5,0.115,22,tested_negative
+10,92,62,0,0,25.9,0.167,31,tested_negative
+13,104,72,0,0,31.2,0.465,38,tested_positive
+5,104,74,0,0,28.8,0.153,48,tested_negative
+2,94,76,18,66,31.6,0.649,23,tested_negative
+7,97,76,32,91,40.9,0.871,32,tested_positive
+1,100,74,12,46,19.5,0.149,28,tested_negative
+0,102,86,17,105,29.3,0.695,27,tested_negative
+4,128,70,0,0,34.3,0.303,24,tested_negative
+6,147,80,0,0,29.5,0.178,50,tested_positive
+4,90,0,0,0,28,0.61,31,tested_negative
+3,103,72,30,152,27.6,0.73,27,tested_negative
+2,157,74,35,440,39.4,0.134,30,tested_negative
+1,167,74,17,144,23.4,0.447,33,tested_positive
+0,179,50,36,159,37.8,0.455,22,tested_positive
+11,136,84,35,130,28.3,0.26,42,tested_positive
+0,107,60,25,0,26.4,0.133,23,tested_negative
+1,91,54,25,100,25.2,0.234,23,tested_negative
+1,117,60,23,106,33.8,0.466,27,tested_negative
+5,123,74,40,77,34.1,0.269,28,tested_negative
+2,120,54,0,0,26.8,0.455,27,tested_negative
+1,106,70,28,135,34.2,0.142,22,tested_negative
+2,155,52,27,540,38.7,0.24,25,tested_positive
+2,101,58,35,90,21.8,0.155,22,tested_negative
+1,120,80,48,200,38.9,1.162,41,tested_negative
+11,127,106,0,0,39,0.19,51,tested_negative
+3,80,82,31,70,34.2,1.292,27,tested_positive
+10,162,84,0,0,27.7,0.182,54,tested_negative
+1,199,76,43,0,42.9,1.394,22,tested_positive
+8,167,106,46,231,37.6,0.165,43,tested_positive
+9,145,80,46,130,37.9,0.637,40,tested_positive
+6,115,60,39,0,33.7,0.245,40,tested_positive
+1,112,80,45,132,34.8,0.217,24,tested_negative
+4,145,82,18,0,32.5,0.235,70,tested_positive
+10,111,70,27,0,27.5,0.141,40,tested_positive
+6,98,58,33,190,34,0.43,43,tested_negative
+9,154,78,30,100,30.9,0.164,45,tested_negative
+6,165,68,26,168,33.6,0.631,49,tested_negative
+1,99,58,10,0,25.4,0.551,21,tested_negative
+10,68,106,23,49,35.5,0.285,47,tested_negative
+3,123,100,35,240,57.3,0.88,22,tested_negative
+8,91,82,0,0,35.6,0.587,68,tested_negative
+6,195,70,0,0,30.9,0.328,31,tested_positive
+9,156,86,0,0,24.8,0.23,53,tested_positive
+0,93,60,0,0,35.3,0.263,25,tested_negative
+3,121,52,0,0,36,0.127,25,tested_positive
+2,101,58,17,265,24.2,0.614,23,tested_negative
+2,56,56,28,45,24.2,0.332,22,tested_negative
+0,162,76,36,0,49.6,0.364,26,tested_positive
+0,95,64,39,105,44.6,0.366,22,tested_negative
+4,125,80,0,0,32.3,0.536,27,tested_positive
+5,136,82,0,0,0,0.64,69,tested_negative
+2,129,74,26,205,33.2,0.591,25,tested_negative
+3,130,64,0,0,23.1,0.314,22,tested_negative
+1,107,50,19,0,28.3,0.181,29,tested_negative
+1,140,74,26,180,24.1,0.828,23,tested_negative
+1,144,82,46,180,46.1,0.335,46,tested_positive
+8,107,80,0,0,24.6,0.856,34,tested_negative
+13,158,114,0,0,42.3,0.257,44,tested_positive
+2,121,70,32,95,39.1,0.886,23,tested_negative
+7,129,68,49,125,38.5,0.439,43,tested_positive
+2,90,60,0,0,23.5,0.191,25,tested_negative
+7,142,90,24,480,30.4,0.128,43,tested_positive
+3,169,74,19,125,29.9,0.268,31,tested_positive
+0,99,0,0,0,25,0.253,22,tested_negative
+4,127,88,11,155,34.5,0.598,28,tested_negative
+4,118,70,0,0,44.5,0.904,26,tested_negative
+2,122,76,27,200,35.9,0.483,26,tested_negative
+6,125,78,31,0,27.6,0.565,49,tested_positive
+1,168,88,29,0,35,0.905,52,tested_positive
+2,129,0,0,0,38.5,0.304,41,tested_negative
+4,110,76,20,100,28.4,0.118,27,tested_negative
+6,80,80,36,0,39.8,0.177,28,tested_negative
+10,115,0,0,0,0,0.261,30,tested_positive
+2,127,46,21,335,34.4,0.176,22,tested_negative
+9,164,78,0,0,32.8,0.148,45,tested_positive
+2,93,64,32,160,38,0.674,23,tested_positive
+3,158,64,13,387,31.2,0.295,24,tested_negative
+5,126,78,27,22,29.6,0.439,40,tested_negative
+10,129,62,36,0,41.2,0.441,38,tested_positive
+0,134,58,20,291,26.4,0.352,21,tested_negative
+3,102,74,0,0,29.5,0.121,32,tested_negative
+7,187,50,33,392,33.9,0.826,34,tested_positive
+3,173,78,39,185,33.8,0.97,31,tested_positive
+10,94,72,18,0,23.1,0.595,56,tested_negative
+1,108,60,46,178,35.5,0.415,24,tested_negative
+5,97,76,27,0,35.6,0.378,52,tested_positive
+4,83,86,19,0,29.3,0.317,34,tested_negative
+1,114,66,36,200,38.1,0.289,21,tested_negative
+1,149,68,29,127,29.3,0.349,42,tested_positive
+5,117,86,30,105,39.1,0.251,42,tested_negative
+1,111,94,0,0,32.8,0.265,45,tested_negative
+4,112,78,40,0,39.4,0.236,38,tested_negative
+1,116,78,29,180,36.1,0.496,25,tested_negative
+0,141,84,26,0,32.4,0.433,22,tested_negative
+2,175,88,0,0,22.9,0.326,22,tested_negative
+2,92,52,0,0,30.1,0.141,22,tested_negative
+3,130,78,23,79,28.4,0.323,34,tested_positive
+8,120,86,0,0,28.4,0.259,22,tested_positive
+2,174,88,37,120,44.5,0.646,24,tested_positive
+2,106,56,27,165,29,0.426,22,tested_negative
+2,105,75,0,0,23.3,0.56,53,tested_negative
+4,95,60,32,0,35.4,0.284,28,tested_negative
+0,126,86,27,120,27.4,0.515,21,tested_negative
+8,65,72,23,0,32,0.6,42,tested_negative
+2,99,60,17,160,36.6,0.453,21,tested_negative
+1,102,74,0,0,39.5,0.293,42,tested_positive
+11,120,80,37,150,42.3,0.785,48,tested_positive
+3,102,44,20,94,30.8,0.4,26,tested_negative
+1,109,58,18,116,28.5,0.219,22,tested_negative
+9,140,94,0,0,32.7,0.734,45,tested_positive
+13,153,88,37,140,40.6,1.174,39,tested_negative
+12,100,84,33,105,30,0.488,46,tested_negative
+1,147,94,41,0,49.3,0.358,27,tested_positive
+1,81,74,41,57,46.3,1.096,32,tested_negative
+3,187,70,22,200,36.4,0.408,36,tested_positive
+6,162,62,0,0,24.3,0.178,50,tested_positive
+4,136,70,0,0,31.2,1.182,22,tested_positive
+1,121,78,39,74,39,0.261,28,tested_negative
+3,108,62,24,0,26,0.223,25,tested_negative
+0,181,88,44,510,43.3,0.222,26,tested_positive
+8,154,78,32,0,32.4,0.443,45,tested_positive
+1,128,88,39,110,36.5,1.057,37,tested_positive
+7,137,90,41,0,32,0.391,39,tested_negative
+0,123,72,0,0,36.3,0.258,52,tested_positive
+1,106,76,0,0,37.5,0.197,26,tested_negative
+6,190,92,0,0,35.5,0.278,66,tested_positive
+2,88,58,26,16,28.4,0.766,22,tested_negative
+9,170,74,31,0,44,0.403,43,tested_positive
+9,89,62,0,0,22.5,0.142,33,tested_negative
+10,101,76,48,180,32.9,0.171,63,tested_negative
+2,122,70,27,0,36.8,0.34,27,tested_negative
+5,121,72,23,112,26.2,0.245,30,tested_negative
+1,126,60,0,0,30.1,0.349,47,tested_positive
+1,93,70,31,0,30.4,0.315,23,tested_negative
diff --git a/arff/src/test/resources/weka-data/glass.arff b/arff/src/test/resources/weka-data/glass.arff
new file mode 100644
index 0000000..d7ecb6c
--- /dev/null
+++ b/arff/src/test/resources/weka-data/glass.arff
@@ -0,0 +1,332 @@
+% 1. Title: Glass Identification Database
+% 
+% 2. Sources:
+%     (a) Creator: B. German
+%         -- Central Research Establishment
+%            Home Office Forensic Science Service
+%            Aldermaston, Reading, Berkshire RG7 4PN
+%     (b) Donor: Vina Spiehler, Ph.D., DABFT
+%                Diagnostic Products Corporation
+%                (213) 776-0180 (ext 3014)
+%     (c) Date: September, 1987
+% 
+% 3. Past Usage:
+%     -- Rule Induction in Forensic Science
+%        -- Ian W. Evett and Ernest J. Spiehler
+%        -- Central Research Establishment
+%           Home Office Forensic Science Service
+%           Aldermaston, Reading, Berkshire RG7 4PN
+%        -- Unknown technical note number (sorry, not listed here)
+%        -- General Results: nearest neighbor held its own with respect to the
+%              rule-based system
+% 
+% 4. Relevant Information:n
+%       Vina conducted a comparison test of her rule-based system, BEAGLE, the
+%       nearest-neighbor algorithm, and discriminant analysis.  BEAGLE is 
+%       a product available through VRS Consulting, Inc.; 4676 Admiralty Way,
+%       Suite 206; Marina Del Ray, CA 90292 (213) 827-7890 and FAX: -3189.
+%       In determining whether the glass was a type of "float" glass or not,
+%       the following results were obtained (# incorrect answers):
+% 
+%              Type of Sample                            Beagle   NN    DA
+%              Windows that were float processed (87)     10      12    21
+%              Windows that were not:            (76)     19      16    22
+% 
+%       The study of classification of types of glass was motivated by 
+%       criminological investigation.  At the scene of the crime, the glass left
+%       can be used as evidence...if it is correctly identified!
+% 
+% 5. Number of Instances: 214
+% 
+% 6. Number of Attributes: 10 (including an Id#) plus the class attribute
+%    -- all attributes are continuously valued
+% 
+% 7. Attribute Information:
+%    1. Id number: 1 to 214
+%    2. RI: refractive index
+%    3. Na: Sodium (unit measurement: weight percent in corresponding oxide, as 
+%                   are attributes 4-10)
+%    4. Mg: Magnesium
+%    5. Al: Aluminum
+%    6. Si: Silicon
+%    7. K: Potassium
+%    8. Ca: Calcium
+%    9. Ba: Barium
+%   10. Fe: Iron
+%   11. Type of glass: (class attribute)
+%       -- 1 building_windows_float_processed
+%       -- 2 building_windows_non_float_processed
+%       -- 3 vehicle_windows_float_processed
+%       -- 4 vehicle_windows_non_float_processed (none in this database)
+%       -- 5 containers
+%       -- 6 tableware
+%       -- 7 headlamps
+% 
+% 8. Missing Attribute Values: None
+% 
+% Summary Statistics:
+% Attribute:   Min     Max      Mean     SD      Correlation with class
+%  2. RI:       1.5112  1.5339   1.5184  0.0030  -0.1642
+%  3. Na:      10.73   17.38    13.4079  0.8166   0.5030
+%  4. Mg:       0       4.49     2.6845  1.4424  -0.7447
+%  5. Al:       0.29    3.5      1.4449  0.4993   0.5988
+%  6. Si:      69.81   75.41    72.6509  0.7745   0.1515
+%  7. K:        0       6.21     0.4971  0.6522  -0.0100
+%  8. Ca:       5.43   16.19     8.9570  1.4232   0.0007
+%  9. Ba:       0       3.15     0.1750  0.4972   0.5751
+% 10. Fe:       0       0.51     0.0570  0.0974  -0.1879
+% 
+% 9. Class Distribution: (out of 214 total instances)
+%     -- 163 Window glass (building windows and vehicle windows)
+%        -- 87 float processed  
+%           -- 70 building windows
+%           -- 17 vehicle windows
+%        -- 76 non-float processed
+%           -- 76 building windows
+%           -- 0 vehicle windows
+%     -- 51 Non-window glass
+%        -- 13 containers
+%        -- 9 tableware
+%        -- 29 headlamps
+% 
+% 
+% 
+%
+%
+%
+%
+% Relabeled values in attribute 'Type'
+%    From: '1'                     To: 'build wind float'    
+%    From: '2'                     To: 'build wind non-float'
+%    From: '3'                     To: 'vehic wind float'    
+%    From: '4'                     To: 'vehic wind non-float'
+%    From: '5'                     To: containers          
+%    From: '6'                     To: tableware           
+%    From: '7'                     To: headlamps           
+%
+@relation Glass
+@attribute 'RI' numeric
+@attribute 'Na' numeric
+@attribute 'Mg' numeric
+@attribute 'Al' numeric
+@attribute 'Si' numeric
+@attribute 'K' numeric
+@attribute 'Ca' numeric
+@attribute 'Ba' numeric
+@attribute 'Fe' numeric
+@attribute 'Type' { 'build wind float', 'build wind non-float', 'vehic wind float', 'vehic wind non-float', containers, tableware, headlamps}
+@data
+1.51793,12.79,3.5,1.12,73.03,0.64,8.77,0,0,'build wind float'
+1.51643,12.16,3.52,1.35,72.89,0.57,8.53,0,0,'vehic wind float'
+1.51793,13.21,3.48,1.41,72.64,0.59,8.43,0,0,'build wind float'
+1.51299,14.4,1.74,1.54,74.55,0,7.59,0,0,tableware
+1.53393,12.3,0,1,70.16,0.12,16.19,0,0.24,'build wind non-float'
+1.51655,12.75,2.85,1.44,73.27,0.57,8.79,0.11,0.22,'build wind non-float'
+1.51779,13.64,3.65,0.65,73,0.06,8.93,0,0,'vehic wind float'
+1.51837,13.14,2.84,1.28,72.85,0.55,9.07,0,0,'build wind float'
+1.51545,14.14,0,2.68,73.39,0.08,9.07,0.61,0.05,headlamps
+1.51789,13.19,3.9,1.3,72.33,0.55,8.44,0,0.28,'build wind non-float'
+1.51625,13.36,3.58,1.49,72.72,0.45,8.21,0,0,'build wind non-float'
+1.51743,12.2,3.25,1.16,73.55,0.62,8.9,0,0.24,'build wind non-float'
+1.52223,13.21,3.77,0.79,71.99,0.13,10.02,0,0,'build wind float'
+1.52121,14.03,3.76,0.58,71.79,0.11,9.65,0,0,'vehic wind float'
+1.51665,13.14,3.45,1.76,72.48,0.6,8.38,0,0.17,'vehic wind float'
+1.51707,13.48,3.48,1.71,72.52,0.62,7.99,0,0,'build wind non-float'
+1.51719,14.75,0,2,73.02,0,8.53,1.59,0.08,headlamps
+1.51629,12.71,3.33,1.49,73.28,0.67,8.24,0,0,'build wind non-float'
+1.51994,13.27,0,1.76,73.03,0.47,11.32,0,0,containers
+1.51811,12.96,2.96,1.43,72.92,0.6,8.79,0.14,0,'build wind non-float'
+1.52152,13.05,3.65,0.87,72.22,0.19,9.85,0,0.17,'build wind float'
+1.52475,11.45,0,1.88,72.19,0.81,13.24,0,0.34,'build wind non-float'
+1.51841,12.93,3.74,1.11,72.28,0.64,8.96,0,0.22,'build wind non-float'
+1.51754,13.39,3.66,1.19,72.79,0.57,8.27,0,0.11,'build wind float'
+1.52058,12.85,1.61,2.17,72.18,0.76,9.7,0.24,0.51,containers
+1.51569,13.24,3.49,1.47,73.25,0.38,8.03,0,0,'build wind non-float'
+1.5159,12.82,3.52,1.9,72.86,0.69,7.97,0,0,'build wind non-float'
+1.51683,14.56,0,1.98,73.29,0,8.52,1.57,0.07,headlamps
+1.51687,13.23,3.54,1.48,72.84,0.56,8.1,0,0,'build wind non-float'
+1.5161,13.33,3.53,1.34,72.67,0.56,8.33,0,0,'vehic wind float'
+1.51674,12.87,3.56,1.64,73.14,0.65,7.99,0,0,'build wind non-float'
+1.51832,13.33,3.34,1.54,72.14,0.56,8.99,0,0,'vehic wind float'
+1.51115,17.38,0,0.34,75.41,0,6.65,0,0,tableware
+1.51645,13.44,3.61,1.54,72.39,0.66,8.03,0,0,'build wind non-float'
+1.51755,13,3.6,1.36,72.99,0.57,8.4,0,0.11,'build wind float'
+1.51571,12.72,3.46,1.56,73.2,0.67,8.09,0,0.24,'build wind float'
+1.51596,12.79,3.61,1.62,72.97,0.64,8.07,0,0.26,'build wind float'
+1.5173,12.35,2.72,1.63,72.87,0.7,9.23,0,0,'build wind non-float'
+1.51662,12.85,3.51,1.44,73.01,0.68,8.23,0.06,0.25,'build wind non-float'
+1.51409,14.25,3.09,2.08,72.28,1.1,7.08,0,0,'build wind non-float'
+1.51797,12.74,3.48,1.35,72.96,0.64,8.68,0,0,'build wind float'
+1.51806,13,3.8,1.08,73.07,0.56,8.38,0,0.12,'build wind non-float'
+1.51627,13,3.58,1.54,72.83,0.61,8.04,0,0,'build wind non-float'
+1.5159,13.24,3.34,1.47,73.1,0.39,8.22,0,0,'build wind non-float'
+1.51934,13.64,3.54,0.75,72.65,0.16,8.89,0.15,0.24,'vehic wind float'
+1.51755,12.71,3.42,1.2,73.2,0.59,8.64,0,0,'build wind float'
+1.51514,14.01,2.68,3.5,69.89,1.68,5.87,2.2,0,containers
+1.51766,13.21,3.69,1.29,72.61,0.57,8.22,0,0,'build wind float'
+1.51784,13.08,3.49,1.28,72.86,0.6,8.49,0,0,'build wind float'
+1.52177,13.2,3.68,1.15,72.75,0.54,8.52,0,0,'build wind non-float'
+1.51753,12.57,3.47,1.38,73.39,0.6,8.55,0,0.06,'build wind float'
+1.51851,13.2,3.63,1.07,72.83,0.57,8.41,0.09,0.17,'build wind non-float'
+1.51743,13.3,3.6,1.14,73.09,0.58,8.17,0,0,'build wind float'
+1.51593,13.09,3.59,1.52,73.1,0.67,7.83,0,0,'build wind non-float'
+1.5164,14.37,0,2.74,72.85,0,9.45,0.54,0,headlamps
+1.51735,13.02,3.54,1.69,72.73,0.54,8.44,0,0.07,'build wind float'
+1.52247,14.86,2.2,2.06,70.26,0.76,9.76,0,0,headlamps
+1.52099,13.69,3.59,1.12,71.96,0.09,9.4,0,0,'build wind float'
+1.51769,13.65,3.66,1.11,72.77,0.11,8.6,0,0,'vehic wind float'
+1.51846,13.41,3.89,1.33,72.38,0.51,8.28,0,0,'build wind non-float'
+1.51848,13.64,3.87,1.27,71.96,0.54,8.32,0,0.32,'build wind non-float'
+1.51905,13.6,3.62,1.11,72.64,0.14,8.76,0,0,'build wind float'
+1.51567,13.29,3.45,1.21,72.74,0.56,8.57,0,0,'build wind float'
+1.52213,14.21,3.82,0.47,71.77,0.11,9.57,0,0,'build wind float'
+1.5232,13.72,3.72,0.51,71.75,0.09,10.06,0,0.16,'build wind float'
+1.51556,13.87,0,2.54,73.23,0.14,9.41,0.81,0.01,headlamps
+1.51926,13.2,3.33,1.28,72.36,0.6,9.14,0,0.11,'build wind float'
+1.52211,14.19,3.78,0.91,71.36,0.23,9.14,0,0.37,'vehic wind float'
+1.53125,10.73,0,2.1,69.81,0.58,13.3,3.15,0.28,'build wind non-float'
+1.52152,13.05,3.65,0.87,72.32,0.19,9.85,0,0.17,'build wind float'
+1.51829,14.46,2.24,1.62,72.38,0,9.26,0,0,tableware
+1.51892,13.46,3.83,1.26,72.55,0.57,8.21,0,0.14,'build wind non-float'
+1.51888,14.99,0.78,1.74,72.5,0,9.95,0,0,tableware
+1.51829,13.24,3.9,1.41,72.33,0.55,8.31,0,0.1,'build wind non-float'
+1.523,13.31,3.58,0.82,71.99,0.12,10.17,0,0.03,'build wind float'
+1.51652,13.56,3.57,1.47,72.45,0.64,7.96,0,0,'build wind non-float'
+1.51768,12.56,3.52,1.43,73.15,0.57,8.54,0,0,'build wind float'
+1.51215,12.99,3.47,1.12,72.98,0.62,8.35,0,0.31,'build wind float'
+1.51646,13.04,3.4,1.26,73.01,0.52,8.58,0,0,'vehic wind float'
+1.51721,12.87,3.48,1.33,73.04,0.56,8.43,0,0,'build wind float'
+1.51763,12.8,3.66,1.27,73.01,0.6,8.56,0,0,'build wind float'
+1.51742,13.27,3.62,1.24,73.08,0.55,8.07,0,0,'build wind float'
+1.52127,14.32,3.9,0.83,71.5,0,9.49,0,0,'vehic wind float'
+1.51779,13.21,3.39,1.33,72.76,0.59,8.59,0,0,'build wind float'
+1.52171,11.56,1.88,1.56,72.86,0.47,11.41,0,0,containers
+1.518,13.71,3.93,1.54,71.81,0.54,8.21,0,0.15,'build wind non-float'
+1.52777,12.64,0,0.67,72.02,0.06,14.4,0,0,'build wind non-float'
+1.5175,12.82,3.55,1.49,72.75,0.54,8.52,0,0.19,'build wind float'
+1.51764,12.98,3.54,1.21,73,0.65,8.53,0,0,'build wind float'
+1.52177,13.75,1.01,1.36,72.19,0.33,11.14,0,0,'build wind non-float'
+1.51645,14.94,0,1.87,73.11,0,8.67,1.38,0,headlamps
+1.51786,12.73,3.43,1.19,72.95,0.62,8.76,0,0.3,'build wind float'
+1.52152,13.12,3.58,0.9,72.2,0.23,9.82,0,0.16,'build wind float'
+1.51937,13.79,2.41,1.19,72.76,0,9.77,0,0,tableware
+1.51514,14.85,0,2.42,73.72,0,8.39,0.56,0,headlamps
+1.52172,13.48,3.74,0.9,72.01,0.18,9.61,0,0.07,'build wind float'
+1.51732,14.95,0,1.8,72.99,0,8.61,1.55,0,headlamps
+1.5202,13.98,1.35,1.63,71.76,0.39,10.56,0,0.18,'build wind non-float'
+1.51605,12.9,3.44,1.45,73.06,0.44,8.27,0,0,'build wind non-float'
+1.51847,13.1,3.97,1.19,72.44,0.6,8.43,0,0,'build wind non-float'
+1.51761,13.89,3.6,1.36,72.73,0.48,7.83,0,0,'build wind float'
+1.51673,13.3,3.64,1.53,72.53,0.65,8.03,0,0.29,'build wind non-float'
+1.52365,15.79,1.83,1.31,70.43,0.31,8.61,1.68,0,headlamps
+1.51685,14.92,0,1.99,73.06,0,8.4,1.59,0,headlamps
+1.51658,14.8,0,1.99,73.11,0,8.28,1.71,0,headlamps
+1.51316,13.02,0,3.04,70.48,6.21,6.96,0,0,containers
+1.51709,13,3.47,1.79,72.72,0.66,8.18,0,0,'build wind non-float'
+1.51727,14.7,0,2.34,73.28,0,8.95,0.66,0,headlamps
+1.51898,13.58,3.35,1.23,72.08,0.59,8.91,0,0,'build wind float'
+1.51969,12.64,0,1.65,73.75,0.38,11.53,0,0,containers
+1.5182,12.62,2.76,0.83,73.81,0.35,9.42,0,0.2,'build wind non-float'
+1.51617,14.95,0,2.27,73.3,0,8.71,0.67,0,headlamps
+1.51911,13.9,3.73,1.18,72.12,0.06,8.89,0,0,'build wind float'
+1.51651,14.38,0,1.94,73.61,0,8.48,1.57,0,headlamps
+1.51694,12.86,3.58,1.31,72.61,0.61,8.79,0,0,'vehic wind float'
+1.52315,13.44,3.34,1.23,72.38,0.6,8.83,0,0,headlamps
+1.52068,13.55,2.09,1.67,72.18,0.53,9.57,0.27,0.17,'build wind non-float'
+1.51838,14.32,3.26,2.22,71.25,1.46,5.79,1.63,0,headlamps
+1.51818,13.72,0,0.56,74.45,0,10.99,0,0,'build wind non-float'
+1.51769,12.45,2.71,1.29,73.7,0.56,9.06,0,0.24,'build wind float'
+1.5166,12.99,3.18,1.23,72.97,0.58,8.81,0,0.24,'build wind non-float'
+1.51589,12.88,3.43,1.4,73.28,0.69,8.05,0,0.24,'build wind float'
+1.5241,13.83,2.9,1.17,71.15,0.08,10.79,0,0,'build wind non-float'
+1.52725,13.8,3.15,0.66,70.57,0.08,11.64,0,0,'build wind non-float'
+1.52119,12.97,0.33,1.51,73.39,0.13,11.27,0,0.28,containers
+1.51748,12.86,3.56,1.27,73.21,0.54,8.38,0,0.17,'build wind float'
+1.51653,11.95,0,1.19,75.18,2.7,8.93,0,0,headlamps
+1.51623,14.14,0,2.88,72.61,0.08,9.18,1.06,0,headlamps
+1.52101,13.64,4.49,1.1,71.78,0.06,8.75,0,0,'build wind float'
+1.51763,12.61,3.59,1.31,73.29,0.58,8.5,0,0,'build wind float'
+1.51596,13.02,3.56,1.54,73.11,0.72,7.9,0,0,'build wind non-float'
+1.51674,12.79,3.52,1.54,73.36,0.66,7.9,0,0,'build wind non-float'
+1.52065,14.36,0,2.02,73.42,0,8.44,1.64,0,headlamps
+1.51768,12.65,3.56,1.3,73.08,0.61,8.69,0,0.14,'build wind float'
+1.52369,13.44,0,1.58,72.22,0.32,12.24,0,0,containers
+1.51756,13.15,3.61,1.05,73.24,0.57,8.24,0,0,'build wind float'
+1.51754,13.48,3.74,1.17,72.99,0.59,8.03,0,0,'build wind float'
+1.51711,12.89,3.62,1.57,72.96,0.61,8.11,0,0,'build wind non-float'
+1.5221,13.73,3.84,0.72,71.76,0.17,9.74,0,0,'build wind float'
+1.51594,13.09,3.52,1.55,72.87,0.68,8.05,0,0.09,'build wind non-float'
+1.51784,12.68,3.67,1.16,73.11,0.61,8.7,0,0,'build wind float'
+1.51909,13.89,3.53,1.32,71.81,0.51,8.78,0.11,0,'build wind float'
+1.51977,13.81,3.58,1.32,71.72,0.12,8.67,0.69,0,'build wind float'
+1.51666,12.86,0,1.83,73.88,0.97,10.17,0,0,containers
+1.51631,13.34,3.57,1.57,72.87,0.61,7.89,0,0,'build wind non-float'
+1.51872,12.93,3.66,1.56,72.51,0.58,8.55,0,0.12,'build wind non-float'
+1.51708,13.72,3.68,1.81,72.06,0.64,7.88,0,0,'build wind non-float'
+1.52081,13.78,2.28,1.43,71.99,0.49,9.85,0,0.17,'build wind non-float'
+1.51574,14.86,3.67,1.74,71.87,0.16,7.36,0,0.12,'build wind non-float'
+1.51813,13.43,3.98,1.18,72.49,0.58,8.15,0,0,'build wind non-float'
+1.51131,13.69,3.2,1.81,72.81,1.76,5.43,1.19,0,headlamps
+1.52227,14.17,3.81,0.78,71.35,0,9.69,0,0,'build wind float'
+1.52614,13.7,0,1.36,71.24,0.19,13.44,0,0.1,'build wind non-float'
+1.51811,13.33,3.85,1.25,72.78,0.52,8.12,0,0,'build wind non-float'
+1.51655,13.41,3.39,1.28,72.64,0.52,8.65,0,0,'vehic wind float'
+1.51751,12.81,3.57,1.35,73.02,0.62,8.59,0,0,'build wind float'
+1.51508,15.15,0,2.25,73.5,0,8.34,0.63,0,headlamps
+1.51915,12.73,1.85,1.86,72.69,0.6,10.09,0,0,containers
+1.51966,14.77,3.75,0.29,72.02,0.03,9,0,0,'build wind float'
+1.51844,13.25,3.76,1.32,72.4,0.58,8.42,0,0,'build wind non-float'
+1.52664,11.23,0,0.77,73.21,0,14.68,0,0,'build wind non-float'
+1.52172,13.51,3.86,0.88,71.79,0.23,9.54,0,0.11,'build wind float'
+1.51602,14.85,0,2.38,73.28,0,8.76,0.64,0.09,headlamps
+1.51321,13,0,3.02,70.7,6.21,6.93,0,0,containers
+1.52739,11.02,0,0.75,73.08,0,14.96,0,0,'build wind non-float'
+1.52213,14.21,3.82,0.47,71.77,0.11,9.57,0,0,'build wind float'
+1.51747,12.84,3.5,1.14,73.27,0.56,8.55,0,0,'build wind float'
+1.51839,12.85,3.67,1.24,72.57,0.62,8.68,0,0.35,'build wind non-float'
+1.51646,13.41,3.55,1.25,72.81,0.68,8.1,0,0,'build wind non-float'
+1.51609,15.01,0,2.51,73.05,0.05,8.83,0.53,0,headlamps
+1.51667,12.94,3.61,1.26,72.75,0.56,8.6,0,0,'build wind non-float'
+1.51588,13.12,3.41,1.58,73.26,0.07,8.39,0,0.19,'build wind non-float'
+1.52667,13.99,3.7,0.71,71.57,0.02,9.82,0,0.1,'build wind float'
+1.51831,14.39,0,1.82,72.86,1.41,6.47,2.88,0,headlamps
+1.51918,14.04,3.58,1.37,72.08,0.56,8.3,0,0,'build wind float'
+1.51613,13.88,1.78,1.79,73.1,0,8.67,0.76,0,headlamps
+1.52196,14.36,3.85,0.89,71.36,0.15,9.15,0,0,'build wind float'
+1.51824,12.87,3.48,1.29,72.95,0.6,8.43,0,0,'build wind float'
+1.52151,11.03,1.71,1.56,73.44,0.58,11.62,0,0,containers
+1.51969,14.56,0,0.56,73.48,0,11.22,0,0,tableware
+1.51618,13.01,3.5,1.48,72.89,0.6,8.12,0,0,'build wind non-float'
+1.51645,13.4,3.49,1.52,72.65,0.67,8.08,0,0.1,'build wind non-float'
+1.51796,13.5,3.36,1.63,71.94,0.57,8.81,0,0.09,'vehic wind float'
+1.52222,14.43,0,1,72.67,0.1,11.52,0,0.08,'build wind non-float'
+1.51783,12.69,3.54,1.34,72.95,0.57,8.75,0,0,'build wind float'
+1.51711,14.23,0,2.08,73.36,0,8.62,1.67,0,headlamps
+1.51736,12.78,3.62,1.29,72.79,0.59,8.7,0,0,'build wind float'
+1.51808,13.43,2.87,1.19,72.84,0.55,9.03,0,0,'build wind float'
+1.5167,13.24,3.57,1.38,72.7,0.56,8.44,0,0.1,'vehic wind float'
+1.52043,13.38,0,1.4,72.25,0.33,12.5,0,0,containers
+1.519,13.49,3.48,1.35,71.95,0.55,9,0,0,'build wind float'
+1.51778,13.21,2.81,1.29,72.98,0.51,9.02,0,0.09,'build wind float'
+1.51905,14,2.39,1.56,72.37,0,9.57,0,0,tableware
+1.51531,14.38,0,2.66,73.1,0.04,9.08,0.64,0,headlamps
+1.51916,14.15,0,2.09,72.74,0,10.88,0,0,tableware
+1.51841,13.02,3.62,1.06,72.34,0.64,9.13,0,0.15,'build wind non-float'
+1.5159,13.02,3.58,1.51,73.12,0.69,7.96,0,0,'build wind non-float'
+1.51593,13.25,3.45,1.43,73.17,0.61,7.86,0,0,'build wind non-float'
+1.5164,12.55,3.48,1.87,73.23,0.63,8.08,0,0.09,'build wind non-float'
+1.51663,12.93,3.54,1.62,72.96,0.64,8.03,0,0.21,'build wind non-float'
+1.5169,13.33,3.54,1.61,72.54,0.68,8.11,0,0,'build wind non-float'
+1.51869,13.19,3.37,1.18,72.72,0.57,8.83,0,0.16,'build wind float'
+1.51776,13.53,3.41,1.52,72.04,0.58,8.79,0,0,'vehic wind float'
+1.51775,12.85,3.48,1.23,72.97,0.61,8.56,0.09,0.22,'build wind float'
+1.5186,13.36,3.43,1.43,72.26,0.51,8.6,0,0,'build wind non-float'
+1.5172,13.38,3.5,1.15,72.85,0.5,8.43,0,0,'build wind float'
+1.51623,14.2,0,2.79,73.46,0.04,9.04,0.4,0.09,headlamps
+1.51618,13.53,3.55,1.54,72.99,0.39,7.78,0,0,'build wind float'
+1.51761,12.81,3.54,1.23,73.24,0.58,8.39,0,0,'build wind float'
+1.5161,13.42,3.4,1.22,72.69,0.59,8.32,0,0,'vehic wind float'
+1.51592,12.86,3.52,2.12,72.66,0.69,7.97,0,0,'build wind non-float'
+1.51613,13.92,3.52,1.25,72.88,0.37,7.94,0,0.14,'build wind non-float'
+1.51689,12.67,2.88,1.71,73.21,0.73,8.54,0,0,'build wind non-float'
+1.51852,14.09,2.19,1.66,72.67,0,9.32,0,0,tableware
diff --git a/arff/src/test/resources/weka-data/hypothyroid.arff b/arff/src/test/resources/weka-data/hypothyroid.arff
new file mode 100644
index 0000000..3c05fb4
--- /dev/null
+++ b/arff/src/test/resources/weka-data/hypothyroid.arff
@@ -0,0 +1,3887 @@
+% ;
+% ; Thyroid disease records supplied by the Garavan Institute and J. Ross
+% ; Quinlan, New South Wales Institute, Syndney, Australia.
+% ;
+% ; 1987.
+% ;
+% 
+% hypothyroid, primary hypothyroid, compensated hypothyroid,
+% secondary hypothyroid,
+% negative.			|  classes
+% 
+% age:				continuous.
+% sex:				M, F.
+% on thyroxine:			f, t.
+% query on thyroxine:		f, t.
+% on antithyroid medication:	f, t.
+% sick:				f, t.
+% pregnant:			f, t.
+% thyroid surgery:		f, t.
+% I131 treatment:			f, t.
+% query hypothyroid:		f, t.
+% query hyperthyroid:		f, t.
+% lithium:			f, t.
+% goitre:				f, t.
+% tumor:				f, t.
+% hypopituitary:			f, t.
+% psych:				f, t.
+% TSH measured:			f, t.
+% TSH:				continuous.
+% T3 measured:			f, t.
+% T3:				continuous.
+% TT4 measured:			f, t.
+% TT4:				continuous.
+% T4U measured:			f, t.
+% T4U:				continuous.
+% FTI measured:			f, t.
+% FTI:				continuous.
+% TBG measured:			f, t.
+% TBG:				continuous.
+% referral source:		WEST, STMW, SVHC, SVI, SVHD, other.
+%
+%
+% Num Instances:     3772
+% Num Attributes:    30
+% Num Continuous:    7 (Int 1 / Real 6)
+% Num Discrete:      23
+% Missing values:    6064 /  5.4%
+%
+%     name                      type enum ints real     missing    distinct  (1)
+%   1 'age'                     Int    0% 100%   0%     1 /  0%    93 /  2%   0% 
+%   2 'sex'                     Enum  96%   0%   0%   150 /  4%     2 /  0%   0% 
+%   3 'on thyroxine'            Enum 100%   0%   0%     0 /  0%     2 /  0%   0% 
+%   4 'query on thyroxine'      Enum 100%   0%   0%     0 /  0%     2 /  0%   0% 
+%   5 'on antithyroid medicati  Enum 100%   0%   0%     0 /  0%     2 /  0%   0% 
+%   6 'sick'                    Enum 100%   0%   0%     0 /  0%     2 /  0%   0% 
+%   7 'pregnant'                Enum 100%   0%   0%     0 /  0%     2 /  0%   0% 
+%   8 'thyroid surgery'         Enum 100%   0%   0%     0 /  0%     2 /  0%   0% 
+%   9 'I131 treatment'          Enum 100%   0%   0%     0 /  0%     2 /  0%   0% 
+%  10 'query hypothyroid'       Enum 100%   0%   0%     0 /  0%     2 /  0%   0% 
+%  11 'query hyperthyroid'      Enum 100%   0%   0%     0 /  0%     2 /  0%   0% 
+%  12 'lithium'                 Enum 100%   0%   0%     0 /  0%     2 /  0%   0% 
+%  13 'goitre'                  Enum 100%   0%   0%     0 /  0%     2 /  0%   0% 
+%  14 'tumor'                   Enum 100%   0%   0%     0 /  0%     2 /  0%   0% 
+%  15 'hypopituitary'           Enum 100%   0%   0%     0 /  0%     2 /  0%   0% 
+%  16 'psych'                   Enum 100%   0%   0%     0 /  0%     2 /  0%   0% 
+%  17 'TSH measured'            Enum 100%   0%   0%     0 /  0%     2 /  0%   0% 
+%  18 'TSH'                     Real   0%  11%  79%   369 / 10%   287 /  8%   2% 
+%  19 'T3 measured'             Enum 100%   0%   0%     0 /  0%     2 /  0%   0% 
+%  20 'T3'                      Real   0%   9%  71%   769 / 20%    69 /  2%   0% 
+%  21 'TT4 measured'            Enum 100%   0%   0%     0 /  0%     2 /  0%   0% 
+%  22 'TT4'                     Real   0%  94%   0%   231 /  6%   241 /  6%   1% 
+%  23 'T4U measured'            Enum 100%   0%   0%     0 /  0%     2 /  0%   0% 
+%  24 'T4U'                     Real   0%   2%  87%   387 / 10%   146 /  4%   1% 
+%  25 'FTI measured'            Enum 100%   0%   0%     0 /  0%     2 /  0%   0% 
+%  26 'FTI'                     Real   0%  90%   0%   385 / 10%   234 /  6%   2% 
+%  27 'TBG measured'            Enum 100%   0%   0%     0 /  0%     1 /  0%   0% 
+%  28 'TBG'                     Real   0%   0%   0%  3772 /100%     0 /  0%   0% 
+%  29 'referral source'         Enum 100%   0%   0%     0 /  0%     5 /  0%   0% 
+%  30 'Class'                   Enum 100%   0%   0%     0 /  0%     4 /  0%   0% 
+%
+@relation hypothyroid
+@attribute 'age' integer
+@attribute 'sex' { F, M}
+@attribute 'on thyroxine' { f, t}
+@attribute 'query on thyroxine' { f, t}
+@attribute 'on antithyroid medication' { f, t}
+@attribute 'sick' { f, t}
+@attribute 'pregnant' { f, t}
+@attribute 'thyroid surgery' { f, t}
+@attribute 'I131 treatment' { f, t}
+@attribute 'query hypothyroid' { f, t}
+@attribute 'query hyperthyroid' { f, t}
+@attribute 'lithium' { f, t}
+@attribute 'goitre' { f, t}
+@attribute 'tumor' { f, t}
+@attribute 'hypopituitary' { f, t}
+@attribute 'psych' { f, t}
+@attribute 'TSH measured' { t, f}
+@attribute 'TSH' real
+@attribute 'T3 measured' { t, f}
+@attribute 'T3' real
+@attribute 'TT4 measured' { t, f}
+@attribute 'TT4' real
+@attribute 'T4U measured' { t, f}
+@attribute 'T4U' real
+@attribute 'FTI measured' { t, f}
+@attribute 'FTI' real
+@attribute 'TBG measured' { f}
+@attribute 'TBG' real
+@attribute 'referral source' { SVHC, other, SVI, STMW, SVHD}
+@attribute 'Class' { negative, compensated_hypothyroid, primary_hypothyroid, secondary_hypothyroid}
+@data
+41,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.3,t,2.5,t,125,t,1.14,t,109,f,?,SVHC,negative
+23,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,4.1,t,2,t,102,f,?,f,?,f,?,other,negative
+46,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.98,f,?,t,109,t,0.91,t,120,f,?,other,negative
+70,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.16,t,1.9,t,175,f,?,f,?,f,?,other,negative
+70,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.72,t,1.2,t,61,t,0.87,t,70,f,?,SVI,negative
+18,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.03,f,?,t,183,t,1.3,t,141,f,?,other,negative
+59,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,t,72,t,0.92,t,78,f,?,other,negative
+80,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.2,t,0.6,t,80,t,0.7,t,115,f,?,SVI,negative
+66,F,f,f,f,f,f,f,f,f,f,f,f,t,f,f,t,0.6,t,2.2,t,123,t,0.93,t,132,f,?,SVI,negative
+68,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.4,t,1.6,t,83,t,0.89,t,93,f,?,SVI,negative
+84,F,f,f,f,f,f,f,f,f,f,f,f,t,f,f,t,1.1,t,2.2,t,115,t,0.95,t,121,f,?,SVI,negative
+67,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.03,f,?,t,152,t,0.99,t,153,f,?,other,negative
+71,F,f,f,f,t,f,f,f,f,t,f,f,f,f,f,t,0.03,t,3.8,t,171,t,1.13,t,151,f,?,other,negative
+59,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.8,t,1.7,t,97,t,0.91,t,107,f,?,SVI,negative
+28,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.3,t,1.8,t,109,t,0.91,t,119,f,?,SVHC,negative
+65,F,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,12,f,?,t,99,t,1.14,t,87,f,?,other,compensated_hypothyroid
+42,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.2,t,1.8,t,70,t,0.86,t,81,f,?,other,negative
+63,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.5,t,1.2,t,117,t,0.96,t,121,f,?,SVI,negative
+80,F,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,6,t,1.6,t,99,t,0.95,t,104,f,?,SVI,negative
+28,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,2.1,t,2.6,t,121,t,0.94,t,130,f,?,SVHC,negative
+51,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.1,f,?,t,130,t,0.86,t,151,f,?,other,negative
+46,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.8,t,2.1,t,108,t,0.91,t,119,f,?,other,negative
+81,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.9,t,0.3,t,102,t,0.96,t,106,f,?,SVI,negative
+54,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.1,f,?,t,104,t,0.9,t,116,f,?,other,negative
+55,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.2,t,1.8,t,134,t,1.02,t,131,f,?,SVI,negative
+63,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.03,t,5.5,t,199,t,1.05,t,190,f,?,other,negative
+60,M,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,13,t,1.4,t,57,t,0.62,t,92,f,?,other,negative
+25,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.3,t,3.1,t,129,f,?,f,?,f,?,other,negative
+73,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.9,t,1.5,t,113,t,1.06,t,106,f,?,SVI,negative
+67,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,t,97,t,0.95,t,102,f,?,other,negative
+34,F,f,f,f,f,t,f,f,f,t,f,f,f,f,f,t,0.035,t,2.5,t,119,t,1.55,t,76,f,?,other,negative
+70,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.5,t,2.3,t,84,t,0.92,t,92,f,?,other,negative
+78,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.5,t,1.9,t,81,t,0.83,t,98,f,?,SVI,negative
+37,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.7,t,1.9,t,95,t,1.05,t,90,f,?,SVI,negative
+85,F,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,7.3,t,2.4,t,66,t,1.09,t,61,f,?,other,negative
+25,F,f,f,f,f,f,f,f,f,f,f,f,t,f,f,t,1.1,f,?,t,101,t,1.07,t,94,f,?,other,negative
+26,F,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,1.8,t,2.5,t,147,t,1.13,t,129,f,?,SVHC,negative
+58,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.26,t,2.7,t,120,t,1.27,t,95,f,?,other,negative
+51,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.8,f,?,t,69,t,0.76,t,91,f,?,other,negative
+64,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+44,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,45,t,1.4,t,39,t,1.16,t,33,f,?,SVI,primary_hypothyroid
+48,M,f,t,f,f,f,f,f,f,t,f,f,f,f,f,t,5.4,t,1.9,t,87,t,1,t,87,f,?,other,negative
+61,F,f,f,f,f,f,f,f,f,f,f,t,f,f,f,t,0.99,t,1.5,t,63,t,0.56,t,113,f,?,SVI,negative
+35,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.25,t,2,t,121,t,0.81,t,148,f,?,other,negative
+70,F,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,1.1,t,1.7,t,95,t,0.68,t,140,f,?,SVI,negative
+81,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.2,t,2.2,t,133,t,0.78,t,171,f,?,other,negative
+83,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.92,t,0.9,t,86,t,0.76,t,113,f,?,SVI,negative
+21,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,t,1.8,t,163,t,1.05,t,155,f,?,other,negative
+87,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.15,t,1.7,t,162,t,0.87,t,186,f,?,SVI,negative
+78,F,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,0.64,t,1.7,t,113,t,0.99,t,115,f,?,SVI,negative
+64,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.035,t,1,t,103,t,0.85,t,122,f,?,SVI,negative
+64,F,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,1,t,1.7,t,96,t,0.9,t,107,f,?,SVI,negative
+68,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.4,t,2.2,t,117,t,0.86,t,136,f,?,SVI,negative
+44,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.5,t,1.6,t,119,t,1.09,t,110,f,?,other,negative
+53,F,f,f,f,f,f,f,f,f,f,f,f,t,f,f,f,?,t,2.8,f,?,f,?,f,?,f,?,SVI,negative
+77,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2,t,2.9,t,151,t,1.35,t,111,f,?,other,negative
+27,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.6,f,?,t,112,t,1.15,t,97,f,?,other,negative
+65,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,14.8,t,1.5,t,61,t,0.85,t,72,f,?,SVI,compensated_hypothyroid
+27,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,15,t,1.6,t,82,t,0.82,t,100,f,?,SVI,compensated_hypothyroid
+54,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,19,t,2.2,t,83,t,1.03,t,81,f,?,SVHC,compensated_hypothyroid
+69,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.8,t,2.3,t,97,t,0.89,t,109,f,?,SVI,negative
+42,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.02,t,2.6,t,138,t,1.58,t,88,f,?,STMW,negative
+87,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3,t,1.6,t,71,t,1.06,t,67,f,?,other,negative
+74,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1,t,2.1,t,77,t,0.91,t,84,f,?,SVI,negative
+38,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.9,t,1.8,t,93,t,0.95,t,98,f,?,other,negative
+66,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.3,t,1.7,t,86,t,0.91,t,94,f,?,other,negative
+69,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+76,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.2,t,0.8,t,101,t,0.99,t,103,f,?,SVHC,negative
+44,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.2,t,1.5,t,107,t,0.79,t,135,f,?,other,negative
+45,?,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,9,t,2.8,t,237,t,1.17,t,203,f,?,STMW,negative
+36,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,t,2,t,96,t,0.86,t,112,f,?,other,negative
+22,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.3,f,?,t,110,t,0.94,t,117,f,?,other,negative
+59,F,f,f,f,t,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+37,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.6,f,?,t,67,t,0.71,t,95,f,?,other,negative
+65,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,4.3,f,?,t,88,t,0.72,t,122,f,?,SVI,negative
+70,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.005,t,2.6,t,160,t,0.88,t,180,f,?,other,negative
+69,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.31,f,?,t,118,t,0.83,t,142,f,?,other,negative
+66,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.5,t,1.9,t,80,t,0.85,t,94,f,?,SVHC,negative
+61,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.61,t,1.6,t,103,t,0.93,t,111,f,?,SVI,negative
+44,M,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,2,t,1.3,t,136,t,0.94,t,145,f,?,SVHD,negative
+43,M,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.05,f,?,t,160,t,1.03,t,156,f,?,other,negative
+72,F,f,t,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,t,114,t,1.11,t,102,f,?,other,negative
+82,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.9,t,2.9,t,116,t,1.2,t,97,f,?,SVHC,negative
+72,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,4.1,t,1.6,t,94,t,0.92,t,102,f,?,other,negative
+71,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.8,t,2.3,t,133,t,1.1,t,121,f,?,SVI,negative
+34,?,f,f,f,f,f,f,f,f,f,f,f,t,f,f,t,7.8,t,2,t,95,t,0.99,t,96,f,?,STMW,compensated_hypothyroid
+31,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.3,f,?,t,161,t,1.33,t,121,f,?,other,negative
+58,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.25,t,2.4,t,102,t,0.77,t,134,f,?,other,negative
+39,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,160,t,0.4,t,11,t,1.24,t,8.9,f,?,other,primary_hypothyroid
+49,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.1,t,0.3,t,32,t,0.53,t,60,f,?,SVI,negative
+63,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.025,t,1.6,t,124,t,0.89,t,139,f,?,other,negative
+80,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2,t,1.2,t,39,t,0.95,t,41,f,?,SVI,negative
+26,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+23,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.3,t,2.2,t,103,t,1.35,t,76,f,?,other,negative
+39,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,0.25,t,2.9,t,136,t,1.44,t,94,f,?,other,negative
+26,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2,f,?,t,137,t,1.63,t,84,f,?,other,negative
+59,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.5,f,?,t,92,t,0.93,t,99,f,?,SVI,negative
+39,F,f,f,t,f,f,f,f,f,f,f,f,f,f,f,t,4.3,t,2.4,t,135,t,1.51,t,89,f,?,other,negative
+69,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.4,f,?,t,123,t,0.91,t,136,f,?,SVI,negative
+48,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.3,t,1.6,t,86,t,0.93,t,92,f,?,SVI,negative
+28,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.3,t,1.4,t,120,t,0.82,t,146,f,?,SVI,negative
+62,M,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,12,t,1.5,t,105,t,0.86,t,122,f,?,other,compensated_hypothyroid
+31,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.4,t,2.3,t,150,t,1.42,t,106,f,?,SVHC,negative
+71,F,t,f,f,f,f,f,f,f,t,f,f,f,f,f,t,0.5,f,?,t,126,t,1.02,t,124,f,?,other,negative
+57,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+78,M,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,2.1,t,1.8,t,80,t,0.72,t,111,f,?,other,negative
+58,?,t,f,f,f,f,f,f,f,t,f,f,f,f,f,t,0.01,t,3.3,t,129,t,1.23,t,105,f,?,SVI,negative
+18,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,t,2.4,t,86,t,1.01,t,85,f,?,other,negative
+59,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,4.1,t,3.1,t,110,t,1.06,t,104,f,?,SVI,negative
+77,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.6,t,1.2,t,146,t,0.93,t,157,f,?,SVI,negative
+23,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,t,86,t,0.98,t,88,f,?,other,negative
+57,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,1.6,t,2,t,87,t,0.61,t,143,f,?,other,negative
+70,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.4,t,2.1,t,91,t,0.99,t,92,f,?,SVHC,negative
+57,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.4,t,2.3,t,70,t,0.99,t,71,f,?,SVHC,negative
+65,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,0.15,t,3.5,t,217,t,0.98,t,221,f,?,other,negative
+1,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,8.8,t,1.9,t,113,t,0.86,t,131,f,?,STMW,compensated_hypothyroid
+50,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,151,t,1,t,32,t,1.16,t,28,f,?,other,primary_hypothyroid
+55,F,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,0.99,t,1.3,t,93,t,0.86,t,108,f,?,SVI,negative
+44,M,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,0.04,f,?,t,141,t,1.03,t,137,f,?,other,negative
+35,F,f,f,f,f,f,f,f,f,f,t,f,f,f,f,t,3.9,f,?,t,83,t,0.85,t,97,f,?,SVHC,negative
+23,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.02,t,3.4,t,91,t,1.1,t,83,f,?,other,negative
+26,F,f,t,f,f,f,f,f,f,f,f,f,f,f,f,t,9.4,f,?,t,70,t,0.95,t,74,f,?,other,compensated_hypothyroid
+31,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,7.8,t,2,t,159,t,1.51,t,105,f,?,other,negative
+72,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.6,t,2.2,t,107,t,1.12,t,96,f,?,other,negative
+27,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.2,t,2.2,t,99,t,0.82,t,120,f,?,SVHC,negative
+62,M,t,f,f,f,f,f,f,t,t,f,f,f,f,f,t,13,t,1.1,t,87,t,0.81,t,107,f,?,SVHC,negative
+30,F,f,f,f,f,t,f,f,f,f,f,f,f,f,f,t,2.7,f,?,t,125,t,1.43,t,87,f,?,STMW,negative
+76,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.1,t,2.6,t,122,t,1.25,t,98,f,?,other,negative
+83,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.6,t,1.3,t,100,t,0.86,t,117,f,?,SVI,negative
+72,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.3,t,2.3,t,111,t,1.14,t,97,f,?,SVI,negative
+29,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.6,f,?,t,140,t,1.41,t,99,f,?,other,negative
+84,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.25,t,2,t,134,t,0.79,t,170,f,?,SVI,negative
+55,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.8,f,?,t,84,t,0.95,t,88,f,?,other,negative
+49,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.8,t,2.5,t,205,t,1.2,t,170,f,?,other,negative
+80,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.3,t,2.8,t,225,t,1.68,t,134,f,?,other,negative
+75,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.6,t,1.5,t,85,t,0.94,t,90,f,?,SVI,negative
+43,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,19,f,?,t,63,t,0.97,t,65,f,?,other,negative
+19,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,t,90,t,0.89,t,101,f,?,other,negative
+7,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.94,t,2,t,93,t,0.84,t,110,f,?,other,negative
+79,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.2,t,1.6,t,82,t,0.8,t,104,f,?,other,negative
+70,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.4,f,?,t,101,t,0.9,t,113,f,?,other,negative
+59,F,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,1.7,t,1.2,t,101,t,0.9,t,112,f,?,other,negative
+34,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.25,t,2.3,t,103,t,1.05,t,98,f,?,other,negative
+51,M,f,f,f,f,f,t,f,f,f,f,f,f,f,f,t,1.9,t,2.2,t,74,t,0.91,t,81,f,?,other,negative
+79,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.1,t,2.2,t,97,t,1.01,t,97,f,?,other,negative
+37,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.6,t,2.3,t,97,t,1.04,t,93,f,?,SVHC,negative
+53,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.045,t,1.8,t,102,t,1,t,102,f,?,other,negative
+62,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.5,t,2,t,67,t,0.73,t,92,f,?,SVI,negative
+30,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.1,t,3.1,t,119,t,1.08,t,109,f,?,other,negative
+38,F,f,f,f,f,f,f,f,f,f,f,t,f,f,f,t,0.88,t,1.6,t,108,t,0.85,t,127,f,?,SVI,negative
+17,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+55,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,0.01,t,5.5,t,219,t,0.8,t,274,f,?,other,negative
+72,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.1,t,2.2,t,124,t,1.08,t,115,f,?,SVI,negative
+72,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.5,t,1.3,t,86,t,0.88,t,99,f,?,SVI,negative
+22,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.7,t,2.2,t,93,t,1.08,t,87,f,?,other,negative
+18,F,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,1.1,f,?,t,147,t,0.95,t,154,f,?,STMW,negative
+57,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,t,99,t,0.99,t,100,f,?,other,negative
+53,M,t,f,f,f,f,t,f,f,f,f,f,f,f,f,t,0.08,f,?,t,127,t,0.9,t,141,f,?,other,negative
+75,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,4.5,t,1.1,t,132,t,1.01,t,131,f,?,SVI,negative
+58,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.5,t,1.6,t,103,t,0.9,t,114,f,?,other,negative
+21,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.6,t,2.1,t,96,t,0.85,t,112,f,?,STMW,negative
+19,F,f,f,t,f,f,f,f,f,f,f,f,f,f,f,t,0.1,t,4.2,t,128,t,0.98,t,130,f,?,other,negative
+59,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.01,t,2,t,113,t,0.86,t,131,f,?,other,negative
+54,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.3,t,2.4,t,106,t,1,t,106,f,?,other,negative
+41,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,6,t,1.9,t,114,t,1,t,114,f,?,other,negative
+27,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.5,t,1.3,t,108,t,0.79,t,137,f,?,SVI,negative
+34,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.25,t,1.6,t,107,t,1.05,t,102,f,?,SVHC,negative
+53,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.6,t,1.9,t,96,t,0.78,t,124,f,?,SVHC,negative
+72,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.3,t,1.9,t,104,t,1.01,t,104,f,?,SVI,negative
+39,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.1,f,?,f,?,f,?,f,?,f,?,other,negative
+70,M,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,0.6,t,2.6,t,144,t,1.2,t,120,f,?,SVHD,negative
+73,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.1,t,1.5,t,120,t,0.94,t,127,f,?,SVI,negative
+24,M,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,0.15,t,2.7,t,116,t,0.82,t,143,f,?,other,negative
+65,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.68,t,1.4,t,101,t,0.98,t,103,f,?,SVI,negative
+39,F,t,f,t,f,f,f,f,f,f,f,f,f,f,f,t,1.5,t,2.8,t,131,t,1.26,t,104,f,?,other,negative
+42,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.3,t,1.7,t,56,t,0.9,t,62,f,?,SVI,negative
+46,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.4,t,1.3,t,104,t,1.06,t,99,f,?,SVI,negative
+15,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.7,t,1.8,t,84,t,0.98,t,86,f,?,other,negative
+57,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.67,t,2.6,t,79,t,0.84,t,93,f,?,other,negative
+64,F,f,f,f,f,f,f,f,f,f,f,f,t,f,f,t,1.5,t,2.3,t,116,t,1.08,t,107,f,?,other,negative
+50,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.2,t,1.8,t,123,t,0.97,t,126,f,?,other,negative
+61,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.2,t,1.7,t,79,t,0.78,t,101,f,?,other,negative
+78,F,t,f,f,f,f,f,f,t,f,f,f,f,f,f,t,2.6,t,0.3,t,87,t,0.95,t,91,f,?,SVI,negative
+69,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.5,t,1.8,t,142,t,1.13,t,125,f,?,other,negative
+37,F,f,f,f,f,f,t,f,f,f,f,f,f,f,f,t,27,t,1.7,t,87,f,?,f,?,f,?,other,negative
+35,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.5,t,2.3,t,98,t,0.92,t,106,f,?,other,negative
+68,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.3,t,2.4,t,82,t,0.91,t,90,f,?,SVI,negative
+55,F,f,t,f,f,f,f,f,f,f,f,f,f,f,f,t,1.2,t,2.4,t,95,t,1.05,t,90,f,?,SVI,negative
+42,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,6.1,t,2.2,t,74,f,?,f,?,f,?,other,compensated_hypothyroid
+37,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.1,t,2.4,t,177,t,1.46,t,122,f,?,other,negative
+25,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,1.3,t,1.5,t,96,t,0.8,t,121,f,?,other,negative
+68,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.1,t,1.8,t,80,t,0.77,t,104,f,?,SVI,negative
+85,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.5,t,1.2,t,93,t,0.79,t,117,f,?,SVI,negative
+68,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2,t,1.5,t,110,t,0.89,t,124,f,?,SVI,negative
+36,F,f,f,f,f,t,f,f,f,t,f,f,f,f,f,t,0.005,f,?,t,108,t,1.1,t,99,f,?,other,negative
+45,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,0.75,t,2.3,t,119,t,0.94,t,126,f,?,other,negative
+71,F,f,f,f,f,f,f,f,f,f,f,t,f,f,f,t,0.02,f,?,t,127,t,1.06,t,119,f,?,other,negative
+83,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.6,f,?,t,120,t,1.29,t,92,f,?,other,negative
+35,F,f,f,t,f,f,f,f,f,f,f,f,f,f,f,t,0.045,t,2.1,t,71,t,1.1,t,64,f,?,other,negative
+32,F,t,f,f,f,t,f,f,f,t,f,f,f,f,f,t,0.025,t,3.7,t,139,t,1.34,t,104,f,?,other,negative
+49,F,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,1,t,1.6,t,93,t,0.94,t,99,f,?,other,negative
+46,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,1.1,t,2.9,t,125,t,1.02,t,122,f,?,SVHC,negative
+80,F,f,f,t,f,f,f,f,f,f,f,f,f,f,f,t,2.2,t,1.7,t,83,t,1.11,t,76,f,?,other,negative
+80,F,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,1.1,t,1.8,t,94,t,0.94,t,100,f,?,SVHC,negative
+26,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+68,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.9,t,2.9,t,90,t,1,t,90,f,?,SVI,negative
+24,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.6,t,3,t,119,t,1.03,t,115,f,?,other,negative
+21,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+38,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,t,78,t,0.87,t,90,f,?,other,negative
+55,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.05,t,2.8,t,189,t,1.66,t,114,f,?,other,negative
+64,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+60,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.55,f,?,t,180,t,1.05,t,172,f,?,other,negative
+47,F,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,1.9,t,2.3,t,135,t,1.07,t,126,f,?,SVHC,negative
+34,F,t,f,t,f,f,f,f,f,f,f,f,f,f,f,t,26,t,3.7,t,107,t,1.21,t,88,f,?,other,negative
+60,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,5.2,f,?,t,88,t,0.95,t,92,f,?,SVI,negative
+48,F,f,f,f,f,f,f,f,t,f,f,f,f,f,t,t,0.77,t,1.1,t,81,t,0.86,t,95,f,?,SVHC,negative
+25,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.8,t,2.1,t,102,t,1.12,t,91,f,?,other,negative
+53,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.07,f,?,t,171,t,1.06,t,162,f,?,other,negative
+54,F,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,0.9,f,?,t,113,t,0.9,t,125,f,?,other,negative
+64,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.25,f,?,t,92,t,0.91,t,101,f,?,other,negative
+59,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,11.4,f,?,t,99,t,0.97,t,102,f,?,other,compensated_hypothyroid
+32,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.4,f,?,t,108,t,1.15,t,94,f,?,other,negative
+53,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.1,t,2.2,t,83,t,1.05,t,79,f,?,other,negative
+66,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,1.1,t,1.8,t,135,t,1.09,t,124,f,?,other,negative
+79,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,143,t,0.7,t,73,t,1.01,t,72,f,?,other,compensated_hypothyroid
+38,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.05,t,4.8,t,32,f,?,f,?,f,?,other,negative
+54,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.6,t,2.2,t,98,t,1.03,t,96,f,?,SVI,negative
+64,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.2,t,2.3,t,177,t,1.51,t,117,f,?,other,negative
+1,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.6,t,1.8,t,119,t,1.05,t,113,f,?,SVI,negative
+22,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+16,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.8,t,2,t,103,t,1.03,t,100,f,?,other,negative
+70,M,f,f,f,f,f,f,f,f,t,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+74,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.3,t,2.3,t,113,t,0.96,t,118,f,?,other,negative
+44,M,f,t,f,f,f,f,f,f,f,f,t,f,f,f,t,0.1,t,0.6,t,61,t,0.86,t,71,f,?,SVI,negative
+47,F,f,f,f,f,f,f,f,f,t,f,f,t,f,f,t,0.005,t,3,t,145,t,1.23,t,117,f,?,other,negative
+53,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.05,t,4.3,t,184,t,1.19,t,155,f,?,other,negative
+44,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.72,t,0.9,t,96,t,0.75,t,127,f,?,other,negative
+76,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.4,t,0.05,t,38,t,0.52,t,73,f,?,SVI,negative
+32,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,2.8,t,1.3,t,86,t,0.89,t,96,f,?,other,negative
+52,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.03,f,?,t,163,t,0.95,t,172,f,?,other,negative
+19,F,f,f,f,f,t,f,f,f,f,f,f,t,f,f,t,0.45,t,3.2,t,130,t,1.83,t,71,f,?,STMW,negative
+69,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.1,t,1.6,t,99,t,0.92,t,108,f,?,other,negative
+38,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.57,t,1.3,t,156,t,1.39,t,112,f,?,SVHC,negative
+37,M,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,0.65,t,1.3,t,136,t,1.19,t,115,f,?,other,negative
+80,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.15,t,2.2,t,124,t,0.81,t,152,f,?,SVI,negative
+61,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.02,t,1.5,t,125,t,0.77,t,163,f,?,other,negative
+71,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.3,t,2.3,t,120,t,0.8,t,149,f,?,other,negative
+46,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.015,t,2,t,93,t,0.97,t,96,f,?,other,negative
+24,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.4,f,?,t,142,t,1.2,t,118,f,?,other,negative
+25,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.6,t,5.4,t,152,t,1.5,t,102,f,?,STMW,negative
+33,F,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,16,t,1.7,t,75,f,?,f,?,f,?,other,compensated_hypothyroid
+28,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.4,t,2.4,t,102,t,1.08,t,95,f,?,SVI,negative
+24,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.3,t,2,t,121,t,0.81,t,149,f,?,SVI,negative
+81,F,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,1.8,t,1.8,t,148,t,1.19,t,125,f,?,SVHC,negative
+69,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,t,118,t,1.11,t,107,f,?,other,negative
+28,F,f,f,t,f,f,f,f,f,t,f,f,f,f,f,t,2.4,t,2.1,t,125,f,?,f,?,f,?,other,negative
+49,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.2,f,?,t,87,t,0.91,t,95,f,?,other,negative
+67,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.4,t,1.5,t,95,t,0.78,t,122,f,?,SVI,negative
+42,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1,t,2.4,t,128,t,1.11,t,115,f,?,other,negative
+63,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,108,t,0.4,t,14,t,0.98,t,14,f,?,SVI,primary_hypothyroid
+19,M,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,9,t,2.2,t,117,f,?,f,?,f,?,other,compensated_hypothyroid
+41,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+31,F,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,0.1,t,1.8,t,93,f,?,f,?,f,?,SVHC,negative
+78,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.4,t,1.3,t,87,t,0.89,t,97,f,?,SVI,negative
+66,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.83,t,2.3,t,113,t,0.84,t,134,f,?,other,negative
+13,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.7,t,2.8,t,110,t,1.1,t,100,f,?,other,negative
+55,F,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,9.2,t,2.5,t,106,t,1.13,t,94,f,?,SVHC,compensated_hypothyroid
+76,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.9,t,1.7,t,104,t,1.04,t,100,f,?,SVI,negative
+58,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+23,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.6,t,1.4,t,76,t,0.83,t,91,f,?,SVI,negative
+26,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.1,t,2.2,t,95,t,1,t,95,f,?,other,negative
+21,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,0.4,t,3.4,t,189,t,1.35,t,140,f,?,other,negative
+72,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,5.4,t,1,t,75,t,0.82,t,92,f,?,SVI,negative
+21,M,f,t,f,f,f,f,f,f,f,f,f,f,t,f,t,0.25,t,1.3,t,54,t,1.07,t,51,f,?,SVI,negative
+19,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,t,2.2,f,?,f,?,f,?,f,?,other,negative
+73,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.6,t,1.3,t,146,t,0.89,t,165,f,?,other,negative
+39,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,1.5,f,?,t,93,t,0.75,t,125,f,?,SVHC,negative
+72,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.9,t,1.4,t,109,t,0.95,t,116,f,?,SVI,negative
+70,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.5,t,0.3,t,79,t,0.8,t,98,f,?,SVI,negative
+10,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.9,t,4,t,90,t,1.11,t,81,f,?,other,negative
+81,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,t,1.7,t,71,t,0.92,t,77,f,?,other,negative
+82,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2,t,0.4,t,58,t,0.68,t,85,f,?,SVI,negative
+70,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,86,t,0.5,t,27,t,0.84,t,32,f,?,SVI,primary_hypothyroid
+57,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.62,t,2.4,t,118,t,1.12,t,106,f,?,SVI,negative
+43,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2,t,1.8,t,121,t,0.94,t,129,f,?,SVHC,negative
+36,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.59,f,?,t,115,t,1.2,t,96,f,?,other,negative
+70,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3,t,1.3,t,105,t,0.94,t,112,f,?,SVI,negative
+75,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.9,t,1.4,t,107,t,0.92,t,116,f,?,other,negative
+78,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,2.9,t,1.9,t,90,t,0.97,t,93,f,?,SVHC,negative
+64,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.08,t,1.7,t,74,t,1.07,t,69,f,?,other,negative
+74,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,9.1,t,2,t,72,t,0.9,t,80,f,?,other,compensated_hypothyroid
+44,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,5.9,t,2.4,t,61,f,?,f,?,f,?,other,negative
+80,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.3,t,1.3,t,93,t,0.86,t,108,f,?,SVI,negative
+59,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.25,t,1.8,t,102,t,0.82,t,124,f,?,other,negative
+67,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,52,t,1.2,t,65,t,0.92,t,71,f,?,SVI,compensated_hypothyroid
+29,M,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.33,t,2.2,t,142,t,0.93,t,153,f,?,other,negative
+49,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.7,t,2.1,t,102,t,0.93,t,110,f,?,SVI,negative
+43,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,t,65,t,0.93,t,70,f,?,other,negative
+47,M,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,1.5,t,1.5,t,98,t,0.86,t,113,f,?,SVI,negative
+39,M,f,t,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,t,63,t,0.87,t,72,f,?,other,negative
+28,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.8,t,3.8,t,193,t,1.93,t,100,f,?,STMW,negative
+59,M,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,0.3,t,2.4,t,86,t,0.9,t,96,f,?,SVI,negative
+32,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.9,t,2.3,t,129,t,1.29,t,100,f,?,STMW,negative
+22,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+80,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,6.1,t,1.3,t,83,t,0.88,t,95,f,?,SVI,compensated_hypothyroid
+71,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.3,t,1.4,t,116,t,0.96,t,121,f,?,SVI,negative
+42,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,31,t,0.8,t,13,t,1.19,t,11,f,?,other,primary_hypothyroid
+57,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,t,1.6,t,57,t,1.05,t,54,f,?,other,negative
+85,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1,t,1,t,92,t,0.56,t,164,f,?,SVI,negative
+77,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.1,t,0.9,t,105,t,0.82,t,129,f,?,SVI,negative
+65,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.5,t,1.7,t,116,t,1.07,t,108,f,?,other,negative
+67,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.1,t,1.2,t,90,t,0.82,t,110,f,?,SVI,negative
+23,F,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,1.9,t,2.4,t,129,t,1.18,t,109,f,?,other,negative
+63,M,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,1.4,t,1.4,t,90,t,0.91,t,100,f,?,SVI,negative
+30,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3,f,?,t,96,t,0.82,t,118,f,?,other,negative
+33,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1,t,2.4,t,120,t,0.98,t,123,f,?,SVHC,negative
+29,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.1,t,2.2,t,85,t,1.06,t,80,f,?,SVHC,negative
+60,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.3,t,2.2,t,90,t,1.04,t,87,f,?,SVHC,negative
+45,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.6,t,1.9,t,121,t,1.04,t,116,f,?,SVI,negative
+61,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.2,t,2.3,t,143,t,1.02,t,141,f,?,SVHC,negative
+63,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,5.8,t,1.3,t,92,t,0.94,t,98,f,?,other,negative
+67,F,t,f,f,f,f,f,f,t,f,f,f,f,f,f,t,2,t,2.5,t,133,t,1.19,t,112,f,?,other,negative
+72,M,f,f,f,f,f,f,f,f,f,f,f,t,f,f,t,0.28,t,0.9,t,79,t,0.7,t,112,f,?,SVI,negative
+38,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.8,t,2.5,t,101,t,1.04,t,97,f,?,SVI,negative
+72,M,f,f,f,f,f,f,f,f,t,f,f,t,f,f,t,1.5,t,1.8,f,?,t,0.93,t,112,f,?,SVI,negative
+55,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.005,t,1.9,t,107,t,0.74,t,144,f,?,other,negative
+72,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.6,t,2.2,t,87,t,1.17,t,74,f,?,other,negative
+61,F,f,t,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,t,63,t,0.71,t,89,f,?,other,negative
+73,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.1,t,1.5,t,77,t,0.79,t,97,f,?,SVI,negative
+44,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.25,f,?,t,106,t,1.02,t,105,f,?,other,negative
+67,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,51,t,0.4,t,12,t,1.26,t,10,f,?,other,primary_hypothyroid
+15,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1,t,1.4,t,64,t,0.79,t,81,f,?,SVI,negative
+72,F,t,f,f,t,f,f,f,f,f,f,f,f,f,f,t,6.3,t,1.5,t,94,t,0.92,t,102,f,?,SVHD,negative
+59,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,4.4,t,2.4,t,80,t,0.98,t,81,f,?,other,negative
+67,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.3,t,1.4,t,124,t,0.86,t,144,f,?,SVI,negative
+38,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.4,t,2,t,91,t,0.78,t,117,f,?,SVHC,negative
+67,M,f,f,f,f,f,f,f,f,f,f,t,f,f,f,f,?,f,?,t,101,t,1.01,t,100,f,?,other,negative
+55,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,4.5,t,1.7,t,91,t,1.09,t,84,f,?,other,negative
+45,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.08,t,4.8,t,257,t,1.2,t,214,f,?,other,negative
+36,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,t,81,t,0.85,t,95,f,?,other,negative
+26,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,0.25,t,1.8,t,120,t,0.85,t,140,f,?,SVHC,negative
+54,M,f,t,f,f,f,f,f,f,f,f,f,f,f,f,f,?,t,1.9,t,95,t,0.88,t,109,f,?,other,negative
+60,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,t,2.2,f,?,f,?,f,?,f,?,other,negative
+87,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,0.2,t,3.4,t,164,t,0.82,t,200,f,?,other,negative
+67,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.3,t,1.4,t,113,t,0.85,t,132,f,?,other,negative
+27,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.8,t,2.3,t,119,t,0.99,t,120,f,?,other,negative
+75,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,9.6,t,1.9,t,79,t,1,t,80,f,?,SVI,compensated_hypothyroid
+79,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.5,t,1.6,t,128,t,0.99,t,129,f,?,SVI,negative
+61,M,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.25,t,2.5,t,101,t,1,t,101,f,?,other,negative
+44,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.4,t,1.6,t,107,t,1.15,t,93,f,?,other,negative
+49,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.08,t,0.2,t,59,t,0.79,t,74,f,?,SVI,negative
+58,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.5,t,1.6,t,140,t,1.1,t,127,f,?,other,negative
+59,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.09,t,1.3,t,80,t,1.02,t,79,f,?,other,negative
+43,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,1.1,t,2.3,t,140,t,1.2,t,116,f,?,other,negative
+61,F,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,0.4,f,?,t,113,t,1.06,t,106,f,?,other,negative
+59,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.5,t,1.8,t,147,t,1.11,t,132,f,?,SVI,negative
+83,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.9,t,1.4,t,95,t,0.81,t,118,f,?,SVI,negative
+75,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.04,t,0.8,t,93,t,0.58,t,160,f,?,other,negative
+57,M,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.62,t,1.5,t,74,t,0.78,t,96,f,?,other,negative
+34,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.3,t,2.5,t,121,t,1.29,t,94,f,?,SVHC,negative
+70,M,t,f,f,f,f,f,t,f,f,f,f,f,f,f,t,2.3,t,1.2,t,107,t,1.01,t,105,f,?,other,negative
+80,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.5,t,2.2,t,113,t,1.17,t,97,f,?,SVI,negative
+46,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.6,t,2.3,t,101,t,0.99,t,102,f,?,SVHC,negative
+22,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.5,t,1.7,t,83,t,0.86,t,97,f,?,other,negative
+25,F,f,f,f,f,t,f,f,f,f,f,f,t,f,f,f,?,t,2.2,t,113,t,1.08,t,105,f,?,STMW,negative
+50,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.1,t,1.9,t,77,t,0.8,t,97,f,?,SVI,negative
+32,F,f,f,f,f,t,f,f,f,f,f,f,f,f,t,t,0.5,t,3,t,167,t,1.82,t,92,f,?,SVHC,negative
+74,M,t,f,t,f,f,f,f,t,t,f,f,f,f,f,t,5.2,f,?,f,?,f,?,f,?,f,?,other,negative
+29,F,f,f,f,f,f,t,f,f,f,f,f,f,f,f,t,24,f,?,t,63,t,1.2,t,53,f,?,other,primary_hypothyroid
+89,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+75,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.76,f,?,t,138,t,0.96,t,143,f,?,other,negative
+68,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,42,t,0.2,t,18,t,1.09,t,16,f,?,SVI,primary_hypothyroid
+23,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.03,t,2.8,t,183,t,1.23,t,149,f,?,other,negative
+73,M,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,3.2,t,1.5,t,69,t,0.8,t,86,f,?,SVI,negative
+18,F,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,12,t,2.2,t,94,t,0.96,t,98,f,?,other,compensated_hypothyroid
+18,M,t,f,f,f,f,f,t,t,t,f,f,f,f,f,t,25,t,1.1,t,136,t,0.96,t,143,f,?,other,negative
+34,F,t,f,f,f,f,f,f,t,f,f,f,f,f,f,t,0.4,f,?,t,109,t,0.91,t,120,f,?,other,negative
+49,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.1,t,1.3,t,108,t,0.83,t,130,f,?,SVI,negative
+64,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2,t,1.3,t,124,t,0.9,t,138,f,?,SVI,negative
+45,M,f,f,f,t,f,f,f,t,f,f,f,f,f,t,t,10,t,0.3,t,67,f,?,f,?,f,?,SVI,compensated_hypothyroid
+56,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.2,t,1.4,t,71,t,0.72,t,99,f,?,other,negative
+61,M,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,0.6,t,1,t,96,t,0.93,t,104,f,?,SVI,negative
+73,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,4.6,t,0.8,t,91,t,0.86,t,106,f,?,SVI,negative
+62,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,8.6,t,1.1,t,84,t,0.74,t,114,f,?,SVI,compensated_hypothyroid
+37,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,t,118,t,1.04,t,112,f,?,other,negative
+55,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.9,f,?,t,128,t,0.98,t,131,f,?,other,negative
+63,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.7,t,0.7,t,41,t,0.6,t,69,f,?,SVI,negative
+27,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,t,86,t,0.93,t,92,f,?,other,negative
+32,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,0.15,t,2.9,t,132,t,1.14,t,116,f,?,SVHC,negative
+58,M,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.2,t,1.7,t,123,t,0.96,t,129,f,?,other,negative
+56,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.5,t,2.3,t,85,t,0.81,t,105,f,?,SVI,negative
+43,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.2,t,2.3,t,87,t,0.93,t,94,f,?,other,negative
+79,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.7,t,0.9,t,86,t,0.85,t,102,f,?,SVI,negative
+23,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,0.66,t,2.3,t,114,t,0.88,t,129,f,?,SVHC,negative
+70,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,6.2,t,1.8,t,124,t,1.11,t,112,f,?,other,compensated_hypothyroid
+54,?,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,0.01,t,3.6,t,142,t,1.23,t,115,f,?,other,negative
+31,F,f,f,f,f,f,f,f,f,f,f,f,t,f,f,f,?,t,3.6,t,176,t,1.43,t,123,f,?,other,negative
+20,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.9,t,3.3,t,156,t,1.67,t,93,f,?,STMW,negative
+39,F,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,0.79,t,1.9,t,107,t,0.99,t,108,f,?,other,negative
+65,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.7,t,2.3,t,101,t,0.95,t,106,f,?,other,negative
+35,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,28,t,2.5,f,?,f,?,f,?,f,?,other,compensated_hypothyroid
+36,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.2,t,3,t,125,t,0.74,t,169,f,?,SVI,negative
+49,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.86,t,2.7,t,94,f,?,f,?,f,?,other,negative
+55,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.4,t,1.6,t,101,t,0.93,t,108,f,?,SVI,negative
+26,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.7,t,2.8,t,96,t,0.82,t,118,f,?,other,negative
+31,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,1.2,t,2.7,t,99,t,0.88,t,113,f,?,SVHC,negative
+46,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,9.7,t,0.5,t,37,t,0.72,t,51,f,?,SVI,primary_hypothyroid
+34,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,0.83,t,2.4,t,114,t,1.02,t,112,f,?,SVHC,negative
+73,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.84,t,1.3,t,66,t,1.17,t,56,f,?,SVI,negative
+50,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,28,t,0.2,t,33,t,0.7,t,47,f,?,SVI,primary_hypothyroid
+75,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.3,t,2.2,t,100,t,0.97,t,104,f,?,SVI,negative
+7,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,15,f,?,t,137,t,1.03,t,133,f,?,other,compensated_hypothyroid
+50,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.8,t,1.6,t,105,t,0.8,t,131,f,?,SVI,negative
+52,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2,t,1.8,t,86,t,0.86,t,101,f,?,other,negative
+61,F,t,f,f,f,f,f,f,t,f,f,f,f,f,f,t,17,t,2.2,t,131,t,1.22,t,108,f,?,SVI,negative
+47,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.1,t,2.1,t,94,t,0.79,t,119,f,?,other,negative
+45,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.1,t,2,t,63,t,0.66,t,96,f,?,SVI,negative
+77,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,18,t,0.3,t,44,t,0.56,t,77,f,?,SVI,compensated_hypothyroid
+35,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.05,t,2.3,t,112,t,1,t,112,f,?,SVI,negative
+83,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.4,t,1.2,t,99,t,0.88,t,112,f,?,other,negative
+37,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,55,t,0.9,t,45,t,1.04,t,43,f,?,other,primary_hypothyroid
+63,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,14,t,0.5,t,95,t,0.83,t,114,f,?,other,compensated_hypothyroid
+18,F,f,f,f,f,f,t,f,f,f,f,f,f,f,f,t,16,t,1.3,t,75,t,1.11,t,68,f,?,SVI,negative
+27,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,t,141,t,1.33,t,106,f,?,other,negative
+17,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.1,f,?,t,154,t,1.34,t,115,f,?,SVI,negative
+71,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.3,t,2.1,t,119,t,1.03,t,116,f,?,other,negative
+64,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,0.6,t,1.8,t,112,t,1.06,t,106,f,?,other,negative
+44,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.2,t,1.9,t,99,t,0.72,t,139,f,?,SVHC,negative
+69,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.83,t,2.4,t,123,t,1.14,t,108,f,?,SVI,negative
+84,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.7,t,1.2,t,132,t,0.92,t,145,f,?,SVI,negative
+45,F,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,0.94,t,2,t,102,t,0.86,t,119,f,?,SVHC,negative
+58,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+80,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.1,t,1.4,t,111,t,0.97,t,115,f,?,SVI,negative
+26,F,t,f,f,f,f,f,f,f,f,f,f,t,f,f,t,0.08,t,1.7,t,174,t,1.23,t,142,f,?,other,negative
+49,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.035,t,2.1,t,183,t,1.02,t,179,f,?,other,negative
+42,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.5,t,2.1,t,121,t,1.12,t,108,f,?,SVI,negative
+72,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.02,t,1.4,t,140,t,1.13,t,124,f,?,SVI,negative
+59,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.4,t,1.1,t,121,t,1.11,t,109,f,?,SVI,negative
+64,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.02,f,?,t,125,t,1.13,t,110,f,?,other,negative
+78,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,10,t,2,t,69,t,0.96,t,71,f,?,SVI,compensated_hypothyroid
+90,F,f,t,f,f,f,f,f,f,f,f,f,f,f,f,t,0.03,t,1.9,t,203,t,0.9,t,224,f,?,SVI,negative
+33,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,0.16,t,5.2,t,183,t,0.83,t,220,f,?,other,negative
+62,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.7,f,?,t,86,t,0.91,t,95,f,?,other,negative
+41,F,f,f,f,f,f,f,f,f,f,f,f,t,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+49,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.2,t,2.2,t,100,t,0.93,t,108,f,?,SVHC,negative
+56,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.87,t,1.9,t,116,f,?,f,?,f,?,other,negative
+71,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,6.7,t,1.9,t,91,t,1.03,t,89,f,?,SVI,compensated_hypothyroid
+35,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.7,t,2.3,t,82,t,0.88,t,93,f,?,STMW,negative
+59,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.02,t,1.8,t,162,t,0.99,t,164,f,?,other,negative
+61,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,0.3,t,2,t,93,t,0.99,t,93,f,?,other,negative
+55,F,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,1.9,t,2.3,t,98,t,1.03,t,95,f,?,SVI,negative
+59,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.7,t,2.1,t,86,t,0.92,t,93,f,?,other,negative
+78,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.74,t,0.5,t,85,t,0.77,t,110,f,?,SVI,negative
+68,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,5.4,t,2.7,t,94,t,1.14,t,82,f,?,SVI,negative
+50,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,7.6,t,1.7,t,128,t,1.08,t,118,f,?,other,compensated_hypothyroid
+52,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1,t,1.9,t,88,t,0.8,t,110,f,?,other,negative
+33,?,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,0.015,t,5,t,244,t,0.67,t,362,f,?,other,negative
+58,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.065,t,3.4,t,129,t,0.95,t,136,f,?,other,negative
+55,F,f,f,f,f,f,f,f,f,f,f,t,f,f,f,t,0.29,f,?,t,81,t,0.7,t,116,f,?,SVI,negative
+51,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.08,t,2.8,t,109,t,0.9,t,121,f,?,other,negative
+24,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.6,t,1.3,t,67,t,0.88,t,76,f,?,SVI,negative
+73,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.1,t,1.8,t,137,t,0.98,t,140,f,?,other,negative
+27,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.6,t,1.9,t,119,t,0.89,t,134,f,?,SVI,negative
+52,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2,f,?,t,120,t,1.02,t,118,f,?,other,negative
+67,M,f,t,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,t,106,t,0.92,t,115,f,?,other,negative
+22,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1,t,2.7,t,150,t,1.22,t,124,f,?,SVHC,negative
+77,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.37,t,1.7,t,140,t,0.77,t,182,f,?,SVI,negative
+73,F,f,f,f,f,f,f,f,f,f,f,f,t,f,f,t,0.005,t,3.6,t,119,t,0.9,t,133,f,?,other,negative
+73,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,8,t,1.3,t,101,t,0.93,t,108,f,?,SVI,compensated_hypothyroid
+25,M,f,f,f,f,f,f,f,t,f,f,f,f,f,t,t,1.5,t,2.7,t,120,t,1.31,t,91,f,?,SVHC,negative
+76,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.8,t,1.4,t,111,t,0.78,t,142,f,?,SVI,negative
+81,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.2,t,1.8,t,123,t,0.98,t,125,f,?,SVI,negative
+73,M,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,3.9,t,0.9,t,62,t,0.54,t,115,f,?,SVI,negative
+67,F,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,1.7,t,0.7,t,79,t,0.77,t,102,f,?,SVI,negative
+39,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,2.6,t,3,t,125,t,1.13,t,111,f,?,SVHC,negative
+47,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.6,f,?,t,73,t,0.79,t,92,f,?,SVHC,negative
+61,M,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.005,t,2.5,t,114,t,0.93,t,122,f,?,other,negative
+48,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.6,t,1.6,t,140,t,1.01,t,138,f,?,other,negative
+55,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.9,t,1.5,t,88,t,0.94,t,94,f,?,other,negative
+39,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.25,t,2.9,t,125,t,0.96,t,130,f,?,other,negative
+47,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.005,t,2,t,128,t,0.94,t,136,f,?,other,negative
+50,M,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.05,t,1.8,t,109,t,0.77,t,141,f,?,other,negative
+45,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.1,t,1.3,t,109,t,0.89,t,122,f,?,SVI,negative
+49,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.1,t,1.3,t,120,t,1.43,t,83,f,?,SVI,negative
+73,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.7,f,?,t,88,t,0.82,t,107,f,?,other,negative
+36,F,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,3.1,t,1.8,t,87,t,1.16,t,75,f,?,SVHC,negative
+29,F,f,f,f,f,t,f,f,f,f,f,f,f,f,f,t,0.1,t,3.1,t,142,t,1.77,t,80,f,?,STMW,negative
+77,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.5,f,?,t,114,t,1,t,115,f,?,other,negative
+53,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.6,t,2.1,t,133,t,1.08,t,123,f,?,SVI,negative
+65,F,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,1.6,t,2.2,t,120,t,0.85,t,141,f,?,other,negative
+43,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,t,86,t,1.04,t,83,f,?,other,negative
+63,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+33,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.045,t,2.1,t,159,t,1.01,t,157,f,?,SVI,negative
+43,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.9,t,1.5,t,76,t,0.81,t,93,f,?,other,negative
+73,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.1,t,0.6,t,113,t,0.89,t,127,f,?,SVI,negative
+46,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,t,93,t,0.91,t,102,f,?,other,negative
+45,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.02,t,1.4,t,144,f,?,f,?,f,?,other,negative
+82,M,f,t,f,f,f,f,f,f,f,f,f,f,f,f,t,0.15,t,1.4,t,133,t,1,t,134,f,?,SVI,negative
+55,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,11,t,1.5,t,144,t,1.24,t,116,f,?,other,compensated_hypothyroid
+43,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.1,f,?,t,62,t,0.94,t,66,f,?,other,negative
+79,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1,t,1.4,t,92,t,0.88,t,105,f,?,SVI,negative
+59,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.2,t,2,t,110,t,0.96,t,114,f,?,SVI,negative
+76,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.3,t,1.5,t,93,t,0.71,t,132,f,?,SVI,negative
+65,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.4,t,1,t,154,t,1.03,t,149,f,?,other,negative
+41,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.76,f,?,t,107,t,0.91,t,118,f,?,other,negative
+64,F,f,t,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,t,145,t,0.93,t,155,f,?,other,negative
+39,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1,t,2.4,t,98,t,1.08,t,91,f,?,SVHC,negative
+60,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.48,t,1.7,t,88,t,0.83,t,105,f,?,SVI,negative
+67,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.5,t,1.9,t,109,t,1.01,t,108,f,?,other,negative
+30,F,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,4.5,t,2,t,139,t,0.86,t,161,f,?,SVHC,negative
+76,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,11,t,1.2,t,86,t,0.85,t,101,f,?,SVI,compensated_hypothyroid
+37,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.61,t,1.6,t,116,t,0.91,t,127,f,?,other,negative
+65,F,f,f,f,t,f,f,f,t,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+32,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.5,t,1.8,t,91,t,0.9,t,101,f,?,SVI,negative
+77,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.2,t,0.2,t,80,t,0.8,t,99,f,?,SVI,negative
+87,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.025,t,1.6,t,134,t,0.79,t,170,f,?,other,negative
+50,F,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,1.4,t,1.8,t,126,t,1.07,t,117,f,?,other,negative
+48,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,t,82,t,0.93,t,88,f,?,other,negative
+49,F,f,f,f,f,f,f,f,f,f,f,f,t,f,f,t,0.6,f,?,t,87,t,1,t,88,f,?,other,negative
+42,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.04,t,3.5,t,158,t,1.59,t,100,f,?,STMW,negative
+45,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.8,t,1.7,t,104,f,?,f,?,f,?,other,negative
+38,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,44,t,1.7,t,59,t,1.04,t,57,f,?,other,primary_hypothyroid
+63,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.9,f,?,t,95,t,1.08,t,88,f,?,SVI,negative
+25,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.035,t,3.3,t,116,f,?,f,?,f,?,other,negative
+27,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.4,t,2,t,93,t,0.91,t,102,f,?,SVI,negative
+23,F,f,f,f,f,f,f,f,f,t,t,f,f,f,f,t,7.9,t,2.2,t,104,t,1.07,t,97,f,?,SVHC,compensated_hypothyroid
+30,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.9,f,?,t,98,t,0.99,t,99,f,?,other,negative
+61,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1,t,2.2,t,91,t,0.87,t,105,f,?,other,negative
+62,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.7,f,?,t,97,t,0.86,t,112,f,?,other,negative
+76,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,11,t,0.8,t,60,t,1.04,t,58,f,?,SVI,primary_hypothyroid
+26,F,f,f,f,f,t,f,f,f,f,f,f,f,f,f,t,0.3,f,?,t,151,t,1.97,t,76,f,?,other,negative
+61,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.1,t,1.2,t,109,t,0.78,t,140,f,?,SVI,negative
+52,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.7,t,2,t,85,t,0.89,t,96,f,?,SVHC,negative
+70,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.1,t,1.4,t,106,t,0.92,t,115,f,?,SVI,negative
+36,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.2,f,?,t,187,t,1.69,t,111,f,?,other,negative
+61,F,f,f,f,f,f,f,t,f,t,f,f,f,f,f,t,3.7,t,2.4,t,77,t,1.24,t,62,f,?,other,negative
+60,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.2,t,1.6,t,123,t,1.09,t,113,f,?,SVI,negative
+41,M,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,0.005,t,1.5,t,100,t,1.01,t,99,f,?,SVHC,negative
+73,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,t,2,t,87,f,?,f,?,f,?,SVI,negative
+21,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.3,t,2.6,t,106,t,1.06,t,101,f,?,other,negative
+47,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2,f,?,t,114,t,0.89,t,129,f,?,other,negative
+51,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.065,t,2.2,t,164,t,1.09,t,151,f,?,other,negative
+15,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.015,t,6,t,250,t,0.8,t,312,f,?,other,negative
+34,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1,t,2.3,t,120,t,1.01,t,119,f,?,other,negative
+76,F,f,f,f,f,f,f,f,t,t,f,f,f,f,f,t,2.5,f,?,t,118,t,1,t,118,f,?,other,negative
+29,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.6,t,1.6,t,135,t,0.86,t,157,f,?,other,negative
+73,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,1.7,t,3.6,t,115,t,1.23,t,93,f,?,SVHC,negative
+72,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,15,t,2.2,t,98,t,1.29,t,76,f,?,SVI,compensated_hypothyroid
+45,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,5,t,0.7,t,54,t,0.85,t,63,f,?,SVI,negative
+28,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.2,t,2.2,t,82,t,0.94,t,87,f,?,SVHC,negative
+23,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,7.2,t,3.5,t,126,t,1.38,t,92,f,?,other,compensated_hypothyroid
+34,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+63,F,f,t,f,t,f,f,f,f,f,f,f,f,f,f,t,0.2,t,0.9,t,110,t,0.82,t,134,f,?,SVI,negative
+65,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.8,t,1.8,t,107,t,1.1,t,98,f,?,other,negative
+54,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,1.4,f,?,t,98,t,1.01,t,97,f,?,other,negative
+78,F,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,0.89,t,1.8,t,103,t,0.98,t,105,f,?,SVI,negative
+90,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.8,t,2.4,t,73,t,1.07,t,69,f,?,other,negative
+49,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.8,t,1.5,t,85,t,0.73,t,116,f,?,SVI,negative
+60,F,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,1.7,t,1.7,t,109,t,0.84,t,130,f,?,SVI,negative
+76,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.5,t,1.5,t,81,t,0.92,t,88,f,?,SVI,negative
+79,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.4,t,2,t,143,t,1.28,t,112,f,?,other,negative
+68,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.4,t,1.3,t,119,t,1.11,t,107,f,?,SVI,negative
+65,F,f,f,f,f,f,f,t,t,t,f,f,f,f,f,t,1.3,t,2.1,t,162,t,1.19,t,137,f,?,other,negative
+60,F,f,f,f,f,f,f,f,f,f,f,f,t,f,f,t,12,t,2.2,t,71,t,1.4,t,51,f,?,SVI,primary_hypothyroid
+76,M,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,0.8,t,1.1,t,94,t,0.93,t,101,f,?,SVHD,negative
+53,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.4,f,?,t,115,t,0.9,t,128,f,?,SVI,negative
+63,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.7,t,2.2,t,83,f,?,f,?,f,?,other,negative
+70,F,t,t,f,f,f,f,f,f,f,f,f,f,f,f,t,0.07,t,0.9,t,104,t,0.83,t,124,f,?,other,negative
+59,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.4,t,1.9,t,133,t,0.99,t,134,f,?,SVHC,negative
+21,F,f,f,f,t,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+76,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.93,t,2.1,t,142,t,1.09,t,129,f,?,other,negative
+42,M,f,f,t,f,f,f,f,f,f,f,f,f,f,f,t,1.1,t,1.7,t,79,t,0.88,t,90,f,?,other,negative
+59,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,1.3,t,1.6,t,82,t,0.88,t,93,f,?,SVHC,negative
+70,F,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,2.8,t,2.4,t,111,t,0.8,t,139,f,?,SVHC,negative
+58,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.7,t,1.7,t,64,t,0.69,t,93,f,?,SVI,negative
+29,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,4.4,t,1.7,t,94,t,0.97,t,97,f,?,other,negative
+70,?,f,f,f,f,f,f,t,f,f,f,f,f,f,f,t,2.3,t,2.7,t,95,t,1.07,t,88,f,?,other,negative
+45,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.97,t,1.1,t,77,t,0.86,t,89,f,?,SVI,negative
+79,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.1,t,1.7,t,111,t,1.02,t,108,f,?,SVI,negative
+40,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.6,t,2.4,t,105,t,0.83,t,125,f,?,SVI,negative
+54,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.25,f,?,t,156,t,1.23,t,126,f,?,other,negative
+39,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3,t,2.7,t,91,t,0.92,t,98,f,?,SVHC,negative
+49,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.12,t,2.3,t,181,t,1.11,t,164,f,?,other,negative
+48,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.6,t,2.1,t,80,t,0.98,t,82,f,?,SVI,negative
+75,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.4,t,2.6,t,108,t,1.05,t,102,f,?,SVI,negative
+61,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.2,t,1.6,t,93,t,0.81,t,114,f,?,other,negative
+46,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,6.4,t,2.3,t,64,t,0.98,t,65,f,?,other,compensated_hypothyroid
+63,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.75,t,1.4,t,112,t,0.86,t,130,f,?,SVHC,negative
+48,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.1,t,2,t,86,t,0.78,t,110,f,?,SVI,negative
+78,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.5,t,0.8,t,108,t,0.81,t,133,f,?,SVI,negative
+69,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,t,2.1,t,113,t,0.88,t,128,f,?,SVI,negative
+32,F,t,f,f,t,f,f,f,f,f,f,f,f,f,f,t,0.15,t,2.4,t,135,t,1.15,t,118,f,?,other,negative
+37,F,f,f,f,f,f,f,t,f,f,f,f,f,f,f,t,25,f,?,t,71,t,1.04,t,68,f,?,other,compensated_hypothyroid
+53,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.045,t,2.5,t,157,t,1.07,t,147,f,?,other,negative
+35,M,f,f,f,f,f,f,f,f,f,f,t,f,f,f,t,0.3,t,2,t,75,t,1.21,t,62,f,?,SVI,negative
+72,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,t,98,f,?,f,?,f,?,other,negative
+44,F,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,1.8,t,1.9,t,118,t,1.07,t,110,f,?,SVHC,negative
+40,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.3,t,2.3,t,87,t,0.96,t,90,f,?,SVI,negative
+69,F,t,f,f,f,f,f,f,f,f,f,f,t,f,f,t,0.015,f,?,t,176,t,1.11,t,158,f,?,other,negative
+34,F,f,f,f,f,t,f,f,t,f,f,f,f,f,f,t,0.2,t,5,t,223,t,1.69,t,131,f,?,STMW,negative
+66,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.5,t,1.6,t,73,t,0.8,t,92,f,?,other,negative
+62,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,0.2,t,0.8,t,124,t,0.9,t,137,f,?,SVI,negative
+54,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1,t,2.4,t,107,t,1.06,t,101,f,?,other,negative
+63,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,33,t,1.5,t,128,f,?,f,?,f,?,other,compensated_hypothyroid
+27,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.02,t,5.3,t,272,t,0.97,t,281,f,?,other,negative
+72,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.05,t,1.1,t,108,t,0.66,t,165,f,?,SVI,negative
+40,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,12,f,?,t,97,t,1.01,t,97,f,?,other,compensated_hypothyroid
+61,F,f,f,f,f,f,f,f,f,f,f,t,f,f,f,t,0.15,t,2.1,t,97,t,1.03,t,95,f,?,other,negative
+56,F,t,f,f,f,f,f,f,t,f,f,f,f,f,f,t,0.2,t,2.1,t,136,f,?,f,?,f,?,other,negative
+38,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.3,t,2.8,t,122,t,1.1,t,111,f,?,other,negative
+37,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.25,t,2.5,t,111,t,0.97,t,114,f,?,other,negative
+67,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+56,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,t,2.1,t,113,t,0.94,t,120,f,?,other,negative
+36,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.59,t,1.5,t,116,t,0.93,t,124,f,?,other,negative
+60,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.1,t,2.2,t,107,t,0.95,t,113,f,?,SVI,negative
+53,F,f,f,f,f,f,f,f,f,f,f,f,t,f,f,t,0.85,t,2,t,103,t,0.93,t,111,f,?,other,negative
+29,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.3,t,2.8,t,144,t,1.17,t,123,f,?,other,negative
+71,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.9,t,2.9,t,111,t,0.92,t,121,f,?,SVI,negative
+58,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.015,t,2.6,t,166,t,0.8,t,207,f,?,SVI,negative
+55,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.1,t,2.2,t,84,t,0.85,t,99,f,?,other,negative
+22,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.2,t,2.9,t,107,t,1.01,t,106,f,?,other,negative
+84,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.04,f,?,t,213,t,0.99,t,216,f,?,other,negative
+64,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+57,F,f,f,f,f,f,f,f,f,f,f,f,t,f,f,t,0.065,t,4.2,t,235,t,1.1,t,214,f,?,other,negative
+85,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.25,t,2.3,t,128,t,1.06,t,121,f,?,SVI,negative
+66,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2,f,?,t,134,t,0.98,t,137,f,?,SVI,negative
+54,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.035,t,1.9,t,100,t,1.11,t,90,f,?,other,negative
+77,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.7,t,2.2,t,72,t,1.18,t,62,f,?,SVI,negative
+49,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.2,t,2.3,t,92,f,?,f,?,f,?,other,negative
+22,F,t,f,f,f,f,f,f,f,t,f,f,f,f,f,t,0.2,t,2.3,t,147,t,1.01,t,145,f,?,other,negative
+64,F,f,f,f,f,f,f,t,f,f,f,f,f,f,f,t,1.3,t,2.6,t,118,t,1.11,t,106,f,?,other,negative
+28,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.2,f,?,t,166,t,1.46,t,115,f,?,other,negative
+56,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+26,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.4,t,2.1,t,112,f,?,f,?,f,?,other,negative
+28,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,7.1,t,1.7,t,96,t,0.89,t,108,f,?,SVI,compensated_hypothyroid
+55,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+38,F,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,2.2,f,?,t,93,t,1.15,t,81,f,?,other,negative
+74,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.73,t,2.3,t,122,t,0.8,t,152,f,?,other,negative
+60,F,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,2,t,2.2,t,128,t,1.24,t,103,f,?,SVHD,negative
+44,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,199,t,0.6,t,10,t,1.03,t,10,f,?,SVI,primary_hypothyroid
+42,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.8,t,2,t,68,t,0.87,t,78,f,?,other,negative
+49,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.2,t,2,t,94,t,0.97,t,98,f,?,SVHC,negative
+22,F,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,2.7,t,2.4,t,157,t,1.2,t,131,f,?,SVHC,negative
+38,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,2,t,1.9,t,139,t,0.96,t,145,f,?,SVHC,negative
+64,F,t,f,f,f,f,f,t,t,f,f,f,f,f,f,t,0.73,t,2,t,152,t,1.15,t,131,f,?,other,negative
+64,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1,t,1.5,t,126,t,0.86,t,147,f,?,other,negative
+73,F,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,0.8,t,1.9,t,121,t,1.01,t,119,f,?,other,negative
+34,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,19,t,3.9,t,146,t,1.16,t,125,f,?,other,compensated_hypothyroid
+71,F,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,1.9,t,1.5,t,135,t,1.06,t,127,f,?,other,negative
+25,F,f,f,f,f,f,t,f,f,f,f,f,f,f,f,t,14,f,?,t,81,t,0.9,t,90,f,?,other,negative
+68,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,24,t,1.3,t,84,t,0.82,t,102,f,?,SVI,compensated_hypothyroid
+72,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.005,t,2.5,t,231,t,0.92,t,251,f,?,other,negative
+51,F,f,f,f,f,f,t,f,f,f,f,f,f,f,f,t,1,t,2.2,t,69,t,1.04,t,66,f,?,other,negative
+31,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3,t,2.1,t,86,t,0.99,t,86,f,?,STMW,negative
+59,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.2,f,?,t,82,t,0.73,t,112,f,?,other,negative
+77,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.07,t,0.9,t,61,t,0.99,t,61,f,?,other,negative
+50,M,t,f,f,f,f,f,f,t,f,f,f,f,f,f,t,15,t,2,t,71,t,1.08,t,66,f,?,other,negative
+78,M,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,8.2,f,?,f,?,f,?,f,?,f,?,other,negative
+57,M,f,f,f,f,f,f,f,f,f,f,t,f,f,f,f,?,f,?,t,88,t,0.86,t,102,f,?,other,negative
+31,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,188,t,1.3,t,63,t,1.19,t,53,f,?,other,primary_hypothyroid
+42,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.2,t,1.9,t,151,t,0.98,t,154,f,?,SVHC,negative
+30,M,f,t,f,f,f,f,f,f,f,f,f,f,f,f,f,?,t,1.8,t,96,t,0.93,t,103,f,?,other,negative
+36,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,0.22,t,4,t,191,t,0.98,t,194,f,?,other,negative
+73,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1,t,1.4,t,48,t,1.05,t,46,f,?,SVI,negative
+57,F,f,f,f,f,f,f,t,f,f,f,f,f,f,f,t,0.1,t,2.4,t,81,t,0.89,t,91,f,?,other,negative
+70,F,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,0.3,t,1.8,t,98,t,0.93,t,105,f,?,SVHD,negative
+47,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,11,t,2.6,t,91,f,?,f,?,f,?,other,compensated_hypothyroid
+60,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,98,t,0.4,t,5.8,t,0.8,t,7,f,?,SVI,primary_hypothyroid
+66,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.9,t,2.2,t,110,t,1.21,t,91,f,?,other,negative
+51,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.04,t,3.7,t,169,t,1.14,t,148,f,?,SVI,negative
+40,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+74,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,22,t,1.2,t,71,t,1.11,t,64,f,?,SVI,primary_hypothyroid
+72,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.08,f,?,t,133,t,0.84,t,158,f,?,other,negative
+66,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.1,f,?,t,117,t,1.08,t,108,f,?,other,negative
+70,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.12,f,?,t,124,t,0.96,t,129,f,?,other,negative
+74,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.5,f,?,t,175,t,1.15,t,153,f,?,other,negative
+21,F,f,f,f,f,t,f,f,f,f,f,f,t,f,f,t,0.2,t,2.5,t,108,t,1.13,t,96,f,?,STMW,negative
+45,F,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,0.005,f,?,t,132,t,0.9,t,147,f,?,SVI,negative
+55,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.6,t,1.7,t,76,t,0.65,t,116,f,?,SVHC,negative
+62,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,6.6,t,2.2,t,99,t,1.16,t,85,f,?,other,compensated_hypothyroid
+15,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.3,f,?,t,102,t,0.97,t,105,f,?,other,negative
+85,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1,t,1.1,t,110,t,1.08,t,102,f,?,SVI,negative
+76,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1,t,2.9,t,100,t,1.02,t,98,f,?,SVHC,negative
+49,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.7,t,2.3,t,123,t,1.15,t,106,f,?,SVI,negative
+56,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.66,t,1.7,t,114,t,0.89,t,128,f,?,SVI,negative
+63,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+71,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,5.1,t,1.8,t,87,t,0.89,t,98,f,?,other,negative
+39,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.3,f,?,f,?,f,?,f,?,f,?,SVI,negative
+34,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.01,t,2.3,t,149,t,0.88,t,169,f,?,other,negative
+85,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.2,t,1.3,t,111,t,0.94,t,118,f,?,SVI,negative
+66,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.3,f,?,t,78,t,1.02,t,77,f,?,SVI,negative
+29,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.1,t,3.8,t,161,t,1.74,t,93,f,?,STMW,negative
+46,F,f,f,f,f,f,f,f,f,t,t,f,f,f,f,t,1.7,t,1.1,t,94,t,0.91,t,103,f,?,SVI,negative
+67,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.9,f,?,t,152,t,1.13,t,135,f,?,other,negative
+59,F,f,f,f,f,f,f,f,f,f,f,f,t,f,f,t,0.06,t,2.5,t,121,t,1.25,t,97,f,?,other,negative
+70,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2,t,2.5,t,102,t,0.92,t,111,f,?,other,negative
+18,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.2,t,1.9,t,83,t,1.08,t,77,f,?,STMW,negative
+48,F,f,f,f,f,f,f,f,f,t,f,f,t,f,f,t,0.42,t,2.5,t,93,t,1.14,t,82,f,?,other,negative
+69,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.2,t,2.3,t,135,t,1.07,t,127,f,?,other,negative
+76,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.61,t,1.5,t,112,t,0.98,t,114,f,?,SVI,negative
+25,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,SVHC,negative
+45,F,f,f,f,f,f,f,t,f,f,f,f,f,f,f,t,0.065,t,4.6,t,210,t,1.11,t,190,f,?,other,negative
+44,M,f,f,f,f,f,f,f,f,f,f,t,f,f,f,t,0.89,f,?,t,40,t,0.96,t,42,f,?,SVI,negative
+28,F,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,2.5,t,2.9,t,86,t,1.19,t,72,f,?,SVHC,negative
+25,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.09,t,2.2,t,181,t,1.23,t,147,f,?,other,negative
+43,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.92,t,2.3,t,93,t,0.86,t,108,f,?,SVHC,negative
+23,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.4,t,2,t,156,t,1.17,t,134,f,?,SVHC,negative
+78,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.05,t,2,t,114,t,0.85,t,134,f,?,other,negative
+23,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,t,67,t,0.98,t,68,f,?,other,negative
+20,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,0.9,t,2.4,t,123,t,0.99,t,125,f,?,other,negative
+75,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+70,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.4,t,1.7,t,97,t,0.79,t,122,f,?,SVI,negative
+71,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1,t,1.7,t,79,t,0.95,t,83,f,?,other,negative
+53,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.6,t,1.8,t,81,t,1.16,t,70,f,?,other,negative
+71,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.2,t,2.6,t,105,t,1.02,t,103,f,?,other,negative
+73,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,t,2.1,f,?,f,?,f,?,f,?,other,negative
+60,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.02,t,1.6,t,155,t,0.72,t,216,f,?,other,negative
+40,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+34,M,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.3,t,2.7,t,104,t,1.01,t,103,f,?,other,negative
+22,F,f,f,t,f,f,f,f,f,f,f,f,f,f,f,t,1.3,t,1.8,t,118,t,0.96,t,123,f,?,other,negative
+66,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,0.005,t,1.5,t,76,t,0.85,t,89,f,?,SVI,negative
+37,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.4,t,1.7,t,71,t,0.72,t,99,f,?,SVHC,negative
+53,M,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,3.8,t,2.5,t,105,t,1.04,t,101,f,?,SVI,negative
+23,M,t,f,f,f,f,f,f,t,f,f,f,f,f,f,t,0.05,t,3.3,t,232,t,1.34,t,174,f,?,other,negative
+42,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,7.6,t,2.3,t,131,t,1.15,t,113,f,?,other,negative
+67,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.15,t,2.9,t,99,t,1.14,t,88,f,?,SVI,negative
+41,F,t,f,f,f,f,f,f,f,t,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+42,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,5.2,t,1.4,t,58,t,0.83,t,69,f,?,SVI,negative
+80,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.1,t,1.3,t,118,t,1.12,t,105,f,?,other,negative
+37,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.2,t,2,t,103,t,1.09,t,95,f,?,SVI,negative
+28,F,f,f,f,f,f,f,f,f,f,f,f,t,f,f,t,35,t,2.3,t,42,t,1.01,t,41,f,?,SVI,primary_hypothyroid
+21,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.9,t,1.8,t,84,t,0.75,t,113,f,?,other,negative
+43,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.89,t,2,t,94,f,?,f,?,f,?,other,negative
+72,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,4,t,3.2,t,106,t,0.87,t,122,f,?,other,negative
+54,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.7,t,1.9,t,111,t,0.99,t,112,f,?,SVI,negative
+51,M,t,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,t,71,t,0.87,t,82,f,?,other,negative
+70,F,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,0.78,t,1.9,t,136,t,0.9,t,152,f,?,SVI,negative
+64,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.2,f,?,t,98,t,0.72,t,136,f,?,other,negative
+61,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.01,t,2.1,t,159,t,1.13,t,140,f,?,SVHD,negative
+74,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,1.3,t,1.8,t,96,t,1.06,t,90,f,?,SVHC,negative
+28,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.9,t,4.5,t,204,t,2.03,t,100,f,?,STMW,negative
+56,F,f,f,t,f,f,f,f,f,f,f,f,f,f,f,t,8.2,t,2,t,66,t,0.94,t,70,f,?,other,compensated_hypothyroid
+59,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.6,t,2,t,106,t,0.87,t,121,f,?,other,negative
+41,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,0.15,t,7.3,t,430,t,1.09,t,395,f,?,STMW,negative
+87,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.3,t,1.5,t,100,t,1.2,t,83,f,?,SVI,negative
+55,M,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,0.3,f,?,t,76,t,1.01,t,76,f,?,SVI,negative
+61,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.63,t,1.8,t,120,t,0.91,t,132,f,?,other,negative
+56,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3,t,2.3,t,128,t,1.14,t,112,f,?,other,negative
+44,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.7,t,1.3,t,93,t,0.87,t,107,f,?,SVI,negative
+63,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,4.5,t,1.5,t,93,t,0.87,t,107,f,?,SVI,negative
+59,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.1,t,2,t,102,t,0.82,t,125,f,?,other,negative
+60,M,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,0.2,t,2.1,t,105,t,1.09,t,97,f,?,SVI,negative
+42,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.05,t,2.6,t,122,t,1.16,t,105,f,?,other,negative
+36,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.8,t,2.3,t,72,t,1.05,t,68,f,?,other,negative
+26,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.3,t,1.8,t,93,t,1.19,t,78,f,?,other,negative
+44,F,f,f,f,f,f,f,f,f,f,f,t,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+58,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.1,t,2.9,t,96,t,1.03,t,93,f,?,SVI,negative
+70,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.4,t,1.8,t,88,t,1.14,t,76,f,?,other,negative
+72,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.05,t,0.9,t,93,t,0.97,t,97,f,?,SVI,negative
+64,F,f,f,f,f,f,f,f,f,f,f,f,t,f,f,t,0.1,f,?,t,113,t,0.91,t,125,f,?,other,negative
+87,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.5,t,1.7,t,140,t,0.96,t,147,f,?,other,negative
+73,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,4.1,t,2.2,t,145,t,1.34,t,108,f,?,other,negative
+56,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.9,t,1.4,t,62,t,0.72,t,85,f,?,SVI,negative
+1,M,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,6.6,t,1.7,t,68,f,?,f,?,f,?,other,compensated_hypothyroid
+59,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,t,2.2,f,?,f,?,f,?,f,?,other,negative
+51,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.1,t,2.2,f,?,f,?,t,95,f,?,other,negative
+37,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,12,t,1.2,t,105,t,0.84,t,125,f,?,other,compensated_hypothyroid
+35,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.5,t,2,t,93,t,1.01,t,93,f,?,other,negative
+56,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.52,t,2.4,t,158,t,1.18,t,134,f,?,SVHC,negative
+72,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.4,t,1.3,t,91,t,1.02,t,89,f,?,SVI,negative
+37,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.4,t,2.7,t,155,t,1.43,t,109,f,?,SVHC,negative
+88,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.9,f,?,t,78,t,0.78,t,100,f,?,other,negative
+33,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.01,t,1.5,t,160,t,0.87,t,185,f,?,SVI,negative
+63,F,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,0.74,f,?,t,74,t,0.77,t,97,f,?,other,negative
+59,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,1.1,t,2,t,95,t,0.85,t,111,f,?,SVHC,negative
+38,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.3,t,2.5,t,88,t,0.95,t,93,f,?,other,negative
+35,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,5.2,f,?,t,95,t,1.11,t,85,f,?,STMW,negative
+55,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,6.1,t,2.3,t,88,t,0.91,t,97,f,?,SVI,compensated_hypothyroid
+34,F,f,f,f,f,t,f,f,f,t,f,f,f,f,f,t,0.06,t,4.7,t,157,t,1.68,t,94,f,?,other,negative
+71,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.5,t,2.2,t,198,t,1.23,t,160,f,?,other,negative
+38,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3,t,1.7,t,84,t,0.99,t,85,f,?,SVI,negative
+63,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.4,t,1.4,t,115,t,1.02,t,113,f,?,SVI,negative
+50,F,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,3.3,t,2.1,t,107,t,1.07,t,100,f,?,other,negative
+34,F,t,f,f,f,f,f,f,t,f,f,f,f,f,f,t,0.25,t,6.7,t,230,t,1.73,t,133,f,?,STMW,negative
+59,F,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,7.1,t,1.9,t,98,t,1.11,t,88,f,?,SVHD,compensated_hypothyroid
+44,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,11,t,0.8,t,86,t,0.66,t,130,f,?,SVI,compensated_hypothyroid
+60,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.6,t,2.4,t,101,t,1.18,t,86,f,?,other,negative
+30,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,t,90,t,0.92,t,98,f,?,other,negative
+36,F,f,f,f,f,t,f,f,f,f,f,f,t,f,f,t,0.04,f,?,t,149,t,1.65,t,90,f,?,other,negative
+72,F,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,1.4,t,1.6,t,118,t,1.01,t,117,f,?,SVHC,negative
+53,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,60,t,0.3,t,13,t,0.99,t,13,f,?,other,primary_hypothyroid
+58,M,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.6,f,?,t,164,t,1.1,t,149,f,?,SVI,negative
+70,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+46,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.1,t,2.8,t,143,t,1.3,t,110,f,?,SVI,negative
+57,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.43,f,?,t,96,t,0.88,t,109,f,?,other,negative
+20,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.4,t,3.1,t,135,f,?,f,?,f,?,other,negative
+41,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.5,t,1.8,t,95,t,0.9,t,106,f,?,other,negative
+56,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,5,t,1.7,t,60,t,0.77,t,78,f,?,other,negative
+35,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,1.7,t,2.4,t,102,t,1.06,t,96,f,?,SVHC,negative
+56,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.87,t,2,t,95,t,0.91,t,105,f,?,other,negative
+65,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,55,t,0.7,t,15,t,1.08,t,14,f,?,SVI,primary_hypothyroid
+22,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,5.6,t,3,t,123,t,1.22,t,101,f,?,SVI,negative
+70,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.1,t,1.8,t,170,t,0.99,t,171,f,?,SVHD,negative
+26,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.9,t,2.4,t,90,t,0.92,t,98,f,?,other,negative
+30,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.3,t,1.7,t,93,t,0.96,t,98,f,?,other,negative
+71,F,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,0.16,t,2.4,t,165,t,1.35,t,123,f,?,SVI,negative
+64,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.9,t,1.7,t,77,t,0.9,t,85,f,?,SVHC,negative
+63,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.88,t,2.2,t,101,t,1.03,t,97,f,?,SVI,negative
+54,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.5,t,0.4,t,56,t,0.68,t,83,f,?,SVI,negative
+35,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+35,F,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,2.3,t,2.4,t,130,t,1.11,t,117,f,?,other,negative
+19,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.2,f,?,t,85,t,0.95,t,90,f,?,other,negative
+61,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,6.9,f,?,t,126,t,1.36,t,93,f,?,other,compensated_hypothyroid
+54,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.4,t,2.2,t,116,t,1.03,t,112,f,?,SVI,negative
+68,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.3,t,2.2,t,99,t,0.86,t,115,f,?,SVI,negative
+53,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.6,t,2.1,t,117,t,1.09,t,107,f,?,SVI,negative
+24,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.4,t,2.8,t,122,t,1.13,t,109,f,?,other,negative
+59,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.3,t,2.1,t,82,t,0.88,t,93,f,?,other,negative
+37,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,22,t,1.4,t,71,t,0.97,t,73,f,?,other,compensated_hypothyroid
+20,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+41,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+67,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.2,t,1.9,t,109,t,1.03,t,106,f,?,SVI,negative
+58,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2,t,1.7,t,144,t,0.94,t,153,f,?,other,negative
+73,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.84,t,2,t,101,t,1.04,t,97,f,?,SVHD,negative
+41,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.6,t,2.3,t,114,f,?,f,?,f,?,other,negative
+21,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.1,t,3.1,t,164,t,0.81,t,201,f,?,other,negative
+44,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,t,118,t,0.95,t,124,f,?,other,negative
+29,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,1.7,t,2.3,t,135,t,0.97,t,140,f,?,SVHC,negative
+29,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+27,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,3.2,t,2.4,t,102,t,0.88,t,116,f,?,SVHC,negative
+60,F,f,f,f,f,f,f,t,t,f,f,f,f,f,f,t,5.9,f,?,t,126,t,1.13,t,111,f,?,other,negative
+42,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.3,t,2.3,t,128,t,0.85,t,151,f,?,other,negative
+38,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1,t,2,t,131,t,0.95,t,138,f,?,SVI,negative
+79,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,29,t,1.6,t,47,t,0.97,t,48,f,?,other,primary_hypothyroid
+33,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,1.3,t,2.2,t,120,t,0.96,t,126,f,?,SVHC,negative
+83,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.38,t,2.1,t,90,t,0.88,t,102,f,?,other,negative
+69,M,t,f,f,f,f,f,t,f,f,f,f,f,f,f,t,1.3,t,2,t,121,t,1.07,t,113,f,?,other,negative
+74,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.4,t,2.7,t,101,t,0.96,t,105,f,?,other,negative
+64,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,1.3,t,2.4,t,111,t,1.15,t,97,f,?,SVHC,negative
+40,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.6,t,1.8,t,62,t,0.85,t,73,f,?,other,negative
+23,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.5,t,3.4,t,165,t,1.52,t,108,f,?,STMW,negative
+56,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,5.4,t,1.7,t,104,t,1.01,t,103,f,?,SVI,negative
+48,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.02,t,2.2,t,127,t,1.05,t,121,f,?,other,negative
+70,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2,t,1.3,t,106,t,0.84,t,125,f,?,SVI,negative
+53,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.3,t,1.2,t,105,t,0.91,t,115,f,?,SVHC,negative
+83,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.4,t,1.3,t,101,t,0.86,t,117,f,?,SVI,negative
+26,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+73,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2,t,1.6,t,162,t,0.94,t,173,f,?,other,negative
+72,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.3,t,2,t,130,f,?,f,?,f,?,other,negative
+22,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.9,t,2.1,t,76,t,0.79,t,96,f,?,other,negative
+62,M,f,f,f,t,f,f,f,t,f,f,f,f,f,t,t,13,t,0.8,t,83,t,0.81,t,103,f,?,SVHC,compensated_hypothyroid
+52,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2,t,1.8,t,93,t,0.99,t,95,f,?,other,negative
+57,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.9,t,2.1,t,93,t,0.9,t,104,f,?,SVI,negative
+73,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.42,t,3,t,91,t,1.15,t,79,f,?,other,negative
+69,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,4.9,f,?,t,73,t,0.93,t,79,f,?,other,negative
+43,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+42,?,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.05,t,2,t,129,t,1.02,t,126,f,?,other,negative
+70,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1,t,2,t,91,t,0.95,t,96,f,?,SVI,negative
+39,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.4,t,2.4,t,112,t,1.03,t,109,f,?,other,negative
+61,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,4.3,t,1.8,t,124,t,0.99,t,125,f,?,other,negative
+65,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.015,t,3.1,t,168,t,0.98,t,171,f,?,other,negative
+44,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.41,t,0.8,t,105,t,0.82,t,127,f,?,SVI,negative
+42,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,7.2,t,2.1,t,123,t,1.18,t,104,f,?,other,compensated_hypothyroid
+61,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,6.2,t,1.2,t,83,t,0.82,t,101,f,?,SVI,compensated_hypothyroid
+77,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,9.9,f,?,t,121,t,1.02,t,118,f,?,other,negative
+35,M,f,t,f,f,f,f,f,f,f,f,f,f,f,f,t,0.035,t,1.7,t,114,t,0.98,t,115,f,?,other,negative
+70,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,1.9,t,1.8,t,114,t,1.02,t,112,f,?,SVHC,negative
+68,M,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,6.7,t,1.4,t,101,f,?,f,?,f,?,SVI,compensated_hypothyroid
+13,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.9,t,3.3,t,113,t,1.23,t,92,f,?,other,negative
+55,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.6,t,1.5,t,113,t,0.97,t,117,f,?,other,negative
+19,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.1,t,2.9,t,135,t,0.81,t,167,f,?,SVHC,negative
+53,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1,t,2.2,t,108,t,0.89,t,121,f,?,other,negative
+69,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.3,t,1.4,t,88,t,0.86,t,102,f,?,SVI,negative
+46,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.2,f,?,t,119,t,0.9,t,131,f,?,other,negative
+60,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.005,f,?,t,103,t,0.65,t,158,f,?,other,negative
+48,F,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,1.6,t,1,t,71,t,0.81,t,88,f,?,SVHD,negative
+38,F,f,f,f,f,f,f,f,f,f,f,f,t,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+37,M,t,f,f,f,f,f,f,f,f,f,f,t,f,f,t,11,t,1.2,t,74,t,0.77,t,96,f,?,SVHC,negative
+14,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.6,t,1.2,t,103,t,0.88,t,118,f,?,SVI,negative
+72,F,f,f,f,t,f,f,f,t,f,f,f,f,f,f,t,6,t,2.4,t,118,t,1.26,t,94,f,?,SVI,negative
+37,F,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,1.6,t,2.2,t,104,t,0.99,t,105,f,?,other,negative
+65,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.5,t,2.2,t,97,t,0.87,t,111,f,?,other,negative
+47,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,5.6,t,1.9,t,81,t,1,t,82,f,?,SVI,negative
+29,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,t,1.4,t,76,t,0.57,t,132,f,?,other,negative
+23,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.6,t,1.8,t,107,t,1.06,t,101,f,?,other,negative
+36,F,t,f,f,f,t,f,f,f,f,f,f,f,f,f,t,0.025,t,2.9,t,194,t,1.63,t,119,f,?,other,negative
+46,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.2,t,1.2,t,122,t,0.94,t,131,f,?,SVI,negative
+70,F,f,f,f,t,f,f,f,t,f,f,f,f,f,f,t,2.1,t,1.7,t,131,t,1,t,130,f,?,SVHD,negative
+30,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.9,t,1.4,t,113,t,0.83,t,136,f,?,other,negative
+65,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.3,t,2.1,t,111,t,0.99,t,112,f,?,other,negative
+36,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,7.5,t,4.1,t,139,t,1.65,t,84,f,?,SVI,compensated_hypothyroid
+86,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.7,t,1.6,t,124,t,1.01,t,122,f,?,SVI,negative
+49,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2,t,2.1,t,79,t,0.87,t,91,f,?,SVHC,negative
+33,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.6,t,1.3,t,89,t,0.9,t,98,f,?,SVHC,negative
+62,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.76,f,?,t,105,t,0.85,t,124,f,?,other,negative
+68,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.92,f,?,t,98,t,0.79,t,125,f,?,other,negative
+39,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.1,t,1.8,t,90,t,0.71,t,126,f,?,other,negative
+19,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.4,t,1.9,t,111,t,1.08,t,102,f,?,other,negative
+35,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.7,t,1.7,t,101,f,?,f,?,f,?,other,negative
+84,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,34,t,0.7,t,52,t,1.11,t,47,f,?,SVI,primary_hypothyroid
+75,F,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,2.3,t,1.3,t,88,t,0.85,t,103,f,?,SVI,negative
+64,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,10,t,0.8,t,99,t,0.97,t,102,f,?,SVI,compensated_hypothyroid
+72,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.3,t,1.2,t,77,t,0.85,t,91,f,?,SVI,negative
+82,F,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,0.2,t,1.4,t,113,t,0.85,t,132,f,?,SVI,negative
+74,F,f,f,f,f,f,t,f,f,f,f,f,f,f,f,t,1.4,f,?,t,109,t,0.96,t,114,f,?,other,negative
+77,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.5,t,1.7,t,101,t,0.85,t,119,f,?,SVI,negative
+58,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,0.005,t,3.9,t,181,t,0.96,t,188,f,?,SVI,negative
+54,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.75,t,2.3,t,109,t,1.14,t,95,f,?,SVHD,negative
+62,F,f,f,f,f,f,t,f,f,f,f,f,f,f,f,t,6.5,t,1.8,t,97,t,1.29,t,76,f,?,SVI,negative
+19,M,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.005,t,2,t,147,t,0.9,t,163,f,?,other,negative
+74,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.33,t,2.3,t,99,t,0.98,t,101,f,?,other,negative
+20,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,1.6,t,2.4,t,93,t,0.92,t,101,f,?,SVI,negative
+27,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,t,2.2,f,?,f,?,f,?,f,?,other,negative
+69,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.5,t,1.8,t,136,t,0.92,t,149,f,?,other,negative
+44,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.7,t,1.9,t,108,t,1.04,t,103,f,?,SVHC,negative
+72,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.01,t,1.8,t,151,t,0.94,t,161,f,?,SVI,negative
+53,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,1.7,t,1.9,t,110,t,0.73,t,150,f,?,SVHC,negative
+20,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.1,t,1.9,t,94,t,0.91,t,102,f,?,other,negative
+60,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.7,t,1.6,t,130,t,1.05,t,123,f,?,SVI,negative
+20,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.7,t,2.4,t,113,t,1.34,t,84,f,?,SVI,negative
+55,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.02,t,2.2,t,71,t,1,t,71,f,?,SVI,negative
+72,F,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,1.3,t,1,t,101,t,0.8,t,127,f,?,SVI,negative
+36,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.1,t,2.4,t,179,t,1.36,t,131,f,?,other,negative
+47,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.2,t,1.5,t,61,t,0.91,t,67,f,?,other,negative
+70,F,f,f,f,f,f,f,f,f,f,f,f,t,f,f,t,1.6,t,1.8,t,107,t,1.11,t,97,f,?,other,negative
+58,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+37,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.72,t,2.8,t,110,t,0.99,t,111,f,?,other,negative
+67,F,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,0.52,t,1.4,t,129,t,0.96,t,134,f,?,other,negative
+45,F,f,f,f,f,f,f,f,f,f,t,f,f,f,t,t,1.6,t,1.8,t,89,t,0.8,t,112,f,?,SVHC,negative
+72,F,f,f,f,t,f,f,f,f,t,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+31,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.7,t,2.2,t,116,t,1.14,t,102,f,?,SVHC,negative
+54,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.25,t,2.9,t,101,t,1,t,100,f,?,other,negative
+77,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,1.3,t,1.8,t,104,t,1.04,t,100,f,?,other,negative
+31,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,5.1,f,?,t,93,t,0.97,t,95,f,?,other,negative
+17,F,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,0.9,t,1.4,t,111,t,1.02,t,109,f,?,other,negative
+16,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,9.7,f,?,t,98,t,1.3,t,76,f,?,other,compensated_hypothyroid
+39,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.93,t,2.6,t,130,t,1.13,t,115,f,?,other,negative
+62,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.1,t,0.7,t,71,t,0.74,t,96,f,?,other,negative
+51,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,4.7,f,?,t,111,t,1,t,112,f,?,other,negative
+29,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.8,t,1.8,t,99,f,?,f,?,f,?,other,negative
+40,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.4,t,2.1,t,112,t,1.25,t,90,f,?,SVI,negative
+59,F,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,2.8,f,?,t,134,t,1.05,t,128,f,?,other,negative
+58,F,f,f,f,f,f,f,f,f,f,t,f,f,f,f,t,3,f,?,t,115,t,1.07,t,107,f,?,SVI,negative
+16,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.2,f,?,t,113,t,0.95,t,119,f,?,other,negative
+28,F,f,f,f,f,f,t,f,f,f,f,f,f,f,f,t,103,t,2.1,t,65,t,1.16,t,56,f,?,SVI,primary_hypothyroid
+36,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.1,t,2.3,t,101,t,0.94,t,107,f,?,other,negative
+58,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.3,f,?,t,123,t,0.93,t,132,f,?,other,negative
+65,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.5,f,?,t,106,t,1.08,t,98,f,?,other,negative
+54,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,t,1.6,t,60,t,0.65,t,92,f,?,other,negative
+14,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,t,100,t,1.09,t,91,f,?,other,negative
+69,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.02,t,2.4,t,136,t,0.92,t,148,f,?,other,negative
+68,F,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,0.41,f,?,t,123,t,0.98,t,125,f,?,other,negative
+45,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+62,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.45,t,1.6,t,101,t,0.89,t,114,f,?,other,negative
+28,F,f,t,f,f,f,f,f,f,f,f,f,f,f,f,t,9.4,t,2.6,t,89,t,1.02,t,87,f,?,other,compensated_hypothyroid
+65,?,t,f,f,f,f,f,t,t,f,f,f,f,f,f,t,0.03,t,1.9,t,151,t,0.89,t,169,f,?,other,negative
+27,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.3,t,1.7,t,92,f,?,f,?,f,?,SVHC,negative
+61,M,f,f,f,t,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+68,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.95,t,2,t,109,t,1.15,t,94,f,?,SVI,negative
+62,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.5,t,1.7,t,98,t,0.74,t,132,f,?,SVHC,negative
+47,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.6,t,1.7,t,94,f,?,f,?,f,?,other,negative
+54,F,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,2.1,t,2.5,t,128,t,1.12,t,114,f,?,other,negative
+69,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,t,109,t,1.03,t,106,f,?,other,negative
+46,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.1,t,3.2,t,160,t,1.53,t,105,f,?,other,negative
+46,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.5,f,?,t,109,t,1.11,t,98,f,?,other,negative
+65,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.14,t,5.3,t,129,f,?,f,?,f,?,other,negative
+23,F,f,f,f,f,f,f,f,f,f,f,f,t,f,f,t,0.01,t,2.9,t,205,t,0.87,t,235,f,?,other,negative
+57,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+84,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,12,f,?,t,101,t,1.08,t,94,f,?,other,compensated_hypothyroid
+37,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.7,t,2.6,t,98,t,0.95,t,103,f,?,SVI,negative
+52,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.97,t,2.3,t,125,t,1.06,t,117,f,?,other,negative
+81,F,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,0.5,t,2.2,t,102,t,0.85,t,119,f,?,SVI,negative
+36,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.2,t,3.2,t,187,t,1.74,t,107,f,?,STMW,negative
+59,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.5,t,2.1,t,77,t,0.72,t,107,f,?,SVI,negative
+67,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.4,t,2.1,t,132,t,1.13,t,116,f,?,SVI,negative
+41,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.005,t,1.3,t,95,t,0.79,t,120,f,?,SVHC,negative
+60,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,3.8,t,2.2,t,76,t,1.3,t,58,f,?,other,negative
+71,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.3,t,1.2,t,98,f,?,f,?,f,?,other,negative
+74,?,f,f,f,f,f,f,t,f,f,f,f,f,f,f,t,0.5,t,2.4,t,100,t,1.07,t,93,f,?,other,negative
+74,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.65,t,0.9,t,92,t,0.71,t,129,f,?,SVI,negative
+74,F,f,f,f,f,f,f,t,f,f,f,f,f,f,f,t,6.9,f,?,t,97,t,0.87,t,112,f,?,other,compensated_hypothyroid
+53,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,0.6,t,2.6,t,136,t,1.19,t,114,f,?,SVHC,negative
+71,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.02,t,2.2,t,165,t,0.89,t,186,f,?,SVI,negative
+59,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,4.9,t,1.4,t,96,t,0.88,t,109,f,?,SVI,negative
+19,F,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,1.6,t,2.2,t,96,t,0.94,t,102,f,?,SVHC,negative
+53,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.9,f,?,t,88,t,1.05,t,84,f,?,other,negative
+59,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.5,t,2.1,t,103,t,0.91,t,113,f,?,SVHC,negative
+65,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.3,t,1.3,t,157,t,0.91,t,172,f,?,SVI,negative
+36,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.9,t,1,t,77,t,0.86,t,90,f,?,other,negative
+79,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.8,t,1.2,t,113,t,1.01,t,111,f,?,SVI,negative
+17,F,t,f,f,f,f,f,f,t,f,f,f,f,f,f,t,28,t,2,t,86,t,0.99,t,87,f,?,SVI,negative
+73,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.35,t,1.6,t,120,t,1.11,t,108,f,?,other,negative
+44,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,4.2,t,2.2,t,113,t,1.09,t,103,f,?,SVHC,negative
+40,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.2,t,1.6,t,95,t,0.99,t,96,f,?,SVHC,negative
+34,F,f,f,f,f,t,f,f,f,f,f,f,f,f,f,t,0.04,t,2.9,t,144,t,1.58,t,91,f,?,STMW,negative
+34,F,f,f,t,f,t,f,f,f,t,f,f,f,f,f,t,0.01,t,3.8,t,205,t,1.84,t,111,f,?,STMW,negative
+72,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.5,t,1.9,t,141,t,1.09,t,129,f,?,other,negative
+34,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,0.15,t,2.3,t,139,t,1.06,t,131,f,?,other,negative
+32,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+63,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.02,f,?,t,166,t,0.97,t,170,f,?,other,negative
+38,M,t,f,f,f,f,f,f,t,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+62,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.1,t,2.3,t,130,t,1.24,t,105,f,?,other,negative
+41,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1,t,1.5,t,100,t,0.86,t,116,f,?,other,negative
+22,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.2,t,1.8,t,157,t,0.9,t,175,f,?,other,negative
+69,F,t,f,f,f,f,f,t,f,f,f,f,f,f,f,t,1.3,t,1.7,t,116,t,0.95,t,122,f,?,other,negative
+70,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.9,t,1.8,t,94,t,0.82,t,115,f,?,SVI,negative
+52,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+52,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.9,t,2.7,t,114,t,1.31,t,87,f,?,other,negative
+79,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.8,t,1.9,t,108,t,0.93,t,116,f,?,SVI,negative
+84,M,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,0.67,t,0.9,t,70,t,0.78,t,90,f,?,SVI,negative
+67,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,0.15,t,1.6,t,94,t,0.87,t,108,f,?,SVHC,negative
+46,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.2,t,1.7,t,81,f,?,f,?,f,?,SVI,negative
+63,F,f,f,f,f,f,f,f,f,f,f,f,t,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+55,F,t,t,f,t,f,f,f,f,f,f,f,f,f,f,t,0.005,t,1.6,t,115,t,0.84,t,138,f,?,SVHD,negative
+40,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.6,t,1.9,t,142,t,0.91,t,156,f,?,other,negative
+63,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.9,f,?,t,118,t,1.02,t,115,f,?,other,negative
+78,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,t,2.1,f,?,f,?,f,?,f,?,other,negative
+57,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+29,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.5,t,2.5,t,80,t,0.88,t,91,f,?,SVI,negative
+18,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.73,f,?,t,194,t,0.97,t,200,f,?,STMW,negative
+70,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.5,t,2.3,t,141,t,1.2,t,117,f,?,SVI,negative
+38,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.2,t,1.5,t,48,t,0.71,t,67,f,?,other,negative
+48,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.5,t,3.5,t,166,t,1.35,t,123,f,?,SVI,negative
+71,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,8,f,?,t,66,t,0.66,t,100,f,?,other,compensated_hypothyroid
+72,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.6,t,2,t,106,t,1.05,t,101,f,?,SVHC,negative
+60,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.81,f,?,t,192,t,1.44,t,134,f,?,other,negative
+20,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,t,2.2,t,117,f,?,f,?,f,?,other,negative
+29,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,4.6,t,1.6,t,97,t,1.12,t,87,f,?,SVHC,negative
+55,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.4,t,1.8,t,103,t,0.89,t,115,f,?,other,negative
+35,F,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,0.4,f,?,t,135,t,0.84,t,160,f,?,SVHC,negative
+63,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.8,t,2.3,t,146,t,1.34,t,108,f,?,SVI,negative
+35,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2,t,2.6,t,102,t,1.13,t,91,f,?,SVI,negative
+45,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,24,f,?,f,?,f,?,f,?,f,?,SVI,primary_hypothyroid
+33,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.8,t,1.8,t,92,t,0.84,t,110,f,?,other,negative
+77,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,2,t,1.3,t,97,t,0.9,t,108,f,?,SVHC,negative
+25,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,11,t,0.7,t,122,t,1.13,t,108,f,?,SVI,compensated_hypothyroid
+32,F,f,f,f,f,f,t,f,f,f,f,f,f,f,f,t,1.8,t,2.2,t,101,t,1.13,t,90,f,?,other,negative
+53,F,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,2.4,t,3.7,t,172,t,1.67,t,103,f,?,other,negative
+66,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2,t,2.1,t,108,t,0.96,t,112,f,?,SVI,negative
+28,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.7,t,2.1,t,142,t,1.07,t,133,f,?,SVI,negative
+72,F,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,2.3,t,0.8,t,90,t,0.8,t,112,f,?,SVI,negative
+46,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.045,t,1.5,t,75,t,0.9,t,83,f,?,other,negative
+28,?,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.7,f,?,t,138,t,1.21,t,115,f,?,other,negative
+38,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.6,t,2.8,t,146,t,1.1,t,133,f,?,SVI,negative
+34,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.1,t,1.7,t,138,t,1.03,t,134,f,?,SVI,negative
+62,M,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.54,f,?,t,85,t,0.94,t,91,f,?,other,negative
+80,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,7.9,t,1.5,t,106,t,0.94,t,113,f,?,other,negative
+57,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+36,F,f,f,f,f,f,f,f,f,f,f,t,f,f,f,t,0.25,t,2.3,t,99,t,0.95,t,104,f,?,other,negative
+52,M,f,f,f,f,f,f,t,f,f,f,f,f,f,f,t,0.01,t,2.4,t,108,t,0.7,t,154,f,?,other,negative
+51,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.58,t,1.6,t,115,f,?,f,?,f,?,other,negative
+31,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.1,t,2.2,t,103,t,1.05,t,98,f,?,SVHC,negative
+37,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.5,t,3,t,114,t,0.93,t,122,f,?,SVHC,negative
+39,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.1,t,2,t,89,t,1.14,t,79,f,?,other,negative
+69,M,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,1.3,t,1.9,t,101,f,?,f,?,f,?,other,negative
+78,F,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,1,t,2.3,t,96,t,1.05,t,92,f,?,SVI,negative
+72,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.4,f,?,t,113,t,0.97,t,117,f,?,other,negative
+28,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,6.1,t,2.2,t,136,t,1.24,t,110,f,?,other,compensated_hypothyroid
+80,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.04,t,2,t,141,t,1.05,t,134,f,?,other,negative
+84,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.25,t,2.2,t,138,t,0.97,t,143,f,?,other,negative
+55,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.7,t,2.4,t,133,t,1,t,132,f,?,other,negative
+19,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.6,t,1.6,t,94,t,1.06,t,89,f,?,other,negative
+32,M,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,2.2,t,2,t,102,t,0.86,t,119,f,?,SVHC,negative
+58,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.2,t,1.9,t,93,t,0.84,t,111,f,?,other,negative
+30,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.08,t,1.9,t,147,t,1.03,t,143,f,?,other,negative
+47,F,f,f,f,f,f,f,f,f,f,t,f,f,f,f,t,2.2,t,2,t,108,t,1.08,t,100,f,?,SVHC,negative
+41,M,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,0.4,f,?,t,91,t,0.96,t,95,f,?,other,negative
+37,F,f,f,f,f,f,f,f,f,f,f,f,t,f,f,t,13,t,2.5,t,96,t,1.33,t,73,f,?,other,compensated_hypothyroid
+83,F,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,1.8,t,2.4,t,100,t,1.02,t,98,f,?,SVHC,negative
+28,F,f,f,t,f,f,f,f,f,t,f,f,f,f,f,t,0.15,t,1.9,t,75,t,1.12,t,67,f,?,other,negative
+57,F,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,2.1,f,?,t,76,t,1,t,75,f,?,other,negative
+23,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.2,t,1.6,t,105,t,0.87,t,120,f,?,SVI,negative
+60,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.035,t,2.3,t,160,t,1.05,t,151,f,?,other,negative
+25,F,f,f,f,t,f,f,f,t,f,f,f,f,f,f,t,8.9,t,1.7,t,62,t,0.75,t,83,f,?,SVHD,compensated_hypothyroid
+67,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.9,f,?,t,167,t,1.43,t,117,f,?,other,negative
+51,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.6,t,2.1,t,111,t,0.95,t,117,f,?,other,negative
+58,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,5.5,t,2.1,t,82,t,0.92,t,89,f,?,other,negative
+55,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+26,F,f,t,f,f,t,f,f,f,f,f,f,f,f,f,t,1.2,t,4,t,168,t,1.57,t,106,f,?,other,negative
+55,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.34,t,1.4,t,123,t,0.96,t,128,f,?,SVI,negative
+47,F,f,f,f,f,f,f,t,f,f,f,f,f,f,f,t,4.7,t,2.4,t,102,t,1.12,t,92,f,?,other,negative
+59,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,2,t,2.4,t,94,t,0.96,t,98,f,?,SVHC,negative
+58,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.05,t,2.4,t,103,t,0.97,t,107,f,?,SVI,negative
+78,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.7,t,1.5,t,88,t,0.87,t,101,f,?,SVI,negative
+73,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,1.8,t,2.1,t,103,t,0.92,t,112,f,?,SVHC,negative
+33,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.2,t,1.7,t,94,t,1,t,94,f,?,other,negative
+78,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.8,t,2.2,t,105,t,1.01,t,105,f,?,SVI,negative
+58,F,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,0.98,f,?,t,99,t,1.08,t,92,f,?,other,negative
+55,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,9.3,t,1.9,t,85,t,1.07,t,80,f,?,SVHC,compensated_hypothyroid
+75,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.3,t,2.1,t,117,t,0.95,t,123,f,?,SVI,negative
+19,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,9,f,?,t,95,t,0.87,t,110,f,?,other,compensated_hypothyroid
+49,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.02,f,?,t,123,f,?,f,?,f,?,other,negative
+71,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.6,t,1.3,t,93,t,0.81,t,115,f,?,other,negative
+55,M,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,2.5,t,1.9,t,109,t,1.04,t,104,f,?,SVI,negative
+22,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+22,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.7,t,2.3,t,111,t,1.02,t,108,f,?,other,negative
+73,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.01,t,3.4,t,133,t,0.84,t,159,f,?,other,negative
+58,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.9,t,1.5,t,88,t,0.84,t,105,f,?,SVI,negative
+48,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.3,t,0.9,t,105,t,0.61,t,173,f,?,SVI,negative
+40,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,42,t,0.2,t,4.8,t,0.9,t,5.4,f,?,other,primary_hypothyroid
+52,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.13,t,2.1,t,87,t,0.95,t,91,f,?,other,negative
+74,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.6,t,2.4,t,137,t,1.18,t,116,f,?,SVI,negative
+23,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.7,t,1,t,115,t,0.92,t,125,f,?,SVI,negative
+67,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,1.2,t,2.2,t,121,t,1.02,t,118,f,?,other,negative
+38,F,t,f,f,f,f,t,f,f,f,f,f,f,f,f,t,0.065,t,1.8,t,139,f,?,f,?,f,?,other,negative
+44,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.2,t,1.7,t,92,t,0.98,t,94,f,?,other,negative
+30,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.3,t,2.3,t,106,t,1.06,t,100,f,?,other,negative
+47,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,t,2,t,85,t,1.06,t,80,f,?,other,negative
+67,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.8,t,1.8,t,143,t,0.91,t,157,f,?,SVI,negative
+42,F,f,f,f,f,f,t,f,f,f,f,f,f,f,f,t,7.2,t,1.3,t,93,t,0.9,t,104,f,?,other,negative
+70,F,f,f,f,f,f,t,f,f,t,f,f,f,f,f,t,0.15,t,1.5,t,85,t,0.91,t,94,f,?,other,negative
+63,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.3,t,0.8,t,74,t,0.85,t,87,f,?,other,negative
+76,F,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,0.005,f,?,t,143,t,0.76,t,189,f,?,other,negative
+76,F,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,2,t,1.4,t,107,t,0.77,t,139,f,?,SVI,negative
+69,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,26,t,2,t,89,t,1.5,t,59,f,?,other,primary_hypothyroid
+16,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.81,t,2.1,t,70,t,0.83,t,84,f,?,other,negative
+68,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.2,t,0.9,t,72,t,0.77,t,94,f,?,SVI,negative
+44,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,2.3,t,2.3,t,118,t,1.01,t,117,f,?,other,negative
+64,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1,t,0.7,t,91,t,0.83,t,110,f,?,SVI,negative
+83,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,4.7,t,1.9,t,89,f,?,f,?,f,?,other,negative
+50,M,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,11,t,2.2,t,95,t,1.1,t,86,f,?,other,negative
+35,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.8,t,2,t,98,t,1.01,t,97,f,?,SVHC,negative
+74,F,t,f,f,f,f,f,f,t,f,f,f,f,f,f,t,6.3,t,1.2,t,80,t,0.92,t,87,f,?,other,negative
+16,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.4,t,1.7,t,88,t,0.89,t,99,f,?,SVI,negative
+82,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1,t,2.4,t,139,t,1.15,t,121,f,?,SVI,negative
+28,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,54,t,2.1,t,50,t,1.1,t,46,f,?,SVI,primary_hypothyroid
+26,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.4,t,1.9,t,170,t,1.23,t,138,f,?,STMW,negative
+19,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.25,t,1.9,t,165,t,0.95,t,174,f,?,other,negative
+47,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3,t,1.4,t,159,t,0.95,t,166,f,?,SVI,negative
+94,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.9,f,?,t,157,t,1.02,t,154,f,?,SVI,negative
+60,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.1,f,?,t,127,t,1.01,t,126,f,?,other,negative
+35,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.2,t,1,t,68,t,0.88,t,78,f,?,SVI,negative
+47,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.9,t,1.7,t,98,t,1.08,t,90,f,?,STMW,negative
+75,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.8,t,0.05,t,106,t,1.14,t,93,f,?,SVI,negative
+39,F,f,f,f,f,f,f,f,t,t,f,f,f,f,f,t,1.5,t,2.8,t,99,t,0.95,t,104,f,?,other,negative
+67,M,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,1.7,f,?,t,82,t,0.89,t,92,f,?,other,negative
+72,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,t,161,t,0.9,t,180,f,?,other,negative
+19,F,f,f,f,f,f,f,f,f,f,f,f,t,f,f,t,1.8,t,1.8,t,92,f,?,f,?,f,?,other,negative
+73,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.39,f,?,t,104,t,0.97,t,107,f,?,other,negative
+49,M,f,f,f,f,f,t,f,f,f,f,f,f,f,f,t,0.015,f,?,t,126,t,0.83,t,152,f,?,other,negative
+81,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,5.4,t,1.3,t,73,t,0.72,t,101,f,?,SVI,negative
+71,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.3,t,0.9,t,126,t,0.85,t,148,f,?,SVI,negative
+43,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.13,f,?,t,182,t,1.04,t,175,f,?,other,negative
+63,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.9,t,3.2,f,?,f,?,f,?,f,?,other,negative
+34,F,f,f,t,f,t,f,f,f,f,f,f,f,f,f,t,0.02,t,3.7,t,182,t,1.75,t,104,f,?,STMW,negative
+38,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+59,F,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,0.65,f,?,t,126,t,1.31,t,96,f,?,other,negative
+26,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.8,t,2.7,t,119,t,1.36,t,88,f,?,STMW,negative
+73,F,t,f,f,f,f,f,f,t,f,f,f,f,f,f,t,2.6,t,1.6,t,89,t,0.94,t,95,f,?,SVI,negative
+83,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,8.3,t,2.1,t,104,t,1.06,t,97,f,?,other,compensated_hypothyroid
+68,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.005,t,1.8,t,142,t,1.05,t,135,f,?,other,negative
+76,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,7.5,t,2.1,t,89,t,1.14,t,78,f,?,SVI,compensated_hypothyroid
+18,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,0.1,t,2.3,t,98,t,0.85,t,115,f,?,SVHC,negative
+54,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.3,t,1.1,t,130,t,1.03,t,127,f,?,SVI,negative
+21,F,t,f,f,f,f,f,f,f,f,f,t,f,f,t,t,1.3,t,1.9,t,112,t,1.06,t,106,f,?,SVHC,negative
+50,F,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,1.7,f,?,t,90,t,0.92,t,98,f,?,other,negative
+23,F,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,0.6,f,?,t,78,t,1.07,t,73,f,?,other,negative
+34,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+82,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+40,M,f,f,f,f,f,f,f,f,f,f,f,t,f,f,t,1.1,t,2.8,t,107,t,1.09,t,99,f,?,other,negative
+32,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.1,t,2.2,t,107,t,0.94,t,114,f,?,other,negative
+36,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.3,t,1.9,t,62,t,0.77,t,81,f,?,SVI,negative
+29,M,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,2.3,t,1.9,t,100,t,0.93,t,107,f,?,other,negative
+14,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.4,f,?,t,91,t,0.93,t,98,f,?,other,negative
+63,M,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.25,f,?,t,161,t,1.07,t,151,f,?,other,negative
+18,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,478,f,?,t,45,t,1.3,t,34,f,?,other,primary_hypothyroid
+68,F,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,0.97,t,1.3,t,85,t,0.87,t,98,f,?,other,negative
+68,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,15,t,2,t,81,t,1.01,t,81,f,?,other,compensated_hypothyroid
+85,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.4,t,1.4,t,86,t,0.98,t,88,f,?,other,negative
+41,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.9,t,2.2,t,138,t,0.9,t,154,f,?,SVI,negative
+38,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.5,t,3.3,t,122,t,1.46,t,83,f,?,STMW,negative
+43,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2,t,2.6,t,87,t,1.13,t,78,f,?,other,negative
+73,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.1,f,?,t,88,t,0.93,t,95,f,?,other,negative
+34,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.2,t,2.5,t,104,t,1.2,t,86,f,?,STMW,negative
+44,M,t,f,f,f,f,t,f,f,f,f,f,f,f,f,t,21,f,?,t,76,t,0.9,t,84,f,?,other,negative
+15,F,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,3.4,f,?,t,112,t,1.3,t,86,f,?,other,negative
+68,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.02,t,2.2,t,142,t,0.99,t,143,f,?,STMW,negative
+66,F,f,f,f,f,f,f,f,f,f,f,f,t,f,t,t,1.2,t,2.3,t,133,t,1.17,t,113,f,?,SVI,negative
+28,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1,t,2.5,t,134,t,1.13,t,119,f,?,other,negative
+43,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.2,f,?,t,197,t,1.08,t,182,f,?,other,negative
+48,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.4,t,2.3,t,99,t,1.05,t,95,f,?,SVHC,negative
+79,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,6.8,f,?,t,144,t,1.29,t,111,f,?,other,compensated_hypothyroid
+56,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.6,f,?,t,117,t,1.11,t,105,f,?,other,negative
+28,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.5,t,2.2,t,107,t,0.94,t,113,f,?,SVHC,negative
+42,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.3,t,1.1,t,93,t,0.73,t,127,f,?,other,negative
+55,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.01,t,2.2,t,172,t,1.1,t,157,f,?,other,negative
+33,F,f,f,f,f,t,f,f,f,t,f,f,f,f,f,t,3,t,2.5,t,121,t,1.38,t,88,f,?,other,negative
+70,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.2,t,2,t,119,t,0.86,t,138,f,?,SVHC,negative
+64,F,f,f,f,f,f,f,f,f,t,f,f,t,f,f,f,?,t,6.1,t,214,t,0.94,t,228,f,?,other,negative
+71,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.09,t,2.5,t,167,t,1.19,t,140,f,?,other,negative
+29,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.7,t,2.1,t,110,t,0.95,t,116,f,?,other,negative
+78,F,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,4.1,t,1.9,t,116,t,1.05,t,110,f,?,other,negative
+71,F,f,f,f,t,f,f,f,t,f,f,f,f,f,f,t,1.6,t,1.8,t,136,t,1.16,t,117,f,?,SVI,negative
+21,F,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,0.83,t,2.2,t,132,t,0.99,t,133,f,?,SVHC,negative
+71,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.32,t,1.6,t,164,t,1.11,t,148,f,?,other,negative
+79,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.5,t,1.6,t,91,t,0.99,t,91,f,?,other,negative
+38,F,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,2.7,t,1.5,t,76,t,0.88,t,86,f,?,SVHC,negative
+62,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.86,t,1.9,t,78,t,0.85,t,91,f,?,SVI,negative
+56,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.1,t,2.2,t,91,t,0.84,t,108,f,?,other,negative
+63,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.67,t,1.8,t,107,t,0.85,t,126,f,?,other,negative
+12,M,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.02,t,2.3,t,152,t,0.8,t,190,f,?,other,negative
+47,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,2.3,t,1.6,t,75,t,0.93,t,80,f,?,SVHC,negative
+25,F,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,2.7,f,?,t,73,t,0.97,t,76,f,?,SVHD,negative
+48,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,7.1,t,1.4,t,88,t,0.93,t,95,f,?,other,compensated_hypothyroid
+59,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.7,t,1.6,t,129,t,1.07,t,121,f,?,SVI,negative
+32,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,0.1,t,1.9,t,126,t,0.76,t,163,f,?,SVI,negative
+45,M,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,2.1,f,?,t,93,t,1.16,t,80,f,?,other,negative
+41,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,15,t,1.7,t,119,t,0.99,t,120,f,?,other,negative
+78,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.3,f,?,t,80,t,0.86,t,93,f,?,SVI,negative
+77,F,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,1.9,f,?,f,?,f,?,f,?,f,?,other,negative
+61,M,f,f,f,f,f,f,t,f,f,f,f,f,f,f,t,0.005,t,2.3,t,110,t,1.01,t,109,f,?,other,negative
+73,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.4,t,2.3,t,94,t,0.9,t,105,f,?,SVI,negative
+80,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,t,2.8,t,103,t,1,t,103,f,?,other,negative
+58,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.3,t,2.3,t,104,t,1.08,t,96,f,?,SVHC,negative
+59,M,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.3,t,1.9,t,144,t,0.93,t,156,f,?,other,negative
+4,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.07,t,3.2,t,246,t,1.06,t,232,f,?,STMW,negative
+35,F,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,1.2,t,1.9,t,95,t,1.1,t,87,f,?,SVHC,negative
+56,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.05,f,?,t,230,t,1.06,t,217,f,?,other,negative
+35,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,t,110,t,0.96,t,114,f,?,other,negative
+38,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.23,t,3.4,t,183,t,0.98,t,186,f,?,other,negative
+64,M,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.24,f,?,t,83,t,0.9,t,93,f,?,other,negative
+52,M,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,1.3,t,2,t,102,f,?,f,?,f,?,other,negative
+32,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,8.1,t,2.5,t,90,t,0.95,t,95,f,?,SVHC,compensated_hypothyroid
+23,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.7,t,1.9,t,116,t,0.89,t,130,f,?,other,negative
+83,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.3,t,1.6,t,105,t,0.83,t,127,f,?,SVI,negative
+81,F,f,f,f,f,f,f,t,f,f,f,f,f,f,f,t,1.9,t,1.5,t,71,t,0.78,t,91,f,?,other,negative
+66,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.32,t,2.5,t,169,t,1.14,t,149,f,?,SVI,negative
+31,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.9,t,2.7,t,99,t,1,t,99,f,?,STMW,negative
+68,F,f,f,f,f,f,f,t,f,f,f,f,f,f,f,t,1.6,t,2.5,t,99,t,1.09,t,90,f,?,other,negative
+45,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.1,t,1.6,t,84,t,0.96,t,87,f,?,SVI,negative
+58,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.3,f,?,t,88,t,0.81,t,109,f,?,other,negative
+64,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.1,f,?,t,123,t,0.74,t,166,f,?,other,negative
+19,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+60,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.91,t,1,t,102,t,0.91,t,112,f,?,SVI,negative
+50,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.2,t,2,t,121,t,1.04,t,116,f,?,SVHC,negative
+13,F,f,f,f,f,f,f,f,t,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+59,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.8,t,2.9,t,123,t,1.31,t,94,f,?,other,negative
+39,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.2,t,3.2,t,108,t,1.07,t,100,f,?,STMW,negative
+76,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.1,t,2.9,t,124,t,1.28,t,97,f,?,other,negative
+53,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,12,t,2,f,?,f,?,f,?,f,?,other,compensated_hypothyroid
+19,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.1,t,1.8,t,82,f,?,f,?,f,?,other,negative
+31,M,t,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+34,F,f,f,f,f,t,f,f,f,t,f,f,f,f,f,t,0.02,t,3.7,t,196,t,1.65,t,119,f,?,STMW,negative
+56,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.1,t,1.7,t,82,t,1,t,81,f,?,other,negative
+55,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,60,t,0.7,t,14,t,1.11,t,13,f,?,other,primary_hypothyroid
+20,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.1,f,?,t,105,t,1.04,t,101,f,?,other,negative
+62,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.5,f,?,t,126,t,1.24,t,101,f,?,other,negative
+72,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,0.1,t,2.5,t,180,t,0.83,t,217,f,?,SVI,negative
+70,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.3,t,1.8,t,122,t,0.85,t,144,f,?,SVI,negative
+11,F,f,f,t,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+56,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+28,F,f,t,f,f,f,t,f,f,f,f,f,f,f,f,t,1.5,t,1.5,t,120,t,1.01,t,118,f,?,SVI,negative
+32,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.1,t,2.1,t,88,t,0.7,t,125,f,?,SVI,negative
+65,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.3,t,2,t,105,t,1.28,t,83,f,?,SVHC,negative
+39,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,1.2,t,2,t,102,t,0.93,t,110,f,?,other,negative
+39,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.25,t,1.9,t,94,t,0.93,t,101,f,?,other,negative
+24,F,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,1.7,t,2.4,t,126,t,0.92,t,136,f,?,SVHC,negative
+77,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1,t,2.4,t,101,t,1.17,t,87,f,?,other,negative
+25,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.4,t,1.9,t,63,t,0.81,t,78,f,?,other,negative
+22,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.7,t,1.7,t,85,t,0.92,t,92,f,?,other,negative
+59,M,t,f,t,f,f,f,t,f,t,f,f,f,f,f,t,0.08,f,?,t,125,t,0.78,t,161,f,?,other,negative
+51,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.29,f,?,t,98,t,1.03,t,95,f,?,other,negative
+36,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.3,t,1.6,t,112,t,1.13,t,100,f,?,other,negative
+37,F,f,f,f,f,f,f,f,f,f,t,f,f,f,f,t,0.64,t,2.1,t,92,t,0.99,t,93,f,?,other,negative
+75,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.6,t,1.8,t,99,t,1.03,t,96,f,?,SVI,negative
+67,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.2,t,1.9,t,91,t,0.79,t,115,f,?,SVI,negative
+17,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+42,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3,t,0.8,t,83,t,0.99,t,84,f,?,other,negative
+37,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,18,t,1.5,t,98,t,0.88,t,112,f,?,other,compensated_hypothyroid
+59,M,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.15,t,2.5,t,90,t,0.85,t,106,f,?,other,negative
+73,F,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,1.6,t,2,t,105,t,1.17,t,89,f,?,SVI,negative
+26,F,f,t,f,f,f,f,f,f,f,f,f,f,f,f,t,9.2,t,1.6,t,104,t,1.12,t,93,f,?,other,compensated_hypothyroid
+41,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.7,t,1.7,t,112,t,1.05,t,107,f,?,SVI,negative
+86,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,13,f,?,t,87,t,0.92,t,94,f,?,other,compensated_hypothyroid
+32,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.2,t,2.9,t,128,t,1.12,t,114,f,?,SVHC,negative
+80,F,f,f,t,f,f,f,f,f,f,f,f,f,f,f,t,5.3,t,2,t,86,t,1.02,t,83,f,?,other,negative
+46,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.3,t,2.2,t,85,t,1.13,t,75,f,?,other,negative
+28,F,t,f,f,f,t,f,f,f,f,f,f,f,f,f,t,2.5,t,2.6,t,179,t,1.55,t,115,f,?,other,negative
+56,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.2,t,1.6,t,119,t,1.05,t,113,f,?,SVI,negative
+80,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.37,t,0.7,t,134,t,1.12,t,120,f,?,SVI,negative
+75,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.5,t,2.2,t,118,t,1.01,t,117,f,?,SVI,negative
+73,F,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,2.1,t,2.8,t,109,t,1.32,t,83,f,?,other,negative
+78,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.9,t,2.2,t,129,t,0.97,t,133,f,?,SVI,negative
+81,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.3,t,1.2,t,147,t,1.06,t,138,f,?,SVI,negative
+77,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.02,t,2.7,t,155,t,0.98,t,159,f,?,other,negative
+37,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,4.1,t,2.5,t,118,f,?,f,?,f,?,SVI,negative
+39,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.4,t,1.7,t,94,t,0.85,t,110,f,?,other,negative
+52,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.5,t,2.3,t,117,t,1.11,t,105,f,?,SVI,negative
+74,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.61,t,0.9,t,115,t,0.75,t,153,f,?,SVI,negative
+62,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,100,t,0.4,t,10,t,1,t,10,f,?,SVI,primary_hypothyroid
+39,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.7,t,1.2,t,81,t,0.99,t,82,f,?,SVI,negative
+78,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.77,t,1.9,t,113,t,1.03,t,110,f,?,other,negative
+20,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.5,t,2.4,t,137,t,1.35,t,101,f,?,SVHC,negative
+89,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.5,t,1.8,t,86,t,1.04,t,83,f,?,other,negative
+25,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.7,t,1.6,t,94,t,0.93,t,101,f,?,SVI,negative
+61,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.29,t,1.5,t,119,t,0.9,t,132,f,?,other,negative
+61,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.7,t,2.5,t,121,t,1.07,t,114,f,?,other,negative
+61,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+70,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.2,f,?,t,131,t,0.95,t,137,f,?,other,negative
+45,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.9,t,2.3,t,92,t,1.05,t,88,f,?,other,negative
+63,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.005,f,?,t,127,t,0.92,t,138,f,?,SVI,negative
+8,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.1,t,2.2,t,77,t,0.85,t,91,f,?,other,negative
+42,F,f,f,f,f,f,t,f,f,f,f,f,f,f,f,t,0.04,t,1.9,t,117,t,0.77,t,153,f,?,other,negative
+28,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,4.2,t,1.5,t,83,f,?,f,?,f,?,other,negative
+78,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.5,t,1.1,t,70,t,0.92,t,76,f,?,other,negative
+68,F,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,2.1,f,?,t,112,t,0.93,t,120,f,?,other,negative
+37,M,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,0.25,t,2,t,83,t,1.14,t,72,f,?,other,negative
+44,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3,t,2,t,115,t,1.1,t,104,f,?,SVHC,negative
+21,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,t,107,t,1.07,t,100,f,?,other,negative
+56,F,f,t,f,f,f,f,f,f,f,f,f,t,f,f,t,5.2,f,?,t,137,t,1.28,t,107,f,?,other,negative
+41,F,f,f,f,f,f,f,t,f,f,f,f,f,f,f,t,0.3,t,2.3,t,111,t,0.83,t,134,f,?,other,negative
+60,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.1,f,?,f,?,f,?,f,?,f,?,other,negative
+70,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.7,t,1.3,t,96,t,1.14,t,84,f,?,other,negative
+51,M,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.4,t,2.6,t,118,t,0.91,t,130,f,?,SVHC,negative
+77,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.27,f,?,f,?,f,?,f,?,f,?,other,negative
+63,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.9,t,1.8,t,103,t,0.84,t,124,f,?,SVHC,negative
+5,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,17,t,2,t,74,t,0.95,t,78,f,?,other,negative
+29,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,1.4,t,3.8,t,127,t,1.14,t,112,f,?,SVHC,negative
+73,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.8,t,1.7,t,130,t,1.2,t,109,f,?,SVI,negative
+52,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+17,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,13,t,1.6,t,151,t,1.39,t,109,f,?,other,negative
+38,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.5,t,1.5,t,81,t,0.86,t,94,f,?,SVI,negative
+40,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.98,t,1.8,t,98,t,0.99,t,99,f,?,SVHC,negative
+44,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,1.01,t,1.8,t,109,t,1,t,109,f,?,other,negative
+50,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3,t,2.2,t,91,t,1.11,t,82,f,?,other,negative
+25,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,3,t,2.7,t,110,t,0.87,t,126,f,?,SVHC,negative
+26,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.7,t,2.5,t,130,t,1.08,t,121,f,?,SVHC,negative
+35,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.2,t,2.1,t,116,t,1.06,t,109,f,?,other,negative
+40,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,t,134,t,1.2,t,112,f,?,other,negative
+68,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,16,t,1.4,t,68,t,1.01,t,67,f,?,SVI,compensated_hypothyroid
+35,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,0.72,t,3.8,t,140,t,1.16,t,121,f,?,other,negative
+77,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.7,t,2,t,103,t,0.9,t,114,f,?,other,negative
+55,F,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,1.7,t,2,t,102,t,0.96,t,106,f,?,SVHC,negative
+67,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.7,t,2.3,t,104,f,?,f,?,f,?,SVI,negative
+35,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.35,t,2.5,t,99,t,1.04,t,96,f,?,STMW,negative
+19,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,58,f,?,t,74,t,0.9,t,82,f,?,other,compensated_hypothyroid
+72,M,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,5.4,t,1.8,t,87,t,0.91,t,95,f,?,other,negative
+25,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,1.2,t,2.6,t,121,t,0.97,t,125,f,?,SVHC,negative
+56,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.005,f,?,t,170,t,0.96,t,177,f,?,other,negative
+57,M,f,t,f,f,f,f,f,f,f,f,f,f,f,f,f,?,t,2.2,t,104,t,1.07,t,97,f,?,other,negative
+66,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,4.6,t,2.4,t,125,t,1.09,t,115,f,?,SVI,negative
+47,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,0.15,t,4.3,t,189,t,1.07,t,176,f,?,other,negative
+61,M,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,1.6,t,1.9,t,103,t,0.88,t,118,f,?,other,negative
+53,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+53,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.8,t,2.4,t,104,t,0.81,t,128,f,?,SVHC,negative
+28,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.5,t,2.3,t,134,t,1.24,t,109,f,?,other,negative
+42,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.6,t,1.6,t,139,t,1.04,t,134,f,?,other,negative
+20,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.02,t,2.6,t,171,t,1.12,t,153,f,?,other,negative
+44,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,41,t,1.5,t,48,t,1.17,t,41,f,?,other,primary_hypothyroid
+55,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,11,t,0.4,t,102,f,?,f,?,f,?,SVI,compensated_hypothyroid
+57,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,t,2.2,f,?,f,?,f,?,f,?,other,negative
+79,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.02,t,1.6,t,143,t,0.9,t,159,f,?,other,negative
+54,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.035,t,1.4,t,152,t,1.05,t,145,f,?,SVI,negative
+56,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3,t,1.1,t,122,t,1.13,t,108,f,?,SVI,negative
+31,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.2,t,2.2,t,103,t,0.92,t,112,f,?,SVI,negative
+66,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.2,t,2.2,t,122,t,1.15,t,106,f,?,SVI,negative
+70,F,f,f,f,f,f,f,t,f,f,f,f,f,f,f,t,0.9,f,?,t,70,t,0.8,t,87,f,?,other,negative
+67,F,f,f,f,f,f,f,f,f,f,f,f,t,f,f,t,1.3,t,2.3,t,97,t,1.09,t,88,f,?,other,negative
+53,M,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,0.62,t,1.7,t,116,t,1,t,116,f,?,SVI,negative
+36,F,t,f,f,f,f,f,f,t,f,f,f,f,f,f,t,0.05,t,2.2,t,162,t,1.15,t,140,f,?,other,negative
+54,F,f,f,f,f,f,f,f,f,f,t,f,f,f,f,t,2.9,t,2.5,t,74,t,0.99,t,75,f,?,SVHC,negative
+53,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,t,2.4,t,99,t,1.13,t,88,f,?,other,negative
+60,M,t,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+58,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.1,t,0.9,t,83,t,0.78,t,106,f,?,SVI,negative
+455,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.1,t,2,t,118,t,1.13,t,104,f,?,SVI,negative
+19,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.7,t,3,t,68,t,0.85,t,80,f,?,SVI,negative
+18,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.5,t,2.6,t,86,t,0.91,t,94,f,?,SVI,negative
+59,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.5,t,1.7,t,97,t,0.76,t,129,f,?,SVI,negative
+36,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.7,t,2.3,t,77,t,1.04,t,74,f,?,SVHC,negative
+39,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+59,M,f,f,f,f,f,f,t,f,f,f,f,f,f,f,t,0.3,t,1.6,t,112,t,0.75,t,148,f,?,other,negative
+56,F,f,f,f,t,f,f,f,f,f,f,f,t,f,f,t,0.2,t,2.5,t,138,t,1.15,t,119,f,?,SVI,negative
+68,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.1,t,1.5,t,126,t,1.26,t,100,f,?,SVHC,negative
+41,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,5.6,f,?,t,93,t,0.84,t,110,f,?,other,negative
+35,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.27,t,1.6,t,104,t,0.78,t,134,f,?,SVHC,negative
+53,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,183,t,1.4,t,14,t,1.31,t,11,f,?,other,primary_hypothyroid
+64,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2,t,1.8,t,80,t,0.91,t,88,f,?,SVHC,negative
+47,M,f,t,f,f,f,f,f,f,f,f,f,f,f,f,t,0.02,t,1.2,t,72,t,0.82,t,88,f,?,other,negative
+57,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1,t,2.1,t,102,t,0.97,t,105,f,?,SVI,negative
+21,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,t,90,t,0.98,t,92,f,?,other,negative
+17,F,f,f,f,f,f,f,f,f,f,f,f,t,f,f,t,0.6,t,2.6,t,102,t,0.97,t,106,f,?,other,negative
+14,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3,t,2.7,t,80,t,0.83,t,97,f,?,other,negative
+64,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.5,t,2.8,t,130,t,1.18,t,111,f,?,SVI,negative
+60,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2,t,1,t,61,t,0.77,t,80,f,?,SVI,negative
+73,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.95,t,2.5,t,119,t,1.04,t,114,f,?,other,negative
+16,M,t,t,f,f,f,f,f,f,f,f,t,f,f,f,f,?,t,3,t,135,t,1.02,t,131,f,?,other,negative
+56,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.9,f,?,t,129,t,1.05,t,123,f,?,other,negative
+41,M,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,0.39,t,1.9,t,120,t,1.03,t,117,f,?,SVI,negative
+41,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.2,t,2.7,t,113,t,1.06,t,107,f,?,other,negative
+30,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.6,t,3.2,t,123,t,1.29,t,96,f,?,SVI,negative
+33,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.9,t,1.9,t,83,t,1.03,t,81,f,?,SVI,negative
+50,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.6,t,2.4,t,111,t,1,t,111,f,?,SVHC,negative
+38,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,7.1,f,?,t,130,t,0.98,t,132,f,?,other,negative
+78,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.3,t,0.9,t,65,t,0.88,t,74,f,?,other,negative
+39,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,4.4,t,1.1,t,63,t,0.8,t,78,f,?,SVI,negative
+18,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.25,t,3.1,t,160,t,0.9,t,177,f,?,STMW,negative
+22,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,t,151,t,1.05,t,144,f,?,other,negative
+2,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.025,f,?,t,145,t,0.93,t,155,f,?,other,negative
+78,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.9,t,2.3,t,112,t,1.08,t,104,f,?,other,negative
+72,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.85,f,?,t,131,t,0.91,t,144,f,?,other,negative
+62,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.4,t,3.9,t,97,t,0.84,t,115,f,?,other,negative
+57,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.1,t,2.2,t,150,t,1.01,t,149,f,?,SVI,negative
+65,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.5,f,?,t,137,t,1.06,t,129,f,?,other,negative
+90,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.15,t,1.7,t,118,t,0.82,t,144,f,?,SVI,negative
+68,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.4,t,1.9,t,98,t,0.82,t,118,f,?,other,negative
+79,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.8,t,1.2,t,122,t,1,t,122,f,?,SVI,negative
+41,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.2,t,2.6,t,197,t,1.01,t,195,f,?,other,negative
+35,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,0.1,t,2.8,t,138,t,1.13,t,122,f,?,SVHC,negative
+39,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,1.6,t,1.2,t,95,t,0.93,t,102,f,?,SVHC,negative
+57,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,9.1,f,?,t,101,t,1.12,t,90,f,?,other,compensated_hypothyroid
+55,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.015,t,1.8,t,180,t,0.82,t,219,f,?,other,negative
+64,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,8.9,t,1.2,t,67,t,0.75,t,89,f,?,SVI,compensated_hypothyroid
+55,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.1,t,1.6,t,86,t,0.8,t,107,f,?,SVI,negative
+19,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,18.4,t,2,t,105,f,?,f,?,f,?,other,compensated_hypothyroid
+65,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.6,t,1.4,t,78,t,0.82,t,96,f,?,SVI,negative
+41,F,f,f,f,f,t,f,f,f,t,f,f,f,f,f,t,0.2,f,?,t,430,t,1.09,t,395,f,?,STMW,negative
+75,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.5,t,2.2,t,70,t,0.85,t,82,f,?,other,negative
+51,M,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.005,t,2.8,t,132,t,0.95,t,139,f,?,other,negative
+63,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.6,f,?,t,84,t,0.9,t,93,f,?,other,negative
+23,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.25,t,2.6,t,139,t,0.9,t,153,f,?,SVI,negative
+70,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.4,f,?,t,70,t,0.9,t,78,f,?,other,negative
+45,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.94,t,2.4,t,80,t,1.06,t,76,f,?,other,negative
+73,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,10,t,1,t,84,t,1.39,t,60,f,?,SVI,primary_hypothyroid
+71,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.77,t,2.1,t,123,t,0.91,t,135,f,?,SVI,negative
+31,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.1,t,3.2,t,207,t,1.57,t,132,f,?,STMW,negative
+74,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.6,t,2.1,t,120,t,0.98,t,122,f,?,SVI,negative
+27,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.5,t,2.2,t,182,t,1.37,t,133,f,?,other,negative
+50,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+52,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.2,f,?,t,105,t,0.97,t,108,f,?,other,negative
+52,M,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,0.93,t,1.3,t,86,t,0.64,t,134,f,?,SVI,negative
+37,M,f,t,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,t,116,t,0.9,t,128,f,?,other,negative
+28,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.2,t,1.8,t,90,t,0.84,t,108,f,?,other,negative
+48,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.2,t,1.8,t,104,t,1.11,t,94,f,?,SVI,negative
+68,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.47,f,?,t,117,t,1.02,t,115,f,?,other,negative
+59,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,7.1,t,2.1,t,79,t,0.96,t,83,f,?,other,compensated_hypothyroid
+62,F,f,f,f,f,f,f,f,t,f,f,f,f,f,f,t,8.6,f,?,t,86,t,0.84,t,101,f,?,other,compensated_hypothyroid
+22,F,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,1.2,t,1.9,t,92,t,0.87,t,105,f,?,other,negative
+18,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,41,f,?,t,118,t,1.13,t,105,f,?,other,compensated_hypothyroid
+58,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.1,t,2,t,101,t,1.2,t,84,f,?,SVHC,negative
+50,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.17,t,1.7,t,120,t,0.98,t,122,f,?,other,negative
+34,F,f,f,f,f,t,f,f,f,t,f,f,f,f,f,t,0.005,t,3.5,t,198,t,1.79,t,111,f,?,STMW,negative
+41,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,t,2,t,99,t,0.96,t,104,f,?,other,negative
+18,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.3,t,2.1,t,79,t,1.1,t,72,f,?,other,negative
+60,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,t,1.2,t,87,t,0.72,t,121,f,?,other,negative
+77,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.4,t,1.7,t,77,t,0.87,t,89,f,?,SVI,negative
+59,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.6,t,4.5,t,161,t,1.65,t,97,f,?,other,negative
+68,F,f,f,f,t,f,f,f,f,f,f,f,f,f,f,t,1.5,t,2.3,t,117,t,1.04,t,113,f,?,other,negative
+63,F,f,f,f,f,f,f,t,f,f,f,f,f,f,f,t,42,t,1.6,t,60,t,0.93,t,64,f,?,other,primary_hypothyroid
+36,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.2,t,2.7,t,120,t,0.97,t,123,f,?,other,negative
+27,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,1.4,t,2.3,t,132,t,0.94,t,140,f,?,SVHC,negative
+52,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,4.7,t,2,t,19,t,1.12,t,17,f,?,SVI,negative
+75,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.2,t,2,t,101,t,0.93,t,109,f,?,other,negative
+23,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+58,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.6,t,2,t,151,t,1.05,t,144,f,?,other,negative
+54,M,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.2,f,?,t,101,t,0.64,t,158,f,?,other,negative
+39,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.2,t,0.3,t,73,t,0.78,t,94,f,?,other,negative
+62,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.3,t,1.8,t,112,t,0.89,t,126,f,?,SVI,negative
+37,F,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,2.3,t,1.8,t,78,t,1.04,t,76,f,?,SVHC,negative
+22,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.7,t,1.5,t,133,t,0.84,t,159,f,?,SVI,negative
+41,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,4.1,t,2,t,127,t,1.04,t,122,f,?,SVI,negative
+46,M,f,f,f,t,f,f,f,t,f,f,f,f,f,f,t,1.7,f,?,t,139,t,1.1,t,127,f,?,other,negative
+63,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.4,t,1.9,t,118,f,?,f,?,f,?,other,negative
+73,F,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,0.2,t,2.5,t,136,t,0.89,t,153,f,?,other,negative
+61,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.03,t,1.8,t,145,t,1.04,t,140,f,?,SVHD,negative
+30,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,5.3,t,2.1,t,92,t,1.05,t,88,f,?,other,negative
+50,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.54,t,1.8,t,160,t,1.1,t,146,f,?,other,negative
+60,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+24,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,t,121,t,1.09,t,111,f,?,other,negative
+72,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.2,t,2.3,t,87,t,0.94,t,93,f,?,other,negative
+78,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.1,t,1.8,t,98,t,1.14,t,85,f,?,other,negative
+56,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.38,f,?,t,105,t,0.9,t,116,f,?,other,negative
+21,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,2.2,t,1.5,t,78,t,0.89,t,88,f,?,other,negative
+41,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.03,t,2.1,t,187,t,0.89,t,210,f,?,other,negative
+59,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,12,t,1.5,t,88,t,0.98,t,90,f,?,SVI,compensated_hypothyroid
+54,?,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.93,t,1.8,t,115,t,0.94,t,123,f,?,other,negative
+39,F,f,f,f,f,f,f,f,t,t,f,f,f,f,f,t,0.2,t,2.2,t,106,t,0.75,t,141,f,?,other,negative
+24,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.38,t,2.3,t,152,t,0.96,t,158,f,?,other,negative
+34,F,t,f,f,f,t,f,f,f,f,f,f,f,f,f,t,8.3,t,3.1,t,172,t,1.8,t,96,f,?,other,negative
+46,M,f,f,f,f,f,f,f,f,t,f,f,f,f,f,t,0.05,t,2.2,t,97,t,0.77,t,125,f,?,other,negative
+39,F,t,f,f,f,f,f,f,f,f,f,f,f,f,f,t,6.9,t,1.6,t,125,t,1.02,t,123,f,?,other,negative
+20,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.8,t,1.6,t,63,t,1,t,63,f,?,other,negative
+79,?,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,12.1,t,3.4,t,94,t,0.92,t,102,f,?,other,negative
+23,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.19,t,1.3,t,100,t,0.85,t,118,f,?,SVI,negative
+50,M,f,f,f,f,f,f,f,f,f,f,f,f,f,t,t,0.82,t,2.1,t,124,t,1.03,t,121,f,?,other,negative
+77,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,t,2.6,f,?,f,?,f,?,f,?,other,negative
+39,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,43,t,1.6,t,63,t,0.84,t,75,f,?,other,compensated_hypothyroid
+55,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.4,t,2.3,t,86,t,1.08,t,80,f,?,SVI,negative
+70,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,f,?,f,?,f,?,f,?,f,?,f,?,other,negative
+57,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.8,t,3,t,106,t,1.12,t,96,f,?,other,negative
+73,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,0.88,t,1.5,t,113,t,0.74,t,153,f,?,SVI,negative
+91,M,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.4,f,?,t,112,t,0.99,t,113,f,?,SVI,negative
+74,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,1.6,t,0.7,t,82,t,0.88,t,93,f,?,SVI,negative
+81,F,f,f,f,f,f,f,f,f,f,f,f,f,f,f,t,3.9,t,1.8,t,131,t,0.98,t,133,f,?,SVI,negative
... 13712 lines suppressed ...