IIF SQL function
1. Usage of IIF to find size of the order.
SQL Server Query 1
SELECT
OrderID,
CustomerID,
OrderDate,
Freight,
OrderTotal = (SELECT SUM(UnitPrice * Quantity) FROM [Order Details] WHERE OrderID = Orders.OrderID),
Category = IIF(
(SELECT SUM(UnitPrice * Quantity) FROM [Order Details] WHERE OrderID = Orders.OrderID) < 100,
'Small',
IIF(
(SELECT SUM(UnitPrice * Quantity) FROM [Order Details] WHERE OrderID = Orders.OrderID) < 500,
'Medium',
IIF(
(SELECT SUM(UnitPrice * Quantity) FROM [Order Details] WHERE OrderID = Orders.OrderID) < 1000,
'Large',
'Very Large'
)
)
)
FROM Orders
ORDER BY OrderID;
Create SQL query with SqlQueryBuilder 1
var (sql1, parameters1) = new SqlQueryBuilder()
.Select()
.Columns("OrderID", "CustomerID", "OrderDate", "Freight")
.Column(new SqlQueryBuilder().Select().Column(new SUM(new ColumnArithmatic("UnitPrice").MULTIPLY("Quantity")), "OrderTotal")
.From("[Order Details]").Where(new Where(new Column("OrderID"), SQLComparisonOperators.EQUALE_TO, new Column("Orders.OrderID")))
, "OrderTotal")
.Column(new IIF(new SqlQueryBuilder()
.Select()
.Column(new SUM(new ColumnArithmatic("UnitPrice").MULTIPLY("Quantity")), "Category")
.From("[Order Details]")
.Where(new Where(new Column("OrderID").Equale(new Column("Orders.OrderID")))).LessThan(100)
).True("Small")
.False(new IIF(
new SqlQueryBuilder().Select().Column(new SUM(new ColumnArithmatic("UnitPrice").MULTIPLY("Quantity")), "Category")
.From("[Order Details]")
.Where(new Where(new Column("OrderID").Equale(new Column("Orders.OrderID")))).LessThan(500)
).True("Medium")
.False(new IIF(
new SqlQueryBuilder().Select().Column(new SUM(new ColumnArithmatic("UnitPrice").MULTIPLY("Quantity")), "Category")
.From("[Order Details]")
.Where(new Where(new Column("OrderID").Equale(new Column("Orders.OrderID")))).LessThan(1000)
).True("Large").False("Very Large")
)
)
, "Category")
.From("Orders")
.OrderBy(new OrderBy().Set(new Column("OrderID")))
.Build();
Query build by SqlQueryBuilder 1
SELECT OrderID,
CustomerID,
OrderDate,
Freight,
(SELECT SUM(UnitPrice * Quantity) AS OrderTotal
FROM [Order Details]
WHERE OrderID = Orders.OrderID) AS OrderTotal,
IIF ((SELECT SUM(UnitPrice * Quantity) AS Category
FROM [Order Details]
WHERE OrderID = Orders.OrderID) < @pMAIN_2507200140484217320, @pMAIN_2507200140484217321, IIF ((SELECT SUM(UnitPrice * Quantity) AS Category
FROM [Order Details]
WHERE OrderID = Orders.OrderID) < @pMAIN_2507200140484217322, @pMAIN_2507200140484217323, IIF ((SELECT SUM(UnitPrice * Quantity) AS Category
FROM [Order Details]
WHERE OrderID = Orders.OrderID) < @pMAIN_2507200140484217324, @pMAIN_2507200140484217325, @pMAIN_2507200140484217326))) AS Category
FROM Orders
ORDER BY OrderID ASC;
Parameters (If used)
Name |
Value |
@pMAIN_2507200140484217320 |
100 |
@pMAIN_2507200140484217321 |
Small |
@pMAIN_2507200140484217322 |
500 |
@pMAIN_2507200140484217323 |
Medium |
@pMAIN_2507200140484217324 |
1000 |
@pMAIN_2507200140484217325 |
Large |
@pMAIN_2507200140484217326 |
Very Large |
Query Results 1:
|
OrderID |
CustomerID |
OrderDate |
Freight |
OrderTotal |
Category |
1 |
10248
|
VINET
|
7/4/1996 12:00:00 AM
|
32.3800
|
440.0000
|
Medium
|
2 |
10249
|
TOMSP
|
7/5/1996 12:00:00 AM
|
11.6100
|
1863.4000
|
Very Large
|
3 |
10250
|
HANAR
|
7/8/1996 12:00:00 AM
|
65.8300
|
1813.0000
|
Very Large
|
4 |
10251
|
VICTE
|
7/8/1996 12:00:00 AM
|
41.3400
|
670.8000
|
Large
|
5 |
10252
|
SUPRD
|
7/9/1996 12:00:00 AM
|
51.3000
|
3730.0000
|
Very Large
|
6 |
10253
|
HANAR
|
7/10/1996 12:00:00 AM
|
58.1700
|
1444.8000
|
Very Large
|
7 |
10254
|
CHOPS
|
7/11/1996 12:00:00 AM
|
22.9800
|
625.2000
|
Large
|
8 |
10255
|
RICSU
|
7/12/1996 12:00:00 AM
|
148.3300
|
2490.5000
|
Very Large
|
9 |
10256
|
WELLI
|
7/15/1996 12:00:00 AM
|
13.9700
|
517.8000
|
Large
|
10 |
10257
|
HILAA
|
7/16/1996 12:00:00 AM
|
81.9100
|
1119.9000
|
Very Large
|
11 |
10258
|
ERNSH
|
7/17/1996 12:00:00 AM
|
140.5100
|
2018.6000
|
Very Large
|
12 |
10259
|
CENTC
|
7/18/1996 12:00:00 AM
|
3.2500
|
100.8000
|
Medium
|
13 |
10260
|
OTTIK
|
7/19/1996 12:00:00 AM
|
55.0900
|
1746.2000
|
Very Large
|
14 |
10261
|
QUEDE
|
7/19/1996 12:00:00 AM
|
3.0500
|
448.0000
|
Medium
|
15 |
10262
|
RATTC
|
7/22/1996 12:00:00 AM
|
48.2900
|
624.8000
|
Large
|
16 |
10263
|
ERNSH
|
7/23/1996 12:00:00 AM
|
146.0600
|
2464.8000
|
Very Large
|
17 |
10264
|
FOLKO
|
7/24/1996 12:00:00 AM
|
3.6700
|
724.5000
|
Large
|
18 |
10265
|
BLONP
|
7/25/1996 12:00:00 AM
|
55.2800
|
1176.0000
|
Very Large
|
19 |
10266
|
WARTH
|
7/26/1996 12:00:00 AM
|
25.7300
|
364.8000
|
Medium
|
20 |
10267
|
FRANK
|
7/29/1996 12:00:00 AM
|
208.5800
|
4031.0000
|
Very Large
|
21 |
10268
|
GROSR
|
7/30/1996 12:00:00 AM
|
66.2900
|
1101.2000
|
Very Large
|
22 |
10269
|
WHITC
|
7/31/1996 12:00:00 AM
|
4.5600
|
676.0000
|
Large
|
23 |
10270
|
WARTH
|
8/1/1996 12:00:00 AM
|
136.5400
|
1376.0000
|
Very Large
|
24 |
10271
|
SPLIR
|
8/1/1996 12:00:00 AM
|
4.5400
|
48.0000
|
Small
|
25 |
10272
|
RATTC
|
8/2/1996 12:00:00 AM
|
98.0300
|
1456.0000
|
Very Large
|
26 |
10273
|
QUICK
|
8/5/1996 12:00:00 AM
|
76.0700
|
2142.4000
|
Very Large
|
27 |
10274
|
VINET
|
8/6/1996 12:00:00 AM
|
6.0100
|
538.6000
|
Large
|
28 |
10275
|
MAGAA
|
8/7/1996 12:00:00 AM
|
26.9300
|
307.2000
|
Medium
|
29 |
10276
|
TORTU
|
8/8/1996 12:00:00 AM
|
13.8400
|
420.0000
|
Medium
|
30 |
10277
|
MORGK
|
8/9/1996 12:00:00 AM
|
125.7700
|
1200.8000
|
Very Large
|
31 |
10278
|
BERGS
|
8/12/1996 12:00:00 AM
|
92.6900
|
1488.8000
|
Very Large
|
32 |
10279
|
LEHMS
|
8/13/1996 12:00:00 AM
|
25.8300
|
468.0000
|
Medium
|
33 |
10280
|
BERGS
|
8/14/1996 12:00:00 AM
|
8.9800
|
613.2000
|
Large
|
34 |
10281
|
ROMEY
|
8/14/1996 12:00:00 AM
|
2.9400
|
86.5000
|
Small
|
35 |
10282
|
ROMEY
|
8/15/1996 12:00:00 AM
|
12.6900
|
155.4000
|
Medium
|
36 |
10283
|
LILAS
|
8/16/1996 12:00:00 AM
|
84.8100
|
1414.8000
|
Very Large
|
37 |
10284
|
LEHMS
|
8/19/1996 12:00:00 AM
|
76.5600
|
1452.0000
|
Very Large
|
38 |
10285
|
QUICK
|
8/20/1996 12:00:00 AM
|
76.8300
|
2179.2000
|
Very Large
|
39 |
10286
|
QUICK
|
8/21/1996 12:00:00 AM
|
229.2400
|
3016.0000
|
Very Large
|
40 |
10287
|
RICAR
|
8/22/1996 12:00:00 AM
|
12.7600
|
924.0000
|
Large
|
41 |
10288
|
REGGC
|
8/23/1996 12:00:00 AM
|
7.4500
|
89.0000
|
Small
|
42 |
10289
|
BSBEV
|
8/26/1996 12:00:00 AM
|
22.7700
|
479.4000
|
Medium
|
43 |
10290
|
COMMI
|
8/27/1996 12:00:00 AM
|
79.7000
|
2169.0000
|
Very Large
|
44 |
10291
|
QUEDE
|
8/27/1996 12:00:00 AM
|
6.4000
|
552.8000
|
Large
|
45 |
10292
|
TRADH
|
8/28/1996 12:00:00 AM
|
1.3500
|
1296.0000
|
Very Large
|
46 |
10293
|
TORTU
|
8/29/1996 12:00:00 AM
|
21.1800
|
848.7000
|
Large
|
47 |
10294
|
RATTC
|
8/30/1996 12:00:00 AM
|
147.2600
|
1887.6000
|
Very Large
|
48 |
10295
|
VINET
|
9/2/1996 12:00:00 AM
|
1.1500
|
121.6000
|
Medium
|
49 |
10296
|
LILAS
|
9/3/1996 12:00:00 AM
|
0.1200
|
1050.6000
|
Very Large
|
50 |
10297
|
BLONP
|
9/4/1996 12:00:00 AM
|
5.7400
|
1420.0000
|
Very Large
|
51 |
10298
|
HUNGO
|
9/5/1996 12:00:00 AM
|
168.2200
|
3127.0000
|
Very Large
|
52 |
10299
|
RICAR
|
9/6/1996 12:00:00 AM
|
29.7600
|
349.5000
|
Medium
|
53 |
10300
|
MAGAA
|
9/9/1996 12:00:00 AM
|
17.6800
|
608.0000
|
Large
|
54 |
10301
|
WANDK
|
9/9/1996 12:00:00 AM
|
45.0800
|
755.0000
|
Large
|
55 |
10302
|
SUPRD
|
9/10/1996 12:00:00 AM
|
6.2700
|
2708.8000
|
Very Large
|
56 |
10303
|
GODOS
|
9/11/1996 12:00:00 AM
|
107.8300
|
1242.0000
|
Very Large
|
57 |
10304
|
TORTU
|
9/12/1996 12:00:00 AM
|
63.7900
|
954.4000
|
Large
|
58 |
10305
|
OLDWO
|
9/13/1996 12:00:00 AM
|
257.6200
|
4157.0000
|
Very Large
|
59 |
10306
|
ROMEY
|
9/16/1996 12:00:00 AM
|
7.5600
|
498.5000
|
Medium
|
60 |
10307
|
LONEP
|
9/17/1996 12:00:00 AM
|
0.5600
|
424.0000
|
Medium
|
61 |
10308
|
ANATR
|
9/18/1996 12:00:00 AM
|
1.6100
|
88.8000
|
Small
|
62 |
10309
|
HUNGO
|
9/19/1996 12:00:00 AM
|
47.3000
|
1762.0000
|
Very Large
|
63 |
10310
|
THEBI
|
9/20/1996 12:00:00 AM
|
17.5200
|
336.0000
|
Medium
|
64 |
10311
|
DUMON
|
9/20/1996 12:00:00 AM
|
24.6900
|
268.8000
|
Medium
|
65 |
10312
|
WANDK
|
9/23/1996 12:00:00 AM
|
40.2600
|
1614.8000
|
Very Large
|
66 |
10313
|
QUICK
|
9/24/1996 12:00:00 AM
|
1.9600
|
182.4000
|
Medium
|
67 |
10314
|
RATTC
|
9/25/1996 12:00:00 AM
|
74.1600
|
2327.0000
|
Very Large
|
68 |
10315
|
ISLAT
|
9/26/1996 12:00:00 AM
|
41.7600
|
516.8000
|
Large
|
69 |
10316
|
RATTC
|
9/27/1996 12:00:00 AM
|
150.1500
|
2835.0000
|
Very Large
|
70 |
10317
|
LONEP
|
9/30/1996 12:00:00 AM
|
12.6900
|
288.0000
|
Medium
|
71 |
10318
|
ISLAT
|
10/1/1996 12:00:00 AM
|
4.7300
|
240.4000
|
Medium
|
72 |
10319
|
TORTU
|
10/2/1996 12:00:00 AM
|
64.5000
|
1191.2000
|
Very Large
|
73 |
10320
|
WARTH
|
10/3/1996 12:00:00 AM
|
34.5700
|
516.0000
|
Large
|
74 |
10321
|
ISLAT
|
10/3/1996 12:00:00 AM
|
3.4300
|
144.0000
|
Medium
|
75 |
10322
|
PERIC
|
10/4/1996 12:00:00 AM
|
0.4000
|
112.0000
|
Medium
|
76 |
10323
|
KOENE
|
10/7/1996 12:00:00 AM
|
4.8800
|
164.4000
|
Medium
|
77 |
10324
|
SAVEA
|
10/8/1996 12:00:00 AM
|
214.2700
|
6155.9000
|
Very Large
|
78 |
10325
|
KOENE
|
10/9/1996 12:00:00 AM
|
64.8600
|
1497.0000
|
Very Large
|
79 |
10326
|
BOLID
|
10/10/1996 12:00:00 AM
|
77.9200
|
982.0000
|
Large
|
80 |
10327
|
FOLKO
|
10/11/1996 12:00:00 AM
|
63.3600
|
2262.5000
|
Very Large
|
81 |
10328
|
FURIB
|
10/14/1996 12:00:00 AM
|
87.0300
|
1168.0000
|
Very Large
|
82 |
10329
|
SPLIR
|
10/15/1996 12:00:00 AM
|
191.6700
|
4819.4000
|
Very Large
|
83 |
10330
|
LILAS
|
10/16/1996 12:00:00 AM
|
12.7500
|
1940.0000
|
Very Large
|
84 |
10331
|
BONAP
|
10/16/1996 12:00:00 AM
|
10.1900
|
88.5000
|
Small
|
85 |
10332
|
MEREP
|
10/17/1996 12:00:00 AM
|
52.8400
|
2233.6000
|
Very Large
|
86 |
10333
|
WARTH
|
10/18/1996 12:00:00 AM
|
0.5900
|
954.0000
|
Large
|
87 |
10334
|
VICTE
|
10/21/1996 12:00:00 AM
|
8.5600
|
144.8000
|
Medium
|
88 |
10335
|
HUNGO
|
10/22/1996 12:00:00 AM
|
42.1100
|
2545.2000
|
Very Large
|
89 |
10336
|
PRINI
|
10/23/1996 12:00:00 AM
|
15.5100
|
316.8000
|
Medium
|
90 |
10337
|
FRANK
|
10/24/1996 12:00:00 AM
|
108.2600
|
2467.0000
|
Very Large
|
91 |
10338
|
OLDWO
|
10/25/1996 12:00:00 AM
|
84.2100
|
934.5000
|
Large
|
92 |
10339
|
MEREP
|
10/28/1996 12:00:00 AM
|
15.6600
|
3463.2000
|
Very Large
|
93 |
10340
|
BONAP
|
10/29/1996 12:00:00 AM
|
166.3100
|
2564.4000
|
Very Large
|
94 |
10341
|
SIMOB
|
10/29/1996 12:00:00 AM
|
26.7800
|
412.0000
|
Medium
|
95 |
10342
|
FRANK
|
10/30/1996 12:00:00 AM
|
54.8300
|
2300.8000
|
Very Large
|
96 |
10343
|
LEHMS
|
10/31/1996 12:00:00 AM
|
110.3700
|
1586.0000
|
Very Large
|
97 |
10344
|
WHITC
|
11/1/1996 12:00:00 AM
|
23.2900
|
2856.0000
|
Very Large
|
98 |
10345
|
QUICK
|
11/4/1996 12:00:00 AM
|
249.0600
|
2924.8000
|
Very Large
|
99 |
10346
|
RATTC
|
11/5/1996 12:00:00 AM
|
142.0800
|
1731.2000
|
Very Large
|
100 |
10347
|
FAMIA
|
11/6/1996 12:00:00 AM
|
3.1000
|
928.0000
|
Large
|
101 |
10348
|
WANDK
|
11/7/1996 12:00:00 AM
|
0.7800
|
396.0000
|
Medium
|
102 |
10349
|
SPLIR
|
11/8/1996 12:00:00 AM
|
8.6300
|
141.6000
|
Medium
|
103 |
10350
|
LAMAI
|
11/11/1996 12:00:00 AM
|
64.1900
|
713.4000
|
Large
|
104 |
10351
|
ERNSH
|
11/11/1996 12:00:00 AM
|
162.3300
|
5677.6000
|
Very Large
|
105 |
10352
|
FURIB
|
11/12/1996 12:00:00 AM
|
1.3000
|
154.0000
|
Medium
|
106 |
10353
|
PICCO
|
11/13/1996 12:00:00 AM
|
360.6300
|
10741.6000
|
Very Large
|
107 |
10354
|
PERIC
|
11/14/1996 12:00:00 AM
|
53.8000
|
568.8000
|
Large
|
108 |
10355
|
AROUT
|
11/15/1996 12:00:00 AM
|
41.9500
|
480.0000
|
Medium
|
109 |
10356
|
WANDK
|
11/18/1996 12:00:00 AM
|
36.7100
|
1106.4000
|
Very Large
|
110 |
10357
|
LILAS
|
11/19/1996 12:00:00 AM
|
34.8800
|
1360.0000
|
Very Large
|
111 |
10358
|
LAMAI
|
11/20/1996 12:00:00 AM
|
19.6400
|
452.0000
|
Medium
|
112 |
10359
|
SEVES
|
11/21/1996 12:00:00 AM
|
288.4300
|
3654.4000
|
Very Large
|
113 |
10360
|
BLONP
|
11/22/1996 12:00:00 AM
|
131.7000
|
7390.2000
|
Very Large
|
114 |
10361
|
QUICK
|
11/22/1996 12:00:00 AM
|
183.1700
|
2273.6000
|
Very Large
|
115 |
10362
|
BONAP
|
11/25/1996 12:00:00 AM
|
96.0400
|
1549.6000
|
Very Large
|
116 |
10363
|
DRACD
|
11/26/1996 12:00:00 AM
|
30.5400
|
447.2000
|
Medium
|
117 |
10364
|
EASTC
|
11/26/1996 12:00:00 AM
|
71.9700
|
950.0000
|
Large
|
118 |
10365
|
ANTON
|
11/27/1996 12:00:00 AM
|
22.0000
|
403.2000
|
Medium
|
119 |
10366
|
GALED
|
11/28/1996 12:00:00 AM
|
10.1400
|
136.0000
|
Medium
|
120 |
10367
|
VAFFE
|
11/28/1996 12:00:00 AM
|
13.5500
|
834.2000
|
Large
|
121 |
10368
|
ERNSH
|
11/29/1996 12:00:00 AM
|
101.9500
|
1834.2000
|
Very Large
|
122 |
10369
|
SPLIR
|
12/2/1996 12:00:00 AM
|
195.6800
|
2527.2000
|
Very Large
|
123 |
10370
|
CHOPS
|
12/3/1996 12:00:00 AM
|
1.1700
|
1174.0000
|
Very Large
|
124 |
10371
|
LAMAI
|
12/3/1996 12:00:00 AM
|
0.4500
|
91.2000
|
Small
|
125 |
10372
|
QUEEN
|
12/4/1996 12:00:00 AM
|
890.7800
|
12281.2000
|
Very Large
|
126 |
10373
|
HUNGO
|
12/5/1996 12:00:00 AM
|
124.1200
|
1708.0000
|
Very Large
|
127 |
10374
|
WOLZA
|
12/5/1996 12:00:00 AM
|
3.9400
|
459.0000
|
Medium
|
128 |
10375
|
HUNGC
|
12/6/1996 12:00:00 AM
|
20.1200
|
338.0000
|
Medium
|
129 |
10376
|
MEREP
|
12/9/1996 12:00:00 AM
|
20.3900
|
420.0000
|
Medium
|
130 |
10377
|
SEVES
|
12/9/1996 12:00:00 AM
|
22.2100
|
1016.0000
|
Very Large
|
131 |
10378
|
FOLKO
|
12/10/1996 12:00:00 AM
|
5.4400
|
103.2000
|
Medium
|
132 |
10379
|
QUEDE
|
12/11/1996 12:00:00 AM
|
45.0300
|
959.2000
|
Large
|
133 |
10380
|
HUNGO
|
12/12/1996 12:00:00 AM
|
35.0300
|
1419.8000
|
Very Large
|
134 |
10381
|
LILAS
|
12/12/1996 12:00:00 AM
|
7.9900
|
112.0000
|
Medium
|
135 |
10382
|
ERNSH
|
12/13/1996 12:00:00 AM
|
94.7700
|
2900.0000
|
Very Large
|
136 |
10383
|
AROUT
|
12/16/1996 12:00:00 AM
|
34.2400
|
899.0000
|
Large
|
137 |
10384
|
BERGS
|
12/16/1996 12:00:00 AM
|
168.6400
|
2222.4000
|
Very Large
|
138 |
10385
|
SPLIR
|
12/17/1996 12:00:00 AM
|
30.9600
|
864.0000
|
Large
|
139 |
10386
|
FAMIA
|
12/18/1996 12:00:00 AM
|
13.9900
|
166.0000
|
Medium
|
140 |
10387
|
SANTG
|
12/18/1996 12:00:00 AM
|
93.6300
|
1058.4000
|
Very Large
|
141 |
10388
|
SEVES
|
12/19/1996 12:00:00 AM
|
34.8600
|
1274.0000
|
Very Large
|
142 |
10389
|
BOTTM
|
12/20/1996 12:00:00 AM
|
47.4200
|
1832.8000
|
Very Large
|
143 |
10390
|
ERNSH
|
12/23/1996 12:00:00 AM
|
126.3800
|
2275.2000
|
Very Large
|
144 |
10391
|
DRACD
|
12/23/1996 12:00:00 AM
|
5.4500
|
86.4000
|
Small
|
145 |
10392
|
PICCO
|
12/24/1996 12:00:00 AM
|
122.4600
|
1440.0000
|
Very Large
|
146 |
10393
|
SAVEA
|
12/25/1996 12:00:00 AM
|
126.5600
|
3302.6000
|
Very Large
|
147 |
10394
|
HUNGC
|
12/25/1996 12:00:00 AM
|
30.3400
|
442.0000
|
Medium
|
148 |
10395
|
HILAA
|
12/26/1996 12:00:00 AM
|
184.4100
|
2333.2000
|
Very Large
|
149 |
10396
|
FRANK
|
12/27/1996 12:00:00 AM
|
135.3500
|
1903.8000
|
Very Large
|
150 |
10397
|
PRINI
|
12/27/1996 12:00:00 AM
|
60.2600
|
843.2000
|
Large
|
151 |
10398
|
SAVEA
|
12/30/1996 12:00:00 AM
|
89.1600
|
2736.0000
|
Very Large
|
152 |
10399
|
VAFFE
|
12/31/1996 12:00:00 AM
|
27.3600
|
1765.6000
|
Very Large
|
153 |
10400
|
EASTC
|
1/1/1997 12:00:00 AM
|
83.9300
|
3063.0000
|
Very Large
|
154 |
10401
|
RATTC
|
1/1/1997 12:00:00 AM
|
12.5100
|
3868.6000
|
Very Large
|
155 |
10402
|
ERNSH
|
1/2/1997 12:00:00 AM
|
67.8800
|
2713.5000
|
Very Large
|
156 |
10403
|
ERNSH
|
1/3/1997 12:00:00 AM
|
73.7900
|
1005.9000
|
Very Large
|
157 |
10404
|
MAGAA
|
1/3/1997 12:00:00 AM
|
155.9700
|
1675.0000
|
Very Large
|
158 |
10405
|
LINOD
|
1/6/1997 12:00:00 AM
|
34.8200
|
400.0000
|
Medium
|
159 |
10406
|
QUEEN
|
1/7/1997 12:00:00 AM
|
108.0400
|
2018.2000
|
Very Large
|
160 |
10407
|
OTTIK
|
1/7/1997 12:00:00 AM
|
91.4800
|
1194.0000
|
Very Large
|
161 |
10408
|
FOLIG
|
1/8/1997 12:00:00 AM
|
11.2600
|
1622.4000
|
Very Large
|
162 |
10409
|
OCEAN
|
1/9/1997 12:00:00 AM
|
29.8300
|
319.2000
|
Medium
|
163 |
10410
|
BOTTM
|
1/10/1997 12:00:00 AM
|
2.4000
|
802.0000
|
Large
|
164 |
10411
|
BOTTM
|
1/10/1997 12:00:00 AM
|
23.6500
|
1208.5000
|
Very Large
|
165 |
10412
|
WARTH
|
1/13/1997 12:00:00 AM
|
3.7700
|
372.0000
|
Medium
|
166 |
10413
|
LAMAI
|
1/14/1997 12:00:00 AM
|
95.6600
|
2123.2000
|
Very Large
|
167 |
10414
|
FAMIA
|
1/14/1997 12:00:00 AM
|
21.4800
|
231.4000
|
Medium
|
168 |
10415
|
HUNGC
|
1/15/1997 12:00:00 AM
|
0.2000
|
102.4000
|
Medium
|
169 |
10416
|
WARTH
|
1/16/1997 12:00:00 AM
|
22.7200
|
720.0000
|
Large
|
170 |
10417
|
SIMOB
|
1/16/1997 12:00:00 AM
|
70.2900
|
11283.2000
|
Very Large
|
171 |
10418
|
QUICK
|
1/17/1997 12:00:00 AM
|
17.5500
|
1814.8000
|
Very Large
|
172 |
10419
|
RICSU
|
1/20/1997 12:00:00 AM
|
137.3500
|
2208.0000
|
Very Large
|
173 |
10420
|
WELLI
|
1/21/1997 12:00:00 AM
|
44.1200
|
1897.6000
|
Very Large
|
174 |
10421
|
QUEDE
|
1/21/1997 12:00:00 AM
|
99.2300
|
1273.2000
|
Very Large
|
175 |
10422
|
FRANS
|
1/22/1997 12:00:00 AM
|
3.0200
|
49.8000
|
Small
|
176 |
10423
|
GOURL
|
1/23/1997 12:00:00 AM
|
24.5000
|
1020.0000
|
Very Large
|
177 |
10424
|
MEREP
|
1/23/1997 12:00:00 AM
|
370.6100
|
11493.2000
|
Very Large
|
178 |
10425
|
LAMAI
|
1/24/1997 12:00:00 AM
|
7.9300
|
480.0000
|
Medium
|
179 |
10426
|
GALED
|
1/27/1997 12:00:00 AM
|
18.6900
|
338.2000
|
Medium
|
180 |
10427
|
PICCO
|
1/27/1997 12:00:00 AM
|
31.2900
|
651.0000
|
Large
|
181 |
10428
|
REGGC
|
1/28/1997 12:00:00 AM
|
11.0900
|
192.0000
|
Medium
|
182 |
10429
|
HUNGO
|
1/29/1997 12:00:00 AM
|
56.6300
|
1748.5000
|
Very Large
|
183 |
10430
|
ERNSH
|
1/30/1997 12:00:00 AM
|
458.7800
|
5796.0000
|
Very Large
|
184 |
10431
|
BOTTM
|
1/30/1997 12:00:00 AM
|
44.1700
|
2523.0000
|
Very Large
|
185 |
10432
|
SPLIR
|
1/31/1997 12:00:00 AM
|
4.3400
|
485.0000
|
Medium
|
186 |
10433
|
PRINI
|
2/3/1997 12:00:00 AM
|
73.8300
|
851.2000
|
Large
|
187 |
10434
|
FOLKO
|
2/3/1997 12:00:00 AM
|
17.9200
|
360.0000
|
Medium
|
188 |
10435
|
CONSH
|
2/4/1997 12:00:00 AM
|
9.2100
|
631.6000
|
Large
|
189 |
10436
|
BLONP
|
2/5/1997 12:00:00 AM
|
156.6600
|
2210.8000
|
Very Large
|
190 |
10437
|
WARTH
|
2/5/1997 12:00:00 AM
|
19.9700
|
393.0000
|
Medium
|
191 |
10438
|
TOMSP
|
2/6/1997 12:00:00 AM
|
8.2400
|
567.5000
|
Large
|
192 |
10439
|
MEREP
|
2/7/1997 12:00:00 AM
|
4.0700
|
1078.0000
|
Very Large
|
193 |
10440
|
SAVEA
|
2/10/1997 12:00:00 AM
|
86.5300
|
5793.1000
|
Very Large
|
194 |
10441
|
OLDWO
|
2/10/1997 12:00:00 AM
|
73.0200
|
1755.0000
|
Very Large
|
195 |
10442
|
ERNSH
|
2/11/1997 12:00:00 AM
|
47.9400
|
1792.0000
|
Very Large
|
196 |
10443
|
REGGC
|
2/12/1997 12:00:00 AM
|
13.9500
|
537.6000
|
Large
|
197 |
10444
|
BERGS
|
2/12/1997 12:00:00 AM
|
3.5000
|
1031.7000
|
Very Large
|
198 |
10445
|
BERGS
|
2/13/1997 12:00:00 AM
|
9.3000
|
174.9000
|
Medium
|
199 |
10446
|
TOMSP
|
2/14/1997 12:00:00 AM
|
14.6800
|
273.6000
|
Medium
|
200 |
10447
|
RICAR
|
2/14/1997 12:00:00 AM
|
68.6600
|
914.4000
|
Large
|
201 |
10448
|
RANCH
|
2/17/1997 12:00:00 AM
|
38.8200
|
443.4000
|
Medium
|
202 |
10449
|
BLONP
|
2/18/1997 12:00:00 AM
|
53.3000
|
1838.2000
|
Very Large
|
203 |
10450
|
VICTE
|
2/19/1997 12:00:00 AM
|
7.2300
|
531.4000
|
Large
|
204 |
10451
|
QUICK
|
2/19/1997 12:00:00 AM
|
189.0900
|
4277.4000
|
Very Large
|
205 |
10452
|
SAVEA
|
2/20/1997 12:00:00 AM
|
140.2600
|
2096.0000
|
Very Large
|
206 |
10453
|
AROUT
|
2/21/1997 12:00:00 AM
|
25.3600
|
453.0000
|
Medium
|
207 |
10454
|
LAMAI
|
2/21/1997 12:00:00 AM
|
2.7400
|
414.0000
|
Medium
|
208 |
10455
|
WARTH
|
2/24/1997 12:00:00 AM
|
180.4500
|
2684.0000
|
Very Large
|
209 |
10456
|
KOENE
|
2/25/1997 12:00:00 AM
|
8.1200
|
656.0000
|
Large
|
210 |
10457
|
KOENE
|
2/25/1997 12:00:00 AM
|
11.5700
|
1584.0000
|
Very Large
|
211 |
10458
|
SUPRD
|
2/26/1997 12:00:00 AM
|
147.0600
|
3891.0000
|
Very Large
|
212 |
10459
|
VICTE
|
2/27/1997 12:00:00 AM
|
25.0900
|
1688.0000
|
Very Large
|
213 |
10460
|
FOLKO
|
2/28/1997 12:00:00 AM
|
16.2700
|
234.8000
|
Medium
|
214 |
10461
|
LILAS
|
2/28/1997 12:00:00 AM
|
148.6100
|
2051.6000
|
Very Large
|
215 |
10462
|
CONSH
|
3/3/1997 12:00:00 AM
|
6.1700
|
156.0000
|
Medium
|
216 |
10463
|
SUPRD
|
3/4/1997 12:00:00 AM
|
14.7800
|
713.3000
|
Large
|
217 |
10464
|
FURIB
|
3/4/1997 12:00:00 AM
|
89.0000
|
1848.0000
|
Very Large
|
218 |
10465
|
VAFFE
|
3/5/1997 12:00:00 AM
|
145.0400
|
2719.0000
|
Very Large
|
219 |
10466
|
COMMI
|
3/6/1997 12:00:00 AM
|
11.9300
|
216.0000
|
Medium
|
220 |
10467
|
MAGAA
|
3/6/1997 12:00:00 AM
|
4.9300
|
235.2000
|
Medium
|
221 |
10468
|
KOENE
|
3/7/1997 12:00:00 AM
|
44.1200
|
717.6000
|
Large
|
222 |
10469
|
WHITC
|
3/10/1997 12:00:00 AM
|
60.1800
|
1125.5000
|
Very Large
|
223 |
10470
|
BONAP
|
3/11/1997 12:00:00 AM
|
64.5600
|
1820.8000
|
Very Large
|
224 |
10471
|
BSBEV
|
3/11/1997 12:00:00 AM
|
45.5900
|
1328.0000
|
Very Large
|
225 |
10472
|
SEVES
|
3/12/1997 12:00:00 AM
|
4.2000
|
1051.2000
|
Very Large
|
226 |
10473
|
ISLAT
|
3/13/1997 12:00:00 AM
|
16.3700
|
230.4000
|
Medium
|
227 |
10474
|
PERIC
|
3/13/1997 12:00:00 AM
|
83.4900
|
1249.1000
|
Very Large
|
228 |
10475
|
SUPRD
|
3/14/1997 12:00:00 AM
|
68.5200
|
1770.8000
|
Very Large
|
229 |
10476
|
HILAA
|
3/17/1997 12:00:00 AM
|
4.4100
|
182.4000
|
Medium
|
230 |
10477
|
PRINI
|
3/17/1997 12:00:00 AM
|
13.0200
|
672.0000
|
Large
|
231 |
10478
|
VICTE
|
3/18/1997 12:00:00 AM
|
4.8100
|
496.0000
|
Medium
|
232 |
10479
|
RATTC
|
3/19/1997 12:00:00 AM
|
708.9500
|
10495.6000
|
Very Large
|
233 |
10480
|
FOLIG
|
3/20/1997 12:00:00 AM
|
1.3500
|
756.0000
|
Large
|
234 |
10481
|
RICAR
|
3/20/1997 12:00:00 AM
|
64.3300
|
1472.0000
|
Very Large
|
235 |
10482
|
LAZYK
|
3/21/1997 12:00:00 AM
|
7.4800
|
147.0000
|
Medium
|
236 |
10483
|
WHITC
|
3/24/1997 12:00:00 AM
|
15.2800
|
704.0000
|
Large
|
237 |
10484
|
BSBEV
|
3/24/1997 12:00:00 AM
|
6.8800
|
386.2000
|
Medium
|
238 |
10485
|
LINOD
|
3/25/1997 12:00:00 AM
|
64.4500
|
1760.0000
|
Very Large
|
239 |
10486
|
HILAA
|
3/26/1997 12:00:00 AM
|
30.5300
|
1272.0000
|
Very Large
|
240 |
10487
|
QUEEN
|
3/26/1997 12:00:00 AM
|
71.0700
|
925.1000
|
Large
|
241 |
10488
|
FRANK
|
3/27/1997 12:00:00 AM
|
4.9300
|
1560.0000
|
Very Large
|
242 |
10489
|
PICCO
|
3/28/1997 12:00:00 AM
|
5.2900
|
502.2000
|
Large
|
243 |
10490
|
HILAA
|
3/31/1997 12:00:00 AM
|
210.1900
|
3163.2000
|
Very Large
|
244 |
10491
|
FURIB
|
3/31/1997 12:00:00 AM
|
16.9600
|
305.3000
|
Medium
|
245 |
10492
|
BOTTM
|
4/1/1997 12:00:00 AM
|
62.8900
|
896.0000
|
Large
|
246 |
10493
|
LAMAI
|
4/2/1997 12:00:00 AM
|
10.6400
|
676.0000
|
Large
|
247 |
10494
|
COMMI
|
4/2/1997 12:00:00 AM
|
65.9900
|
912.0000
|
Large
|
248 |
10495
|
LAUGB
|
4/3/1997 12:00:00 AM
|
4.6500
|
278.0000
|
Medium
|
249 |
10496
|
TRADH
|
4/4/1997 12:00:00 AM
|
46.7700
|
200.0000
|
Medium
|
250 |
10497
|
LEHMS
|
4/4/1997 12:00:00 AM
|
36.2100
|
1380.6000
|
Very Large
|
251 |
10498
|
HILAA
|
4/7/1997 12:00:00 AM
|
29.7500
|
575.0000
|
Large
|
252 |
10499
|
LILAS
|
4/8/1997 12:00:00 AM
|
102.0200
|
1412.0000
|
Very Large
|
253 |
10500
|
LAMAI
|
4/9/1997 12:00:00 AM
|
42.6800
|
550.8000
|
Large
|
254 |
10501
|
BLAUS
|
4/9/1997 12:00:00 AM
|
8.8500
|
149.0000
|
Medium
|
255 |
10502
|
PERIC
|
4/10/1997 12:00:00 AM
|
69.3200
|
816.3000
|
Large
|
256 |
10503
|
HUNGO
|
4/11/1997 12:00:00 AM
|
16.7400
|
2048.5000
|
Very Large
|
257 |
10504
|
WHITC
|
4/11/1997 12:00:00 AM
|
59.1300
|
1388.5000
|
Very Large
|
258 |
10505
|
MEREP
|
4/14/1997 12:00:00 AM
|
7.1300
|
147.9000
|
Medium
|
259 |
10506
|
KOENE
|
4/15/1997 12:00:00 AM
|
21.1900
|
462.0000
|
Medium
|
260 |
10507
|
ANTON
|
4/15/1997 12:00:00 AM
|
47.4500
|
881.2500
|
Large
|
261 |
10508
|
OTTIK
|
4/16/1997 12:00:00 AM
|
4.9900
|
240.0000
|
Medium
|
262 |
10509
|
BLAUS
|
4/17/1997 12:00:00 AM
|
0.1500
|
136.8000
|
Medium
|
263 |
10510
|
SAVEA
|
4/18/1997 12:00:00 AM
|
367.6300
|
4735.4400
|
Very Large
|
264 |
10511
|
BONAP
|
4/18/1997 12:00:00 AM
|
350.6400
|
3000.0000
|
Very Large
|
265 |
10512
|
FAMIA
|
4/21/1997 12:00:00 AM
|
3.5300
|
618.0000
|
Large
|
266 |
10513
|
WANDK
|
4/22/1997 12:00:00 AM
|
105.6500
|
2427.5000
|
Very Large
|
267 |
10514
|
ERNSH
|
4/22/1997 12:00:00 AM
|
789.9500
|
8623.4500
|
Very Large
|
268 |
10515
|
QUICK
|
4/23/1997 12:00:00 AM
|
204.4700
|
10588.5000
|
Very Large
|
269 |
10516
|
HUNGO
|
4/24/1997 12:00:00 AM
|
62.7800
|
2614.5000
|
Very Large
|
270 |
10517
|
NORTS
|
4/24/1997 12:00:00 AM
|
32.0700
|
352.0000
|
Medium
|
271 |
10518
|
TORTU
|
4/25/1997 12:00:00 AM
|
218.1500
|
4150.0500
|
Very Large
|
272 |
10519
|
CHOPS
|
4/28/1997 12:00:00 AM
|
91.7600
|
2356.0000
|
Very Large
|
273 |
10520
|
SANTG
|
4/29/1997 12:00:00 AM
|
13.3700
|
200.0000
|
Medium
|
274 |
10521
|
CACTU
|
4/29/1997 12:00:00 AM
|
17.2200
|
225.5000
|
Medium
|
275 |
10522
|
LEHMS
|
4/30/1997 12:00:00 AM
|
45.3300
|
2657.8000
|
Very Large
|
276 |
10523
|
SEVES
|
5/1/1997 12:00:00 AM
|
77.6300
|
2715.9000
|
Very Large
|
277 |
10524
|
BERGS
|
5/1/1997 12:00:00 AM
|
244.7900
|
3192.6500
|
Very Large
|
278 |
10525
|
BONAP
|
5/2/1997 12:00:00 AM
|
11.0600
|
846.0000
|
Large
|
279 |
10526
|
WARTH
|
5/5/1997 12:00:00 AM
|
58.5900
|
1344.0000
|
Very Large
|
280 |
10527
|
QUICK
|
5/5/1997 12:00:00 AM
|
41.9000
|
1670.0000
|
Very Large
|
281 |
10528
|
GREAL
|
5/6/1997 12:00:00 AM
|
3.3500
|
396.2000
|
Medium
|
282 |
10529
|
MAISD
|
5/7/1997 12:00:00 AM
|
66.6900
|
946.0000
|
Large
|
283 |
10530
|
PICCO
|
5/8/1997 12:00:00 AM
|
339.2200
|
4180.0000
|
Very Large
|
284 |
10531
|
OCEAN
|
5/8/1997 12:00:00 AM
|
8.1200
|
110.0000
|
Medium
|
285 |
10532
|
EASTC
|
5/9/1997 12:00:00 AM
|
74.4600
|
796.3500
|
Large
|
286 |
10533
|
FOLKO
|
5/12/1997 12:00:00 AM
|
188.0400
|
2295.2000
|
Very Large
|
287 |
10534
|
LEHMS
|
5/12/1997 12:00:00 AM
|
27.9400
|
517.4000
|
Large
|
288 |
10535
|
ANTON
|
5/13/1997 12:00:00 AM
|
15.6400
|
2156.5000
|
Very Large
|
289 |
10536
|
LEHMS
|
5/14/1997 12:00:00 AM
|
58.8800
|
2085.0000
|
Very Large
|
290 |
10537
|
RICSU
|
5/14/1997 12:00:00 AM
|
78.8500
|
1823.8000
|
Very Large
|
291 |
10538
|
BSBEV
|
5/15/1997 12:00:00 AM
|
4.8700
|
139.8000
|
Medium
|
292 |
10539
|
BSBEV
|
5/16/1997 12:00:00 AM
|
12.3600
|
355.5000
|
Medium
|
293 |
10540
|
QUICK
|
5/19/1997 12:00:00 AM
|
1007.6400
|
10191.7000
|
Very Large
|
294 |
10541
|
HANAR
|
5/19/1997 12:00:00 AM
|
68.6500
|
2162.8000
|
Very Large
|
295 |
10542
|
KOENE
|
5/20/1997 12:00:00 AM
|
10.9500
|
493.8000
|
Medium
|
296 |
10543
|
LILAS
|
5/21/1997 12:00:00 AM
|
48.1700
|
1770.0000
|
Very Large
|
297 |
10544
|
LONEP
|
5/21/1997 12:00:00 AM
|
24.9100
|
417.2000
|
Medium
|
298 |
10545
|
LAZYK
|
5/22/1997 12:00:00 AM
|
11.9200
|
210.0000
|
Medium
|
299 |
10546
|
VICTE
|
5/23/1997 12:00:00 AM
|
194.7200
|
2812.0000
|
Very Large
|
300 |
10547
|
SEVES
|
5/23/1997 12:00:00 AM
|
178.4300
|
1908.0000
|
Very Large
|
301 |
10548
|
TOMSP
|
5/26/1997 12:00:00 AM
|
1.4300
|
275.1000
|
Medium
|
302 |
10549
|
QUICK
|
5/27/1997 12:00:00 AM
|
171.2400
|
4181.5000
|
Very Large
|
303 |
10550
|
GODOS
|
5/28/1997 12:00:00 AM
|
4.3200
|
749.0000
|
Large
|
304 |
10551
|
FURIB
|
5/28/1997 12:00:00 AM
|
72.9500
|
1836.0000
|
Very Large
|
305 |
10552
|
HILAA
|
5/29/1997 12:00:00 AM
|
83.2200
|
880.5000
|
Large
|
306 |
10553
|
WARTH
|
5/30/1997 12:00:00 AM
|
149.4900
|
1546.3000
|
Very Large
|
307 |
10554
|
OTTIK
|
5/30/1997 12:00:00 AM
|
120.9700
|
1819.5000
|
Very Large
|
308 |
10555
|
SAVEA
|
6/2/1997 12:00:00 AM
|
252.4900
|
3680.5000
|
Very Large
|
309 |
10556
|
SIMOB
|
6/3/1997 12:00:00 AM
|
9.8000
|
835.2000
|
Large
|
310 |
10557
|
LEHMS
|
6/3/1997 12:00:00 AM
|
96.7200
|
1152.5000
|
Very Large
|
311 |
10558
|
AROUT
|
6/4/1997 12:00:00 AM
|
72.9700
|
2142.9000
|
Very Large
|
312 |
10559
|
BLONP
|
6/5/1997 12:00:00 AM
|
8.0500
|
547.8000
|
Large
|
313 |
10560
|
FRANK
|
6/6/1997 12:00:00 AM
|
36.6500
|
1257.3000
|
Very Large
|
314 |
10561
|
FOLKO
|
6/6/1997 12:00:00 AM
|
242.2100
|
2844.5000
|
Very Large
|
315 |
10562
|
REGGC
|
6/9/1997 12:00:00 AM
|
22.9500
|
543.0000
|
Large
|
316 |
10563
|
RICAR
|
6/10/1997 12:00:00 AM
|
60.4300
|
965.0000
|
Large
|
317 |
10564
|
RATTC
|
6/10/1997 12:00:00 AM
|
13.7500
|
1299.0000
|
Very Large
|
318 |
10565
|
MEREP
|
6/11/1997 12:00:00 AM
|
7.1500
|
711.0000
|
Large
|
319 |
10566
|
BLONP
|
6/12/1997 12:00:00 AM
|
88.4000
|
2040.0000
|
Very Large
|
320 |
10567
|
HUNGO
|
6/12/1997 12:00:00 AM
|
33.9700
|
3109.0000
|
Very Large
|
321 |
10568
|
GALED
|
6/13/1997 12:00:00 AM
|
6.5400
|
155.0000
|
Medium
|
322 |
10569
|
RATTC
|
6/16/1997 12:00:00 AM
|
58.9800
|
977.5000
|
Large
|
323 |
10570
|
MEREP
|
6/17/1997 12:00:00 AM
|
188.9900
|
2595.0000
|
Very Large
|
324 |
10571
|
ERNSH
|
6/17/1997 12:00:00 AM
|
26.0600
|
647.7500
|
Large
|
325 |
10572
|
BERGS
|
6/18/1997 12:00:00 AM
|
116.4300
|
1565.6500
|
Very Large
|
326 |
10573
|
ANTON
|
6/19/1997 12:00:00 AM
|
84.8400
|
2082.0000
|
Very Large
|
327 |
10574
|
TRAIH
|
6/19/1997 12:00:00 AM
|
37.6000
|
764.3000
|
Large
|
328 |
10575
|
MORGK
|
6/20/1997 12:00:00 AM
|
127.3400
|
2147.4000
|
Very Large
|
329 |
10576
|
TORTU
|
6/23/1997 12:00:00 AM
|
18.5600
|
838.4500
|
Large
|
330 |
10577
|
TRAIH
|
6/23/1997 12:00:00 AM
|
25.4100
|
569.0000
|
Large
|
331 |
10578
|
BSBEV
|
6/24/1997 12:00:00 AM
|
29.6000
|
477.0000
|
Medium
|
332 |
10579
|
LETSS
|
6/25/1997 12:00:00 AM
|
13.7300
|
317.7500
|
Medium
|
333 |
10580
|
OTTIK
|
6/26/1997 12:00:00 AM
|
75.8900
|
1067.1000
|
Very Large
|
334 |
10581
|
FAMIA
|
6/26/1997 12:00:00 AM
|
3.0100
|
387.5000
|
Medium
|
335 |
10582
|
BLAUS
|
6/27/1997 12:00:00 AM
|
27.7100
|
330.0000
|
Medium
|
336 |
10583
|
WARTH
|
6/30/1997 12:00:00 AM
|
7.2800
|
2413.9000
|
Very Large
|
337 |
10584
|
BLONP
|
6/30/1997 12:00:00 AM
|
59.1400
|
625.0000
|
Large
|
338 |
10585
|
WELLI
|
7/1/1997 12:00:00 AM
|
13.4100
|
142.5000
|
Medium
|
339 |
10586
|
REGGC
|
7/2/1997 12:00:00 AM
|
0.4800
|
28.0000
|
Small
|
340 |
10587
|
QUEDE
|
7/2/1997 12:00:00 AM
|
62.5200
|
807.3800
|
Large
|
341 |
10588
|
QUICK
|
7/3/1997 12:00:00 AM
|
194.6700
|
3900.0000
|
Very Large
|
342 |
10589
|
GREAL
|
7/4/1997 12:00:00 AM
|
4.4200
|
72.0000
|
Small
|
343 |
10590
|
MEREP
|
7/7/1997 12:00:00 AM
|
44.7700
|
1140.0000
|
Very Large
|
344 |
10591
|
VAFFE
|
7/7/1997 12:00:00 AM
|
55.9200
|
812.5000
|
Large
|
345 |
10592
|
LEHMS
|
7/8/1997 12:00:00 AM
|
32.1000
|
543.6500
|
Large
|
346 |
10593
|
LEHMS
|
7/9/1997 12:00:00 AM
|
174.2000
|
2493.0000
|
Very Large
|
347 |
10594
|
OLDWO
|
7/9/1997 12:00:00 AM
|
5.2400
|
565.5000
|
Large
|
348 |
10595
|
ERNSH
|
7/10/1997 12:00:00 AM
|
96.7800
|
6300.0000
|
Very Large
|
349 |
10596
|
WHITC
|
7/11/1997 12:00:00 AM
|
16.3400
|
1476.1000
|
Very Large
|
350 |
10597
|
PICCO
|
7/11/1997 12:00:00 AM
|
35.1200
|
800.1000
|
Large
|
351 |
10598
|
RATTC
|
7/14/1997 12:00:00 AM
|
44.4200
|
2388.5000
|
Very Large
|
352 |
10599
|
BSBEV
|
7/15/1997 12:00:00 AM
|
29.9800
|
493.0000
|
Medium
|
353 |
10600
|
HUNGC
|
7/16/1997 12:00:00 AM
|
45.1300
|
479.8000
|
Medium
|
354 |
10601
|
HILAA
|
7/16/1997 12:00:00 AM
|
58.3000
|
2285.0000
|
Very Large
|
355 |
10602
|
VAFFE
|
7/17/1997 12:00:00 AM
|
2.9200
|
65.0000
|
Small
|
356 |
10603
|
SAVEA
|
7/18/1997 12:00:00 AM
|
48.7700
|
1508.0000
|
Very Large
|
357 |
10604
|
FURIB
|
7/18/1997 12:00:00 AM
|
7.4600
|
256.5000
|
Medium
|
358 |
10605
|
MEREP
|
7/21/1997 12:00:00 AM
|
379.1300
|
4326.0000
|
Very Large
|
359 |
10606
|
TRADH
|
7/22/1997 12:00:00 AM
|
79.4000
|
1413.0000
|
Very Large
|
360 |
10607
|
SAVEA
|
7/22/1997 12:00:00 AM
|
200.2400
|
6475.4000
|
Very Large
|
361 |
10608
|
TOMSP
|
7/23/1997 12:00:00 AM
|
27.7900
|
1064.0000
|
Very Large
|
362 |
10609
|
DUMON
|
7/24/1997 12:00:00 AM
|
1.8500
|
424.0000
|
Medium
|
363 |
10610
|
LAMAI
|
7/25/1997 12:00:00 AM
|
26.7800
|
399.0000
|
Medium
|
364 |
10611
|
WOLZA
|
7/25/1997 12:00:00 AM
|
80.6500
|
808.0000
|
Large
|
365 |
10612
|
SAVEA
|
7/28/1997 12:00:00 AM
|
544.0800
|
6375.0000
|
Very Large
|
366 |
10613
|
HILAA
|
7/29/1997 12:00:00 AM
|
8.1100
|
358.0000
|
Medium
|
367 |
10614
|
BLAUS
|
7/29/1997 12:00:00 AM
|
1.9300
|
464.0000
|
Medium
|
368 |
10615
|
WILMK
|
7/30/1997 12:00:00 AM
|
0.7500
|
120.0000
|
Medium
|
369 |
10616
|
GREAL
|
7/31/1997 12:00:00 AM
|
116.5300
|
5032.0000
|
Very Large
|
370 |
10617
|
GREAL
|
7/31/1997 12:00:00 AM
|
18.5300
|
1650.0000
|
Very Large
|
371 |
10618
|
MEREP
|
8/1/1997 12:00:00 AM
|
154.6800
|
2697.5000
|
Very Large
|
372 |
10619
|
MEREP
|
8/4/1997 12:00:00 AM
|
91.0500
|
1260.0000
|
Very Large
|
373 |
10620
|
LAUGB
|
8/5/1997 12:00:00 AM
|
0.9400
|
57.5000
|
Small
|
374 |
10621
|
ISLAT
|
8/5/1997 12:00:00 AM
|
23.7300
|
758.5000
|
Large
|
375 |
10622
|
RICAR
|
8/6/1997 12:00:00 AM
|
50.9700
|
605.0000
|
Large
|
376 |
10623
|
FRANK
|
8/7/1997 12:00:00 AM
|
97.1800
|
1429.7500
|
Very Large
|
377 |
10624
|
THECR
|
8/7/1997 12:00:00 AM
|
94.8000
|
1393.2400
|
Very Large
|
378 |
10625
|
ANATR
|
8/8/1997 12:00:00 AM
|
43.9000
|
479.7500
|
Medium
|
379 |
10626
|
BERGS
|
8/11/1997 12:00:00 AM
|
138.6900
|
1503.6000
|
Very Large
|
380 |
10627
|
SAVEA
|
8/11/1997 12:00:00 AM
|
107.4600
|
1264.5000
|
Very Large
|
381 |
10628
|
BLONP
|
8/12/1997 12:00:00 AM
|
30.3600
|
450.0000
|
Medium
|
382 |
10629
|
GODOS
|
8/12/1997 12:00:00 AM
|
85.4600
|
2775.0500
|
Very Large
|
383 |
10630
|
KOENE
|
8/13/1997 12:00:00 AM
|
32.3500
|
918.0000
|
Large
|
384 |
10631
|
LAMAI
|
8/14/1997 12:00:00 AM
|
0.8700
|
62.0000
|
Small
|
385 |
10632
|
WANDK
|
8/14/1997 12:00:00 AM
|
41.3800
|
620.0000
|
Large
|
386 |
10633
|
ERNSH
|
8/15/1997 12:00:00 AM
|
477.9000
|
6483.0500
|
Very Large
|
387 |
10634
|
FOLIG
|
8/15/1997 12:00:00 AM
|
487.3800
|
4985.5000
|
Very Large
|
388 |
10635
|
MAGAA
|
8/18/1997 12:00:00 AM
|
47.4600
|
1380.2500
|
Very Large
|
389 |
10636
|
WARTH
|
8/19/1997 12:00:00 AM
|
1.1500
|
629.5000
|
Large
|
390 |
10637
|
QUEEN
|
8/19/1997 12:00:00 AM
|
201.2900
|
2896.2500
|
Very Large
|
391 |
10638
|
LINOD
|
8/20/1997 12:00:00 AM
|
158.4400
|
2720.0500
|
Very Large
|
392 |
10639
|
SANTG
|
8/20/1997 12:00:00 AM
|
38.6400
|
500.0000
|
Large
|
393 |
10640
|
WANDK
|
8/21/1997 12:00:00 AM
|
23.5500
|
945.0000
|
Large
|
394 |
10641
|
HILAA
|
8/22/1997 12:00:00 AM
|
179.6100
|
2054.0000
|
Very Large
|
395 |
10642
|
SIMOB
|
8/22/1997 12:00:00 AM
|
41.8900
|
870.0000
|
Large
|
396 |
10643
|
ALFKI
|
8/25/1997 12:00:00 AM
|
29.4600
|
1086.0000
|
Very Large
|
397 |
10644
|
WELLI
|
8/25/1997 12:00:00 AM
|
0.1400
|
1422.0000
|
Very Large
|
398 |
10645
|
HANAR
|
8/26/1997 12:00:00 AM
|
12.4100
|
1535.0000
|
Very Large
|
399 |
10646
|
HUNGO
|
8/27/1997 12:00:00 AM
|
142.3300
|
1928.0000
|
Very Large
|
400 |
10647
|
QUEDE
|
8/27/1997 12:00:00 AM
|
45.5400
|
636.0000
|
Large
|
401 |
10648
|
RICAR
|
8/28/1997 12:00:00 AM
|
14.2500
|
382.5000
|
Medium
|
402 |
10649
|
MAISD
|
8/28/1997 12:00:00 AM
|
6.2000
|
1434.0000
|
Very Large
|
403 |
10650
|
FAMIA
|
8/29/1997 12:00:00 AM
|
176.8100
|
1820.2000
|
Very Large
|
404 |
10651
|
WANDK
|
9/1/1997 12:00:00 AM
|
20.6000
|
530.4000
|
Large
|
405 |
10652
|
GOURL
|
9/1/1997 12:00:00 AM
|
7.1400
|
331.7800
|
Medium
|
406 |
10653
|
FRANK
|
9/2/1997 12:00:00 AM
|
93.2500
|
1203.5000
|
Very Large
|
407 |
10654
|
BERGS
|
9/2/1997 12:00:00 AM
|
55.2600
|
668.7000
|
Large
|
408 |
10655
|
REGGC
|
9/3/1997 12:00:00 AM
|
4.4100
|
193.0000
|
Medium
|
409 |
10656
|
GREAL
|
9/4/1997 12:00:00 AM
|
57.1500
|
671.3500
|
Large
|
410 |
10657
|
SAVEA
|
9/4/1997 12:00:00 AM
|
352.6900
|
4371.6000
|
Very Large
|
411 |
10658
|
QUICK
|
9/5/1997 12:00:00 AM
|
364.1500
|
4668.0000
|
Very Large
|
412 |
10659
|
QUEEN
|
9/5/1997 12:00:00 AM
|
105.8100
|
1291.6000
|
Very Large
|
413 |
10660
|
HUNGC
|
9/8/1997 12:00:00 AM
|
111.2900
|
1701.0000
|
Very Large
|
414 |
10661
|
HUNGO
|
9/9/1997 12:00:00 AM
|
17.5500
|
703.2500
|
Large
|
415 |
10662
|
LONEP
|
9/9/1997 12:00:00 AM
|
1.2800
|
125.0000
|
Medium
|
416 |
10663
|
BONAP
|
9/10/1997 12:00:00 AM
|
113.1500
|
2032.0000
|
Very Large
|
417 |
10664
|
FURIB
|
9/10/1997 12:00:00 AM
|
1.2700
|
1515.7500
|
Very Large
|
418 |
10665
|
LONEP
|
9/11/1997 12:00:00 AM
|
26.3100
|
1295.0000
|
Very Large
|
419 |
10666
|
RICSU
|
9/12/1997 12:00:00 AM
|
232.4200
|
4666.9400
|
Very Large
|
420 |
10667
|
ERNSH
|
9/12/1997 12:00:00 AM
|
78.0900
|
1921.0000
|
Very Large
|
421 |
10668
|
WANDK
|
9/15/1997 12:00:00 AM
|
47.2200
|
694.7500
|
Large
|
422 |
10669
|
SIMOB
|
9/15/1997 12:00:00 AM
|
24.3900
|
570.0000
|
Large
|
423 |
10670
|
FRANK
|
9/16/1997 12:00:00 AM
|
203.4800
|
2301.7500
|
Very Large
|
424 |
10671
|
FRANR
|
9/17/1997 12:00:00 AM
|
30.3400
|
920.1000
|
Large
|
425 |
10672
|
BERGS
|
9/17/1997 12:00:00 AM
|
95.7500
|
4210.5000
|
Very Large
|
426 |
10673
|
WILMK
|
9/18/1997 12:00:00 AM
|
22.7600
|
412.3500
|
Medium
|
427 |
10674
|
ISLAT
|
9/18/1997 12:00:00 AM
|
0.9000
|
45.0000
|
Small
|
428 |
10675
|
FRANK
|
9/19/1997 12:00:00 AM
|
31.8500
|
1423.0000
|
Very Large
|
429 |
10676
|
TORTU
|
9/22/1997 12:00:00 AM
|
2.0100
|
534.8500
|
Large
|
430 |
10677
|
ANTON
|
9/22/1997 12:00:00 AM
|
4.0300
|
956.9000
|
Large
|
431 |
10678
|
SAVEA
|
9/23/1997 12:00:00 AM
|
388.9800
|
5256.5000
|
Very Large
|
432 |
10679
|
BLONP
|
9/23/1997 12:00:00 AM
|
27.9400
|
660.0000
|
Large
|
433 |
10680
|
OLDWO
|
9/24/1997 12:00:00 AM
|
26.6100
|
1682.5000
|
Very Large
|
434 |
10681
|
GREAL
|
9/25/1997 12:00:00 AM
|
76.1300
|
1327.0000
|
Very Large
|
435 |
10682
|
ANTON
|
9/25/1997 12:00:00 AM
|
36.1300
|
375.5000
|
Medium
|
436 |
10683
|
DUMON
|
9/26/1997 12:00:00 AM
|
4.4000
|
63.0000
|
Small
|
437 |
10684
|
OTTIK
|
9/26/1997 12:00:00 AM
|
145.6300
|
1768.0000
|
Very Large
|
438 |
10685
|
GOURL
|
9/29/1997 12:00:00 AM
|
33.7500
|
801.1000
|
Large
|
439 |
10686
|
PICCO
|
9/30/1997 12:00:00 AM
|
96.5000
|
1638.4500
|
Very Large
|
440 |
10687
|
HUNGO
|
9/30/1997 12:00:00 AM
|
296.4300
|
6201.9000
|
Very Large
|
441 |
10688
|
VAFFE
|
10/1/1997 12:00:00 AM
|
299.0900
|
3490.0000
|
Very Large
|
442 |
10689
|
BERGS
|
10/1/1997 12:00:00 AM
|
13.4200
|
630.0000
|
Large
|
443 |
10690
|
HANAR
|
10/2/1997 12:00:00 AM
|
15.8000
|
1150.0000
|
Very Large
|
444 |
10691
|
QUICK
|
10/3/1997 12:00:00 AM
|
810.0500
|
10164.8000
|
Very Large
|
445 |
10692
|
ALFKI
|
10/3/1997 12:00:00 AM
|
61.0200
|
878.0000
|
Large
|
446 |
10693
|
WHITC
|
10/6/1997 12:00:00 AM
|
139.3400
|
2334.0000
|
Very Large
|
447 |
10694
|
QUICK
|
10/6/1997 12:00:00 AM
|
398.3600
|
4825.0000
|
Very Large
|
448 |
10695
|
WILMK
|
10/7/1997 12:00:00 AM
|
16.7200
|
642.0000
|
Large
|
449 |
10696
|
WHITC
|
10/8/1997 12:00:00 AM
|
102.5500
|
996.0000
|
Large
|
450 |
10697
|
LINOD
|
10/8/1997 12:00:00 AM
|
45.5200
|
1073.9000
|
Very Large
|
451 |
10698
|
ERNSH
|
10/9/1997 12:00:00 AM
|
272.4700
|
3600.7300
|
Very Large
|
452 |
10699
|
MORGK
|
10/9/1997 12:00:00 AM
|
0.5800
|
114.0000
|
Medium
|
453 |
10700
|
SAVEA
|
10/10/1997 12:00:00 AM
|
65.1000
|
2048.0000
|
Very Large
|
454 |
10701
|
HUNGO
|
10/13/1997 12:00:00 AM
|
220.3100
|
3370.0000
|
Very Large
|
455 |
10702
|
ALFKI
|
10/13/1997 12:00:00 AM
|
23.9400
|
330.0000
|
Medium
|
456 |
10703
|
FOLKO
|
10/14/1997 12:00:00 AM
|
152.3000
|
2545.0000
|
Very Large
|
457 |
10704
|
QUEEN
|
10/14/1997 12:00:00 AM
|
4.7800
|
595.5000
|
Large
|
458 |
10705
|
HILAA
|
10/15/1997 12:00:00 AM
|
3.5200
|
378.0000
|
Medium
|
459 |
10706
|
OLDWO
|
10/16/1997 12:00:00 AM
|
135.6300
|
1893.0000
|
Very Large
|
460 |
10707
|
AROUT
|
10/16/1997 12:00:00 AM
|
21.7400
|
1704.0000
|
Very Large
|
461 |
10708
|
THEBI
|
10/17/1997 12:00:00 AM
|
2.9600
|
180.4000
|
Medium
|
462 |
10709
|
GOURL
|
10/17/1997 12:00:00 AM
|
210.8000
|
3424.0000
|
Very Large
|
463 |
10710
|
FRANS
|
10/20/1997 12:00:00 AM
|
4.9800
|
93.5000
|
Small
|
464 |
10711
|
SAVEA
|
10/21/1997 12:00:00 AM
|
52.4100
|
4451.7000
|
Very Large
|
465 |
10712
|
HUNGO
|
10/21/1997 12:00:00 AM
|
89.9300
|
1238.4000
|
Very Large
|
466 |
10713
|
SAVEA
|
10/22/1997 12:00:00 AM
|
167.0500
|
2827.9000
|
Very Large
|
467 |
10714
|
SAVEA
|
10/22/1997 12:00:00 AM
|
24.4900
|
2941.0000
|
Very Large
|
468 |
10715
|
BONAP
|
10/23/1997 12:00:00 AM
|
63.2000
|
1296.0000
|
Very Large
|
469 |
10716
|
RANCH
|
10/24/1997 12:00:00 AM
|
22.5700
|
706.0000
|
Large
|
470 |
10717
|
FRANK
|
10/24/1997 12:00:00 AM
|
59.2500
|
1331.7500
|
Very Large
|
471 |
10718
|
KOENE
|
10/27/1997 12:00:00 AM
|
170.8800
|
3463.0000
|
Very Large
|
472 |
10719
|
LETSS
|
10/27/1997 12:00:00 AM
|
51.4400
|
1125.6700
|
Very Large
|
473 |
10720
|
QUEDE
|
10/28/1997 12:00:00 AM
|
9.5300
|
550.0000
|
Large
|
474 |
10721
|
QUICK
|
10/29/1997 12:00:00 AM
|
48.9200
|
972.5000
|
Large
|
475 |
10722
|
SAVEA
|
10/29/1997 12:00:00 AM
|
74.5800
|
1570.0000
|
Very Large
|
476 |
10723
|
WHITC
|
10/30/1997 12:00:00 AM
|
21.7200
|
468.4500
|
Medium
|
477 |
10724
|
MEREP
|
10/30/1997 12:00:00 AM
|
57.7500
|
638.5000
|
Large
|
478 |
10725
|
FAMIA
|
10/31/1997 12:00:00 AM
|
10.8300
|
287.8000
|
Medium
|
479 |
10726
|
EASTC
|
11/3/1997 12:00:00 AM
|
16.5600
|
655.0000
|
Large
|
480 |
10727
|
REGGC
|
11/3/1997 12:00:00 AM
|
89.9000
|
1710.0000
|
Very Large
|
481 |
10728
|
QUEEN
|
11/4/1997 12:00:00 AM
|
58.3300
|
1296.7500
|
Very Large
|
482 |
10729
|
LINOD
|
11/4/1997 12:00:00 AM
|
141.0600
|
1850.0000
|
Very Large
|
483 |
10730
|
BONAP
|
11/5/1997 12:00:00 AM
|
20.1200
|
509.7500
|
Large
|
484 |
10731
|
CHOPS
|
11/6/1997 12:00:00 AM
|
96.6500
|
1990.0000
|
Very Large
|
485 |
10732
|
BONAP
|
11/6/1997 12:00:00 AM
|
16.9700
|
360.0000
|
Medium
|
486 |
10733
|
BERGS
|
11/7/1997 12:00:00 AM
|
110.1100
|
1459.0000
|
Very Large
|
487 |
10734
|
GOURL
|
11/7/1997 12:00:00 AM
|
1.6300
|
1498.3500
|
Very Large
|
488 |
10735
|
LETSS
|
11/10/1997 12:00:00 AM
|
45.9700
|
596.0000
|
Large
|
489 |
10736
|
HUNGO
|
11/11/1997 12:00:00 AM
|
44.1000
|
997.0000
|
Large
|
490 |
10737
|
VINET
|
11/11/1997 12:00:00 AM
|
7.7900
|
139.8000
|
Medium
|
491 |
10738
|
SPECD
|
11/12/1997 12:00:00 AM
|
2.9100
|
52.3500
|
Small
|
492 |
10739
|
VINET
|
11/12/1997 12:00:00 AM
|
11.0800
|
240.0000
|
Medium
|
493 |
10740
|
WHITC
|
11/13/1997 12:00:00 AM
|
81.8800
|
1770.0000
|
Very Large
|
494 |
10741
|
AROUT
|
11/14/1997 12:00:00 AM
|
10.9600
|
285.0000
|
Medium
|
495 |
10742
|
BOTTM
|
11/14/1997 12:00:00 AM
|
243.7300
|
3118.0000
|
Very Large
|
496 |
10743
|
AROUT
|
11/17/1997 12:00:00 AM
|
23.7200
|
336.0000
|
Medium
|
497 |
10744
|
VAFFE
|
11/17/1997 12:00:00 AM
|
69.1900
|
920.0000
|
Large
|
498 |
10745
|
QUICK
|
11/18/1997 12:00:00 AM
|
3.5200
|
4529.8000
|
Very Large
|
499 |
10746
|
CHOPS
|
11/19/1997 12:00:00 AM
|
31.4300
|
2311.7000
|
Very Large
|
500 |
10747
|
PICCO
|
11/19/1997 12:00:00 AM
|
117.3300
|
1912.8500
|
Very Large
|
501 |
10748
|
SAVEA
|
11/20/1997 12:00:00 AM
|
232.5500
|
2196.0000
|
Very Large
|
502 |
10749
|
ISLAT
|
11/20/1997 12:00:00 AM
|
61.5300
|
1080.0000
|
Very Large
|
503 |
10750
|
WARTH
|
11/21/1997 12:00:00 AM
|
79.3000
|
1871.2500
|
Very Large
|
504 |
10751
|
RICSU
|
11/24/1997 12:00:00 AM
|
130.7900
|
1701.4600
|
Very Large
|
505 |
10752
|
NORTS
|
11/24/1997 12:00:00 AM
|
1.3900
|
252.0000
|
Medium
|
506 |
10753
|
FRANS
|
11/25/1997 12:00:00 AM
|
7.7000
|
88.0000
|
Small
|
507 |
10754
|
MAGAA
|
11/25/1997 12:00:00 AM
|
2.3800
|
55.2000
|
Small
|
508 |
10755
|
BONAP
|
11/26/1997 12:00:00 AM
|
16.7100
|
2598.0000
|
Very Large
|
509 |
10756
|
SPLIR
|
11/27/1997 12:00:00 AM
|
73.2100
|
2487.5000
|
Very Large
|
510 |
10757
|
SAVEA
|
11/27/1997 12:00:00 AM
|
8.1900
|
3082.0000
|
Very Large
|
511 |
10758
|
RICSU
|
11/28/1997 12:00:00 AM
|
138.1700
|
1644.6000
|
Very Large
|
512 |
10759
|
ANATR
|
11/28/1997 12:00:00 AM
|
11.9900
|
320.0000
|
Medium
|
513 |
10760
|
MAISD
|
12/1/1997 12:00:00 AM
|
155.6400
|
3304.0000
|
Very Large
|
514 |
10761
|
RATTC
|
12/2/1997 12:00:00 AM
|
18.6600
|
629.5000
|
Large
|
515 |
10762
|
FOLKO
|
12/2/1997 12:00:00 AM
|
328.7400
|
4337.0000
|
Very Large
|
516 |
10763
|
FOLIG
|
12/3/1997 12:00:00 AM
|
37.3500
|
616.0000
|
Large
|
517 |
10764
|
ERNSH
|
12/3/1997 12:00:00 AM
|
145.4500
|
2540.0000
|
Very Large
|
518 |
10765
|
QUICK
|
12/4/1997 12:00:00 AM
|
42.7400
|
1684.0000
|
Very Large
|
519 |
10766
|
OTTIK
|
12/5/1997 12:00:00 AM
|
157.5500
|
2310.0000
|
Very Large
|
520 |
10767
|
SUPRD
|
12/5/1997 12:00:00 AM
|
1.5900
|
28.0000
|
Small
|
521 |
10768
|
AROUT
|
12/8/1997 12:00:00 AM
|
146.3200
|
1477.0000
|
Very Large
|
522 |
10769
|
VAFFE
|
12/8/1997 12:00:00 AM
|
65.0600
|
1704.0000
|
Very Large
|
523 |
10770
|
HANAR
|
12/9/1997 12:00:00 AM
|
5.3200
|
315.0000
|
Medium
|
524 |
10771
|
ERNSH
|
12/10/1997 12:00:00 AM
|
11.1900
|
344.0000
|
Medium
|
525 |
10772
|
LEHMS
|
12/10/1997 12:00:00 AM
|
91.2800
|
3603.2200
|
Very Large
|
526 |
10773
|
ERNSH
|
12/11/1997 12:00:00 AM
|
96.4300
|
2216.2500
|
Very Large
|
527 |
10774
|
FOLKO
|
12/11/1997 12:00:00 AM
|
48.2000
|
875.0000
|
Large
|
528 |
10775
|
THECR
|
12/12/1997 12:00:00 AM
|
20.2500
|
228.0000
|
Medium
|
529 |
10776
|
ERNSH
|
12/15/1997 12:00:00 AM
|
351.5300
|
6984.5000
|
Very Large
|
530 |
10777
|
GOURL
|
12/15/1997 12:00:00 AM
|
3.0100
|
280.0000
|
Medium
|
531 |
10778
|
BERGS
|
12/16/1997 12:00:00 AM
|
6.7900
|
96.5000
|
Small
|
532 |
10779
|
MORGK
|
12/16/1997 12:00:00 AM
|
58.1300
|
1335.0000
|
Very Large
|
533 |
10780
|
LILAS
|
12/16/1997 12:00:00 AM
|
42.1300
|
720.0000
|
Large
|
534 |
10781
|
WARTH
|
12/17/1997 12:00:00 AM
|
73.1600
|
1132.3500
|
Very Large
|
535 |
10782
|
CACTU
|
12/17/1997 12:00:00 AM
|
1.1000
|
12.5000
|
Small
|
536 |
10783
|
HANAR
|
12/18/1997 12:00:00 AM
|
124.9800
|
1442.5000
|
Very Large
|
537 |
10784
|
MAGAA
|
12/18/1997 12:00:00 AM
|
70.0900
|
1650.0000
|
Very Large
|
538 |
10785
|
GROSR
|
12/18/1997 12:00:00 AM
|
1.5100
|
387.5000
|
Medium
|
539 |
10786
|
QUEEN
|
12/19/1997 12:00:00 AM
|
110.8700
|
1913.8500
|
Very Large
|
540 |
10787
|
LAMAI
|
12/19/1997 12:00:00 AM
|
249.9300
|
2760.8000
|
Very Large
|
541 |
10788
|
QUICK
|
12/22/1997 12:00:00 AM
|
42.7000
|
770.0000
|
Large
|
542 |
10789
|
FOLIG
|
12/22/1997 12:00:00 AM
|
100.6000
|
3687.0000
|
Very Large
|
543 |
10790
|
GOURL
|
12/22/1997 12:00:00 AM
|
28.2300
|
850.0000
|
Large
|
544 |
10791
|
FRANK
|
12/23/1997 12:00:00 AM
|
16.8500
|
1926.0600
|
Very Large
|
545 |
10792
|
WOLZA
|
12/23/1997 12:00:00 AM
|
23.7900
|
399.8500
|
Medium
|
546 |
10793
|
AROUT
|
12/24/1997 12:00:00 AM
|
4.5200
|
191.1000
|
Medium
|
547 |
10794
|
QUEDE
|
12/24/1997 12:00:00 AM
|
21.4900
|
393.4500
|
Medium
|
548 |
10795
|
ERNSH
|
12/24/1997 12:00:00 AM
|
126.6600
|
2499.2500
|
Very Large
|
549 |
10796
|
HILAA
|
12/25/1997 12:00:00 AM
|
26.5200
|
2878.0800
|
Very Large
|
550 |
10797
|
DRACD
|
12/25/1997 12:00:00 AM
|
33.3500
|
420.0000
|
Medium
|
551 |
10798
|
ISLAT
|
12/26/1997 12:00:00 AM
|
2.3300
|
446.6000
|
Medium
|
552 |
10799
|
KOENE
|
12/26/1997 12:00:00 AM
|
30.7600
|
1585.0000
|
Very Large
|
553 |
10800
|
SEVES
|
12/26/1997 12:00:00 AM
|
137.4400
|
1632.1500
|
Very Large
|
554 |
10801
|
BOLID
|
12/29/1997 12:00:00 AM
|
97.0900
|
4035.8000
|
Very Large
|
555 |
10802
|
SIMOB
|
12/29/1997 12:00:00 AM
|
257.2600
|
3923.7500
|
Very Large
|
556 |
10803
|
WELLI
|
12/30/1997 12:00:00 AM
|
55.2300
|
1255.8000
|
Very Large
|
557 |
10804
|
SEVES
|
12/30/1997 12:00:00 AM
|
27.3300
|
2290.4000
|
Very Large
|
558 |
10805
|
THEBI
|
12/30/1997 12:00:00 AM
|
237.3400
|
2775.0000
|
Very Large
|
559 |
10806
|
VICTE
|
12/31/1997 12:00:00 AM
|
22.1100
|
572.1000
|
Large
|
560 |
10807
|
FRANS
|
12/31/1997 12:00:00 AM
|
1.3600
|
18.4000
|
Small
|
561 |
10808
|
OLDWO
|
1/1/1998 12:00:00 AM
|
45.5300
|
1660.0000
|
Very Large
|
562 |
10809
|
WELLI
|
1/1/1998 12:00:00 AM
|
4.8700
|
140.0000
|
Medium
|
563 |
10810
|
LAUGB
|
1/1/1998 12:00:00 AM
|
4.3300
|
187.0000
|
Medium
|
564 |
10811
|
LINOD
|
1/2/1998 12:00:00 AM
|
31.2200
|
852.0000
|
Large
|
565 |
10812
|
REGGC
|
1/2/1998 12:00:00 AM
|
59.7800
|
1852.0000
|
Very Large
|
566 |
10813
|
RICAR
|
1/5/1998 12:00:00 AM
|
47.3800
|
648.0000
|
Large
|
567 |
10814
|
VICTE
|
1/5/1998 12:00:00 AM
|
130.9400
|
2070.0000
|
Very Large
|
568 |
10815
|
SAVEA
|
1/5/1998 12:00:00 AM
|
14.6200
|
40.0000
|
Small
|
569 |
10816
|
GREAL
|
1/6/1998 12:00:00 AM
|
719.7800
|
8891.0000
|
Very Large
|
570 |
10817
|
KOENE
|
1/6/1998 12:00:00 AM
|
306.0700
|
11490.7000
|
Very Large
|
571 |
10818
|
MAGAA
|
1/7/1998 12:00:00 AM
|
65.4800
|
833.0000
|
Large
|
572 |
10819
|
CACTU
|
1/7/1998 12:00:00 AM
|
19.7600
|
477.0000
|
Medium
|
573 |
10820
|
RATTC
|
1/7/1998 12:00:00 AM
|
37.5200
|
1140.0000
|
Very Large
|
574 |
10821
|
SPLIR
|
1/8/1998 12:00:00 AM
|
36.6800
|
678.0000
|
Large
|
575 |
10822
|
TRAIH
|
1/8/1998 12:00:00 AM
|
7.0000
|
237.9000
|
Medium
|
576 |
10823
|
LILAS
|
1/9/1998 12:00:00 AM
|
163.9700
|
3107.5000
|
Very Large
|
577 |
10824
|
FOLKO
|
1/9/1998 12:00:00 AM
|
1.2300
|
250.8000
|
Medium
|
578 |
10825
|
DRACD
|
1/9/1998 12:00:00 AM
|
79.2500
|
1030.7600
|
Very Large
|
579 |
10826
|
BLONP
|
1/12/1998 12:00:00 AM
|
7.0900
|
730.0000
|
Large
|
580 |
10827
|
BONAP
|
1/12/1998 12:00:00 AM
|
63.5400
|
843.0000
|
Large
|
581 |
10828
|
RANCH
|
1/13/1998 12:00:00 AM
|
90.8500
|
932.0000
|
Large
|
582 |
10829
|
ISLAT
|
1/13/1998 12:00:00 AM
|
154.7200
|
1764.0000
|
Very Large
|
583 |
10830
|
TRADH
|
1/13/1998 12:00:00 AM
|
81.8300
|
1974.0000
|
Very Large
|
584 |
10831
|
SANTG
|
1/14/1998 12:00:00 AM
|
72.1900
|
2684.4000
|
Very Large
|
585 |
10832
|
LAMAI
|
1/14/1998 12:00:00 AM
|
43.2600
|
568.9500
|
Large
|
586 |
10833
|
OTTIK
|
1/15/1998 12:00:00 AM
|
71.4900
|
1007.7000
|
Very Large
|
587 |
10834
|
TRADH
|
1/15/1998 12:00:00 AM
|
29.7800
|
1508.1200
|
Very Large
|
588 |
10835
|
ALFKI
|
1/15/1998 12:00:00 AM
|
69.5300
|
851.0000
|
Large
|
589 |
10836
|
ERNSH
|
1/16/1998 12:00:00 AM
|
411.8800
|
4705.5000
|
Very Large
|
590 |
10837
|
BERGS
|
1/16/1998 12:00:00 AM
|
13.3200
|
1254.0000
|
Very Large
|
591 |
10838
|
LINOD
|
1/19/1998 12:00:00 AM
|
59.2800
|
2584.5000
|
Very Large
|
592 |
10839
|
TRADH
|
1/19/1998 12:00:00 AM
|
35.4300
|
919.5000
|
Large
|
593 |
10840
|
LINOD
|
1/19/1998 12:00:00 AM
|
2.7100
|
264.0000
|
Medium
|
594 |
10841
|
SUPRD
|
1/20/1998 12:00:00 AM
|
424.3000
|
4581.0000
|
Very Large
|
595 |
10842
|
TORTU
|
1/20/1998 12:00:00 AM
|
54.4200
|
975.0000
|
Large
|
596 |
10843
|
VICTE
|
1/21/1998 12:00:00 AM
|
9.2600
|
212.0000
|
Medium
|
597 |
10844
|
PICCO
|
1/21/1998 12:00:00 AM
|
25.2200
|
735.0000
|
Large
|
598 |
10845
|
QUICK
|
1/21/1998 12:00:00 AM
|
212.9800
|
4059.0000
|
Very Large
|
599 |
10846
|
SUPRD
|
1/22/1998 12:00:00 AM
|
56.4600
|
1112.0000
|
Very Large
|
600 |
10847
|
SAVEA
|
1/22/1998 12:00:00 AM
|
487.5700
|
6164.9000
|
Very Large
|
601 |
10848
|
CONSH
|
1/23/1998 12:00:00 AM
|
38.2400
|
931.5000
|
Large
|
602 |
10849
|
KOENE
|
1/23/1998 12:00:00 AM
|
0.5600
|
1052.1400
|
Very Large
|
603 |
10850
|
VICTE
|
1/23/1998 12:00:00 AM
|
49.1900
|
740.0000
|
Large
|
604 |
10851
|
RICAR
|
1/26/1998 12:00:00 AM
|
160.5500
|
2740.0000
|
Very Large
|
605 |
10852
|
RATTC
|
1/26/1998 12:00:00 AM
|
174.0500
|
2984.0000
|
Very Large
|
606 |
10853
|
BLAUS
|
1/27/1998 12:00:00 AM
|
53.8300
|
625.0000
|
Large
|
607 |
10854
|
ERNSH
|
1/27/1998 12:00:00 AM
|
100.2200
|
3490.0000
|
Very Large
|
608 |
10855
|
OLDWO
|
1/27/1998 12:00:00 AM
|
170.9700
|
2275.2500
|
Very Large
|
609 |
10856
|
ANTON
|
1/28/1998 12:00:00 AM
|
58.4300
|
660.0000
|
Large
|
610 |
10857
|
BERGS
|
1/28/1998 12:00:00 AM
|
188.8500
|
2630.9500
|
Very Large
|
611 |
10858
|
LACOR
|
1/29/1998 12:00:00 AM
|
52.5100
|
649.0000
|
Large
|
612 |
10859
|
FRANK
|
1/29/1998 12:00:00 AM
|
76.1000
|
1438.2500
|
Very Large
|
613 |
10860
|
FRANR
|
1/29/1998 12:00:00 AM
|
19.2600
|
519.0000
|
Large
|
614 |
10861
|
WHITC
|
1/30/1998 12:00:00 AM
|
14.9300
|
3523.4000
|
Very Large
|
615 |
10862
|
LEHMS
|
1/30/1998 12:00:00 AM
|
53.2300
|
581.0000
|
Large
|
616 |
10863
|
HILAA
|
2/2/1998 12:00:00 AM
|
30.2600
|
519.0000
|
Large
|
617 |
10864
|
AROUT
|
2/2/1998 12:00:00 AM
|
3.0400
|
282.0000
|
Medium
|
618 |
10865
|
QUICK
|
2/2/1998 12:00:00 AM
|
348.1400
|
17250.0000
|
Very Large
|
619 |
10866
|
BERGS
|
2/3/1998 12:00:00 AM
|
109.1100
|
1461.6000
|
Very Large
|
620 |
10867
|
LONEP
|
2/3/1998 12:00:00 AM
|
1.9300
|
98.4000
|
Small
|
621 |
10868
|
QUEEN
|
2/4/1998 12:00:00 AM
|
191.2700
|
2004.6000
|
Very Large
|
622 |
10869
|
SEVES
|
2/4/1998 12:00:00 AM
|
143.2800
|
1630.0000
|
Very Large
|
623 |
10870
|
WOLZA
|
2/4/1998 12:00:00 AM
|
12.0400
|
160.0000
|
Medium
|
624 |
10871
|
BONAP
|
2/5/1998 12:00:00 AM
|
112.2700
|
2083.4000
|
Very Large
|
625 |
10872
|
GODOS
|
2/5/1998 12:00:00 AM
|
175.3200
|
2166.8000
|
Very Large
|
626 |
10873
|
WILMK
|
2/6/1998 12:00:00 AM
|
0.8200
|
336.8000
|
Medium
|
627 |
10874
|
GODOS
|
2/6/1998 12:00:00 AM
|
19.5800
|
310.0000
|
Medium
|
628 |
10875
|
BERGS
|
2/6/1998 12:00:00 AM
|
32.3700
|
729.5000
|
Large
|
629 |
10876
|
BONAP
|
2/9/1998 12:00:00 AM
|
60.4200
|
917.0000
|
Large
|
630 |
10877
|
RICAR
|
2/9/1998 12:00:00 AM
|
38.0600
|
2086.0000
|
Very Large
|
631 |
10878
|
QUICK
|
2/10/1998 12:00:00 AM
|
46.6900
|
1620.0000
|
Very Large
|
632 |
10879
|
WILMK
|
2/10/1998 12:00:00 AM
|
8.5000
|
611.3000
|
Large
|
633 |
10880
|
FOLKO
|
2/10/1998 12:00:00 AM
|
88.0100
|
1875.0000
|
Very Large
|
634 |
10881
|
CACTU
|
2/11/1998 12:00:00 AM
|
2.8400
|
150.0000
|
Medium
|
635 |
10882
|
SAVEA
|
2/11/1998 12:00:00 AM
|
23.1000
|
988.4000
|
Large
|
636 |
10883
|
LONEP
|
2/12/1998 12:00:00 AM
|
0.5300
|
36.0000
|
Small
|
637 |
10884
|
LETSS
|
2/12/1998 12:00:00 AM
|
90.9700
|
1450.6000
|
Very Large
|
638 |
10885
|
SUPRD
|
2/12/1998 12:00:00 AM
|
5.6400
|
1209.0000
|
Very Large
|
639 |
10886
|
HANAR
|
2/13/1998 12:00:00 AM
|
4.9900
|
3127.5000
|
Very Large
|
640 |
10887
|
GALED
|
2/13/1998 12:00:00 AM
|
1.2500
|
70.0000
|
Small
|
641 |
10888
|
GODOS
|
2/16/1998 12:00:00 AM
|
51.8700
|
605.0000
|
Large
|
642 |
10889
|
RATTC
|
2/16/1998 12:00:00 AM
|
280.6100
|
11380.0000
|
Very Large
|
643 |
10890
|
DUMON
|
2/16/1998 12:00:00 AM
|
32.7600
|
860.1000
|
Large
|
644 |
10891
|
LEHMS
|
2/17/1998 12:00:00 AM
|
20.3700
|
388.3500
|
Medium
|
645 |
10892
|
MAISD
|
2/17/1998 12:00:00 AM
|
120.2700
|
2200.0000
|
Very Large
|
646 |
10893
|
KOENE
|
2/18/1998 12:00:00 AM
|
77.7800
|
5502.1100
|
Very Large
|
647 |
10894
|
SAVEA
|
2/18/1998 12:00:00 AM
|
116.1300
|
2898.0000
|
Very Large
|
648 |
10895
|
ERNSH
|
2/18/1998 12:00:00 AM
|
162.7500
|
6379.4000
|
Very Large
|
649 |
10896
|
MAISD
|
2/19/1998 12:00:00 AM
|
32.4500
|
750.5000
|
Large
|
650 |
10897
|
HUNGO
|
2/19/1998 12:00:00 AM
|
603.5400
|
10835.2400
|
Very Large
|
651 |
10898
|
OCEAN
|
2/20/1998 12:00:00 AM
|
1.2700
|
30.0000
|
Small
|
652 |
10899
|
LILAS
|
2/20/1998 12:00:00 AM
|
1.2100
|
144.0000
|
Medium
|
653 |
10900
|
WELLI
|
2/20/1998 12:00:00 AM
|
1.6600
|
45.0000
|
Small
|
654 |
10901
|
HILAA
|
2/23/1998 12:00:00 AM
|
62.0900
|
934.5000
|
Large
|
655 |
10902
|
FOLKO
|
2/23/1998 12:00:00 AM
|
44.1500
|
1015.8000
|
Very Large
|
656 |
10903
|
HANAR
|
2/24/1998 12:00:00 AM
|
36.7100
|
932.0500
|
Large
|
657 |
10904
|
WHITC
|
2/24/1998 12:00:00 AM
|
162.9500
|
1924.2500
|
Very Large
|
658 |
10905
|
WELLI
|
2/24/1998 12:00:00 AM
|
13.7200
|
360.0000
|
Medium
|
659 |
10906
|
WOLZA
|
2/25/1998 12:00:00 AM
|
26.2900
|
427.5000
|
Medium
|
660 |
10907
|
SPECD
|
2/25/1998 12:00:00 AM
|
9.1900
|
108.5000
|
Medium
|
661 |
10908
|
REGGC
|
2/26/1998 12:00:00 AM
|
32.9600
|
698.0000
|
Large
|
662 |
10909
|
SANTG
|
2/26/1998 12:00:00 AM
|
53.0500
|
670.0000
|
Large
|
663 |
10910
|
WILMK
|
2/26/1998 12:00:00 AM
|
38.1100
|
452.9000
|
Medium
|
664 |
10911
|
GODOS
|
2/26/1998 12:00:00 AM
|
38.1900
|
858.0000
|
Large
|
665 |
10912
|
HUNGO
|
2/26/1998 12:00:00 AM
|
580.9100
|
8267.4000
|
Very Large
|
666 |
10913
|
QUEEN
|
2/26/1998 12:00:00 AM
|
33.0500
|
958.7500
|
Large
|
667 |
10914
|
QUEEN
|
2/27/1998 12:00:00 AM
|
21.1900
|
537.5000
|
Large
|
668 |
10915
|
TORTU
|
2/27/1998 12:00:00 AM
|
3.5100
|
539.5000
|
Large
|
669 |
10916
|
RANCH
|
2/27/1998 12:00:00 AM
|
63.7700
|
686.7000
|
Large
|
670 |
10917
|
ROMEY
|
3/2/1998 12:00:00 AM
|
8.2900
|
365.8900
|
Medium
|
671 |
10918
|
BOTTM
|
3/2/1998 12:00:00 AM
|
48.8300
|
1930.0000
|
Very Large
|
672 |
10919
|
LINOD
|
3/2/1998 12:00:00 AM
|
19.8000
|
1122.8000
|
Very Large
|
673 |
10920
|
AROUT
|
3/3/1998 12:00:00 AM
|
29.6100
|
390.0000
|
Medium
|
674 |
10921
|
VAFFE
|
3/3/1998 12:00:00 AM
|
176.4800
|
1936.0000
|
Very Large
|
675 |
10922
|
HANAR
|
3/3/1998 12:00:00 AM
|
62.7400
|
742.5000
|
Large
|
676 |
10923
|
LAMAI
|
3/3/1998 12:00:00 AM
|
68.2600
|
936.0000
|
Large
|
677 |
10924
|
BERGS
|
3/4/1998 12:00:00 AM
|
151.5200
|
2034.5000
|
Very Large
|
678 |
10925
|
HANAR
|
3/4/1998 12:00:00 AM
|
2.2700
|
559.0000
|
Large
|
679 |
10926
|
ANATR
|
3/4/1998 12:00:00 AM
|
39.9200
|
514.4000
|
Large
|
680 |
10927
|
LACOR
|
3/5/1998 12:00:00 AM
|
19.7900
|
800.0000
|
Large
|
681 |
10928
|
GALED
|
3/5/1998 12:00:00 AM
|
1.3600
|
137.5000
|
Medium
|
682 |
10929
|
FRANK
|
3/5/1998 12:00:00 AM
|
33.9300
|
1174.7500
|
Very Large
|
683 |
10930
|
SUPRD
|
3/6/1998 12:00:00 AM
|
15.5500
|
2455.0000
|
Very Large
|
684 |
10931
|
RICSU
|
3/6/1998 12:00:00 AM
|
13.6000
|
837.0000
|
Large
|
685 |
10932
|
BONAP
|
3/6/1998 12:00:00 AM
|
134.6400
|
1925.5000
|
Very Large
|
686 |
10933
|
ISLAT
|
3/6/1998 12:00:00 AM
|
54.1500
|
920.6000
|
Large
|
687 |
10934
|
LEHMS
|
3/9/1998 12:00:00 AM
|
32.0100
|
500.0000
|
Large
|
688 |
10935
|
WELLI
|
3/9/1998 12:00:00 AM
|
47.5900
|
700.0000
|
Large
|
689 |
10936
|
GREAL
|
3/9/1998 12:00:00 AM
|
33.6800
|
570.0000
|
Large
|
690 |
10937
|
CACTU
|
3/10/1998 12:00:00 AM
|
31.5100
|
644.8000
|
Large
|
691 |
10938
|
QUICK
|
3/10/1998 12:00:00 AM
|
31.8900
|
3642.5000
|
Very Large
|
692 |
10939
|
MAGAA
|
3/10/1998 12:00:00 AM
|
76.3300
|
750.0000
|
Large
|
693 |
10940
|
BONAP
|
3/11/1998 12:00:00 AM
|
19.7700
|
360.0000
|
Medium
|
694 |
10941
|
SAVEA
|
3/11/1998 12:00:00 AM
|
400.8100
|
4769.0000
|
Very Large
|
695 |
10942
|
REGGC
|
3/11/1998 12:00:00 AM
|
17.9500
|
560.0000
|
Large
|
696 |
10943
|
BSBEV
|
3/11/1998 12:00:00 AM
|
2.1700
|
711.0000
|
Large
|
697 |
10944
|
BOTTM
|
3/12/1998 12:00:00 AM
|
52.9200
|
1139.1000
|
Very Large
|
698 |
10945
|
MORGK
|
3/12/1998 12:00:00 AM
|
10.2200
|
245.0000
|
Medium
|
699 |
10946
|
VAFFE
|
3/12/1998 12:00:00 AM
|
27.2000
|
1407.5000
|
Very Large
|
700 |
10947
|
BSBEV
|
3/13/1998 12:00:00 AM
|
3.2600
|
220.0000
|
Medium
|
701 |
10948
|
GODOS
|
3/13/1998 12:00:00 AM
|
23.3900
|
2362.2500
|
Very Large
|
702 |
10949
|
BOTTM
|
3/13/1998 12:00:00 AM
|
74.4400
|
4422.0000
|
Very Large
|
703 |
10950
|
MAGAA
|
3/16/1998 12:00:00 AM
|
2.5000
|
110.0000
|
Medium
|
704 |
10951
|
RICSU
|
3/16/1998 12:00:00 AM
|
30.8500
|
482.9000
|
Medium
|
705 |
10952
|
ALFKI
|
3/16/1998 12:00:00 AM
|
40.4200
|
491.2000
|
Medium
|
706 |
10953
|
AROUT
|
3/16/1998 12:00:00 AM
|
23.7200
|
4675.0000
|
Very Large
|
707 |
10954
|
LINOD
|
3/17/1998 12:00:00 AM
|
27.9100
|
1902.1000
|
Very Large
|
708 |
10955
|
FOLKO
|
3/17/1998 12:00:00 AM
|
3.2600
|
93.0000
|
Small
|
709 |
10956
|
BLAUS
|
3/17/1998 12:00:00 AM
|
44.6500
|
677.0000
|
Large
|
710 |
10957
|
HILAA
|
3/18/1998 12:00:00 AM
|
105.3600
|
1762.7000
|
Very Large
|
711 |
10958
|
OCEAN
|
3/18/1998 12:00:00 AM
|
49.5600
|
781.0000
|
Large
|
712 |
10959
|
GOURL
|
3/18/1998 12:00:00 AM
|
4.9800
|
155.0000
|
Medium
|
713 |
10960
|
HILAA
|
3/19/1998 12:00:00 AM
|
2.0800
|
276.6000
|
Medium
|
714 |
10961
|
QUEEN
|
3/19/1998 12:00:00 AM
|
104.4700
|
1122.0000
|
Very Large
|
715 |
10962
|
QUICK
|
3/19/1998 12:00:00 AM
|
275.7900
|
3584.0000
|
Very Large
|
716 |
10963
|
FURIB
|
3/19/1998 12:00:00 AM
|
2.7000
|
68.0000
|
Small
|
717 |
10964
|
SPECD
|
3/20/1998 12:00:00 AM
|
87.3800
|
2052.5000
|
Very Large
|
718 |
10965
|
OLDWO
|
3/20/1998 12:00:00 AM
|
144.3800
|
848.0000
|
Large
|
719 |
10966
|
CHOPS
|
3/20/1998 12:00:00 AM
|
27.1900
|
1255.6000
|
Very Large
|
720 |
10967
|
TOMSP
|
3/23/1998 12:00:00 AM
|
62.2200
|
910.4000
|
Large
|
721 |
10968
|
ERNSH
|
3/23/1998 12:00:00 AM
|
74.6000
|
1408.0000
|
Very Large
|
722 |
10969
|
COMMI
|
3/23/1998 12:00:00 AM
|
0.2100
|
108.0000
|
Medium
|
723 |
10970
|
BOLID
|
3/24/1998 12:00:00 AM
|
16.1600
|
280.0000
|
Medium
|
724 |
10971
|
FRANR
|
3/24/1998 12:00:00 AM
|
121.8200
|
1733.0600
|
Very Large
|
725 |
10972
|
LACOR
|
3/24/1998 12:00:00 AM
|
0.0200
|
251.5000
|
Medium
|
726 |
10973
|
LACOR
|
3/24/1998 12:00:00 AM
|
15.1700
|
291.5500
|
Medium
|
727 |
10974
|
SPLIR
|
3/25/1998 12:00:00 AM
|
12.9600
|
439.0000
|
Medium
|
728 |
10975
|
BOTTM
|
3/25/1998 12:00:00 AM
|
32.2700
|
717.5000
|
Large
|
729 |
10976
|
HILAA
|
3/25/1998 12:00:00 AM
|
37.9700
|
912.0000
|
Large
|
730 |
10977
|
FOLKO
|
3/26/1998 12:00:00 AM
|
208.5000
|
2233.0000
|
Very Large
|
731 |
10978
|
MAISD
|
3/26/1998 12:00:00 AM
|
32.8200
|
1500.7000
|
Very Large
|
732 |
10979
|
ERNSH
|
3/26/1998 12:00:00 AM
|
353.0700
|
4813.5000
|
Very Large
|
733 |
10980
|
FOLKO
|
3/27/1998 12:00:00 AM
|
1.2600
|
310.0000
|
Medium
|
734 |
10981
|
HANAR
|
3/27/1998 12:00:00 AM
|
193.3700
|
15810.0000
|
Very Large
|
735 |
10982
|
BOTTM
|
3/27/1998 12:00:00 AM
|
14.0100
|
1014.0000
|
Very Large
|
736 |
10983
|
SAVEA
|
3/27/1998 12:00:00 AM
|
657.5400
|
796.5000
|
Large
|
737 |
10984
|
SAVEA
|
3/30/1998 12:00:00 AM
|
211.2200
|
1809.7500
|
Very Large
|
738 |
10985
|
HUNGO
|
3/30/1998 12:00:00 AM
|
91.5100
|
2248.2000
|
Very Large
|
739 |
10986
|
OCEAN
|
3/30/1998 12:00:00 AM
|
217.8600
|
2220.0000
|
Very Large
|
740 |
10987
|
EASTC
|
3/31/1998 12:00:00 AM
|
185.4800
|
2772.0000
|
Very Large
|
741 |
10988
|
RATTC
|
3/31/1998 12:00:00 AM
|
61.1400
|
3772.0000
|
Very Large
|
742 |
10989
|
QUEDE
|
3/31/1998 12:00:00 AM
|
34.7600
|
1353.6000
|
Very Large
|
743 |
10990
|
ERNSH
|
4/1/1998 12:00:00 AM
|
117.6100
|
4931.0000
|
Very Large
|
744 |
10991
|
QUICK
|
4/1/1998 12:00:00 AM
|
38.5100
|
2870.0000
|
Very Large
|
745 |
10992
|
THEBI
|
4/1/1998 12:00:00 AM
|
4.2700
|
69.6000
|
Small
|
746 |
10993
|
FOLKO
|
4/1/1998 12:00:00 AM
|
8.8100
|
6527.2500
|
Very Large
|
747 |
10994
|
VAFFE
|
4/2/1998 12:00:00 AM
|
65.5300
|
990.0000
|
Large
|
748 |
10995
|
PERIC
|
4/2/1998 12:00:00 AM
|
46.0000
|
1196.0000
|
Very Large
|
749 |
10996
|
QUICK
|
4/2/1998 12:00:00 AM
|
1.1200
|
560.0000
|
Large
|
750 |
10997
|
LILAS
|
4/3/1998 12:00:00 AM
|
73.9100
|
1980.0000
|
Very Large
|
751 |
10998
|
WOLZA
|
4/3/1998 12:00:00 AM
|
20.3100
|
686.0000
|
Large
|
752 |
10999
|
OTTIK
|
4/3/1998 12:00:00 AM
|
96.3500
|
1261.0000
|
Very Large
|
753 |
11000
|
RATTC
|
4/6/1998 12:00:00 AM
|
55.1200
|
1075.0000
|
Very Large
|
754 |
11001
|
FOLKO
|
4/6/1998 12:00:00 AM
|
197.3000
|
2769.0000
|
Very Large
|
755 |
11002
|
SAVEA
|
4/6/1998 12:00:00 AM
|
141.1600
|
1902.0000
|
Very Large
|
756 |
11003
|
THECR
|
4/6/1998 12:00:00 AM
|
14.9100
|
326.0000
|
Medium
|
757 |
11004
|
MAISD
|
4/7/1998 12:00:00 AM
|
44.8400
|
295.3800
|
Medium
|
758 |
11005
|
WILMK
|
4/7/1998 12:00:00 AM
|
0.7500
|
586.0000
|
Large
|
759 |
11006
|
GREAL
|
4/7/1998 12:00:00 AM
|
25.1900
|
391.5800
|
Medium
|
760 |
11007
|
PRINI
|
4/8/1998 12:00:00 AM
|
202.2400
|
2633.9000
|
Very Large
|
761 |
11008
|
ERNSH
|
4/8/1998 12:00:00 AM
|
79.4600
|
4903.5000
|
Very Large
|
762 |
11009
|
GODOS
|
4/8/1998 12:00:00 AM
|
59.1100
|
702.0000
|
Large
|
763 |
11010
|
REGGC
|
4/9/1998 12:00:00 AM
|
28.7100
|
645.0000
|
Large
|
764 |
11011
|
ALFKI
|
4/9/1998 12:00:00 AM
|
1.2100
|
960.0000
|
Large
|
765 |
11012
|
FRANK
|
4/9/1998 12:00:00 AM
|
242.9500
|
2974.0000
|
Very Large
|
766 |
11013
|
ROMEY
|
4/9/1998 12:00:00 AM
|
32.9900
|
361.0000
|
Medium
|
767 |
11014
|
LINOD
|
4/10/1998 12:00:00 AM
|
23.6000
|
270.2000
|
Medium
|
768 |
11015
|
SANTG
|
4/10/1998 12:00:00 AM
|
4.6200
|
622.3500
|
Large
|
769 |
11016
|
AROUT
|
4/10/1998 12:00:00 AM
|
33.8000
|
491.5000
|
Medium
|
770 |
11017
|
ERNSH
|
4/13/1998 12:00:00 AM
|
754.2600
|
6750.0000
|
Very Large
|
771 |
11018
|
LONEP
|
4/13/1998 12:00:00 AM
|
11.6500
|
1575.0000
|
Very Large
|
772 |
11019
|
RANCH
|
4/13/1998 12:00:00 AM
|
3.1700
|
76.0000
|
Small
|
773 |
11020
|
OTTIK
|
4/14/1998 12:00:00 AM
|
43.3000
|
744.0000
|
Large
|
774 |
11021
|
QUICK
|
4/14/1998 12:00:00 AM
|
297.1800
|
6941.4900
|
Very Large
|
775 |
11022
|
HANAR
|
4/14/1998 12:00:00 AM
|
6.2700
|
1402.0000
|
Very Large
|
776 |
11023
|
BSBEV
|
4/14/1998 12:00:00 AM
|
123.8300
|
1500.0000
|
Very Large
|
777 |
11024
|
EASTC
|
4/15/1998 12:00:00 AM
|
74.3600
|
1966.8100
|
Very Large
|
778 |
11025
|
WARTH
|
4/15/1998 12:00:00 AM
|
29.1700
|
300.0000
|
Medium
|
779 |
11026
|
FRANS
|
4/15/1998 12:00:00 AM
|
47.0900
|
1030.0000
|
Very Large
|
780 |
11027
|
BOTTM
|
4/16/1998 12:00:00 AM
|
52.5200
|
1170.3000
|
Very Large
|
781 |
11028
|
KOENE
|
4/16/1998 12:00:00 AM
|
29.5900
|
2160.0000
|
Very Large
|
782 |
11029
|
CHOPS
|
4/16/1998 12:00:00 AM
|
47.8400
|
1286.8000
|
Very Large
|
783 |
11030
|
SAVEA
|
4/17/1998 12:00:00 AM
|
830.7500
|
16321.9000
|
Very Large
|
784 |
11031
|
SAVEA
|
4/17/1998 12:00:00 AM
|
227.2200
|
2393.5000
|
Very Large
|
785 |
11032
|
WHITC
|
4/17/1998 12:00:00 AM
|
606.1900
|
8902.5000
|
Very Large
|
786 |
11033
|
RICSU
|
4/17/1998 12:00:00 AM
|
84.7400
|
3592.0000
|
Very Large
|
787 |
11034
|
OLDWO
|
4/20/1998 12:00:00 AM
|
40.3200
|
554.4000
|
Large
|
788 |
11035
|
SUPRD
|
4/20/1998 12:00:00 AM
|
0.1700
|
1754.5000
|
Very Large
|
789 |
11036
|
DRACD
|
4/20/1998 12:00:00 AM
|
149.4700
|
1692.0000
|
Very Large
|
790 |
11037
|
GODOS
|
4/21/1998 12:00:00 AM
|
3.2000
|
60.0000
|
Small
|
791 |
11038
|
SUPRD
|
4/21/1998 12:00:00 AM
|
29.5900
|
751.0000
|
Large
|
792 |
11039
|
LINOD
|
4/21/1998 12:00:00 AM
|
65.0000
|
3090.0000
|
Very Large
|
793 |
11040
|
GREAL
|
4/22/1998 12:00:00 AM
|
18.8400
|
200.0000
|
Medium
|
794 |
11041
|
CHOPS
|
4/22/1998 12:00:00 AM
|
48.2200
|
1887.0000
|
Very Large
|
795 |
11042
|
COMMI
|
4/22/1998 12:00:00 AM
|
29.9900
|
405.7500
|
Medium
|
796 |
11043
|
SPECD
|
4/22/1998 12:00:00 AM
|
8.8000
|
210.0000
|
Medium
|
797 |
11044
|
WOLZA
|
4/23/1998 12:00:00 AM
|
8.7200
|
591.6000
|
Large
|
798 |
11045
|
BOTTM
|
4/23/1998 12:00:00 AM
|
70.5800
|
1309.5000
|
Very Large
|
799 |
11046
|
WANDK
|
4/23/1998 12:00:00 AM
|
71.6400
|
1564.0000
|
Very Large
|
800 |
11047
|
EASTC
|
4/24/1998 12:00:00 AM
|
46.6200
|
1090.5000
|
Very Large
|
801 |
11048
|
BOTTM
|
4/24/1998 12:00:00 AM
|
24.1200
|
525.0000
|
Large
|
802 |
11049
|
GOURL
|
4/24/1998 12:00:00 AM
|
8.3400
|
342.0000
|
Medium
|
803 |
11050
|
FOLKO
|
4/27/1998 12:00:00 AM
|
59.4100
|
900.0000
|
Large
|
804 |
11051
|
LAMAI
|
4/27/1998 12:00:00 AM
|
2.7900
|
45.0000
|
Small
|
805 |
11052
|
HANAR
|
4/27/1998 12:00:00 AM
|
67.2600
|
1665.0000
|
Very Large
|
806 |
11053
|
PICCO
|
4/27/1998 12:00:00 AM
|
53.0500
|
3658.7500
|
Very Large
|
807 |
11054
|
CACTU
|
4/28/1998 12:00:00 AM
|
0.3300
|
305.0000
|
Medium
|
808 |
11055
|
HILAA
|
4/28/1998 12:00:00 AM
|
120.9200
|
1727.5000
|
Very Large
|
809 |
11056
|
EASTC
|
4/28/1998 12:00:00 AM
|
278.9600
|
3740.0000
|
Very Large
|
810 |
11057
|
NORTS
|
4/29/1998 12:00:00 AM
|
4.1300
|
45.0000
|
Small
|
811 |
11058
|
BLAUS
|
4/29/1998 12:00:00 AM
|
31.1400
|
858.0000
|
Large
|
812 |
11059
|
RICAR
|
4/29/1998 12:00:00 AM
|
85.8000
|
1838.0000
|
Very Large
|
813 |
11060
|
FRANS
|
4/30/1998 12:00:00 AM
|
10.9800
|
266.0000
|
Medium
|
814 |
11061
|
GREAL
|
4/30/1998 12:00:00 AM
|
14.0100
|
510.0000
|
Large
|
815 |
11062
|
REGGC
|
4/30/1998 12:00:00 AM
|
29.9300
|
508.0000
|
Large
|
816 |
11063
|
HUNGO
|
4/30/1998 12:00:00 AM
|
81.7300
|
1445.5000
|
Very Large
|
817 |
11064
|
SAVEA
|
5/1/1998 12:00:00 AM
|
30.0900
|
4722.3000
|
Very Large
|
818 |
11065
|
LILAS
|
5/1/1998 12:00:00 AM
|
12.9100
|
252.5600
|
Medium
|
819 |
11066
|
WHITC
|
5/1/1998 12:00:00 AM
|
44.7200
|
928.7500
|
Large
|
820 |
11067
|
DRACD
|
5/4/1998 12:00:00 AM
|
7.9800
|
86.8500
|
Small
|
821 |
11068
|
QUEEN
|
5/4/1998 12:00:00 AM
|
81.7500
|
2384.8000
|
Very Large
|
822 |
11069
|
TORTU
|
5/4/1998 12:00:00 AM
|
15.6700
|
360.0000
|
Medium
|
823 |
11070
|
LEHMS
|
5/5/1998 12:00:00 AM
|
136.0000
|
1873.5000
|
Very Large
|
824 |
11071
|
LILAS
|
5/5/1998 12:00:00 AM
|
0.9300
|
510.0000
|
Large
|
825 |
11072
|
ERNSH
|
5/5/1998 12:00:00 AM
|
258.6400
|
5218.0000
|
Very Large
|
826 |
11073
|
PERIC
|
5/5/1998 12:00:00 AM
|
24.9500
|
300.0000
|
Medium
|
827 |
11074
|
SIMOB
|
5/6/1998 12:00:00 AM
|
18.4400
|
244.3000
|
Medium
|
828 |
11075
|
RICSU
|
5/6/1998 12:00:00 AM
|
6.1900
|
586.0000
|
Large
|
829 |
11076
|
BONAP
|
5/6/1998 12:00:00 AM
|
38.2800
|
1057.0000
|
Very Large
|
830 |
11077
|
RATTC
|
5/6/1998 12:00:00 AM
|
8.5300
|
1374.6000
|
Very Large
|
2. Usage of IIF to compare shipping status.
SQL Server Query 2
SELECT
OrderID,
OrderDate,
ShippedDate,
ShipStatus = IIF(
ShippedDate IS NULL,
'Not Shipped',
IIF(
ShippedDate <= OrderDate + 7, -- Shipped within 7 days
'Shipped On Time',
'Shipped Late'
)
)
FROM Orders
ORDER BY OrderID;
Create SQL query with SqlQueryBuilder 2
var (sql2, parameters2) = new SqlQueryBuilder()
.Select()
.Columns("OrderID", "OrderDate", "ShippedDate")
.Column(new IIF(new IS_NULL(new Column("ShippedDate")))
.True("Not Shipped")
.False(new IIF(new Column("ShippedDate").LessThanOrEqualeTo(new ColumnArithmatic("OrderDate").ADD(7)))
.True("Shipped On Time")
.False("Shipped Late")
)
, "ShipStatus")
.From("Orders")
.OrderBy(new OrderBy().SetColumnAscending("OrderID"))
.Build();
Query build by SqlQueryBuilder 2
SELECT OrderID,
OrderDate,
ShippedDate,
IIF (ShippedDate IS NULL, @pMAIN_2507200140484480720, IIF (ShippedDate <= OrderDate + @pMAIN_2507200140484480721, @pMAIN_2507200140484480722, @pMAIN_2507200140484480723)) AS ShipStatus
FROM Orders
ORDER BY OrderID ASC;
Parameters (If used)
Name |
Value |
@pMAIN_2507200140484480720 |
Not Shipped |
@pMAIN_2507200140484480721 |
7 |
@pMAIN_2507200140484480722 |
Shipped On Time |
@pMAIN_2507200140484480723 |
Shipped Late |
Query Results 2:
|
OrderID |
OrderDate |
ShippedDate |
ShipStatus |
1 |
10248
|
7/4/1996 12:00:00 AM
|
7/16/1996 12:00:00 AM
|
Shipped Late
|
2 |
10249
|
7/5/1996 12:00:00 AM
|
7/10/1996 12:00:00 AM
|
Shipped On Time
|
3 |
10250
|
7/8/1996 12:00:00 AM
|
7/12/1996 12:00:00 AM
|
Shipped On Time
|
4 |
10251
|
7/8/1996 12:00:00 AM
|
7/15/1996 12:00:00 AM
|
Shipped On Time
|
5 |
10252
|
7/9/1996 12:00:00 AM
|
7/11/1996 12:00:00 AM
|
Shipped On Time
|
6 |
10253
|
7/10/1996 12:00:00 AM
|
7/16/1996 12:00:00 AM
|
Shipped On Time
|
7 |
10254
|
7/11/1996 12:00:00 AM
|
7/23/1996 12:00:00 AM
|
Shipped Late
|
8 |
10255
|
7/12/1996 12:00:00 AM
|
7/15/1996 12:00:00 AM
|
Shipped On Time
|
9 |
10256
|
7/15/1996 12:00:00 AM
|
7/17/1996 12:00:00 AM
|
Shipped On Time
|
10 |
10257
|
7/16/1996 12:00:00 AM
|
7/22/1996 12:00:00 AM
|
Shipped On Time
|
11 |
10258
|
7/17/1996 12:00:00 AM
|
7/23/1996 12:00:00 AM
|
Shipped On Time
|
12 |
10259
|
7/18/1996 12:00:00 AM
|
7/25/1996 12:00:00 AM
|
Shipped On Time
|
13 |
10260
|
7/19/1996 12:00:00 AM
|
7/29/1996 12:00:00 AM
|
Shipped Late
|
14 |
10261
|
7/19/1996 12:00:00 AM
|
7/30/1996 12:00:00 AM
|
Shipped Late
|
15 |
10262
|
7/22/1996 12:00:00 AM
|
7/25/1996 12:00:00 AM
|
Shipped On Time
|
16 |
10263
|
7/23/1996 12:00:00 AM
|
7/31/1996 12:00:00 AM
|
Shipped Late
|
17 |
10264
|
7/24/1996 12:00:00 AM
|
8/23/1996 12:00:00 AM
|
Shipped Late
|
18 |
10265
|
7/25/1996 12:00:00 AM
|
8/12/1996 12:00:00 AM
|
Shipped Late
|
19 |
10266
|
7/26/1996 12:00:00 AM
|
7/31/1996 12:00:00 AM
|
Shipped On Time
|
20 |
10267
|
7/29/1996 12:00:00 AM
|
8/6/1996 12:00:00 AM
|
Shipped Late
|
21 |
10268
|
7/30/1996 12:00:00 AM
|
8/2/1996 12:00:00 AM
|
Shipped On Time
|
22 |
10269
|
7/31/1996 12:00:00 AM
|
8/9/1996 12:00:00 AM
|
Shipped Late
|
23 |
10270
|
8/1/1996 12:00:00 AM
|
8/2/1996 12:00:00 AM
|
Shipped On Time
|
24 |
10271
|
8/1/1996 12:00:00 AM
|
8/30/1996 12:00:00 AM
|
Shipped Late
|
25 |
10272
|
8/2/1996 12:00:00 AM
|
8/6/1996 12:00:00 AM
|
Shipped On Time
|
26 |
10273
|
8/5/1996 12:00:00 AM
|
8/12/1996 12:00:00 AM
|
Shipped On Time
|
27 |
10274
|
8/6/1996 12:00:00 AM
|
8/16/1996 12:00:00 AM
|
Shipped Late
|
28 |
10275
|
8/7/1996 12:00:00 AM
|
8/9/1996 12:00:00 AM
|
Shipped On Time
|
29 |
10276
|
8/8/1996 12:00:00 AM
|
8/14/1996 12:00:00 AM
|
Shipped On Time
|
30 |
10277
|
8/9/1996 12:00:00 AM
|
8/13/1996 12:00:00 AM
|
Shipped On Time
|
31 |
10278
|
8/12/1996 12:00:00 AM
|
8/16/1996 12:00:00 AM
|
Shipped On Time
|
32 |
10279
|
8/13/1996 12:00:00 AM
|
8/16/1996 12:00:00 AM
|
Shipped On Time
|
33 |
10280
|
8/14/1996 12:00:00 AM
|
9/12/1996 12:00:00 AM
|
Shipped Late
|
34 |
10281
|
8/14/1996 12:00:00 AM
|
8/21/1996 12:00:00 AM
|
Shipped On Time
|
35 |
10282
|
8/15/1996 12:00:00 AM
|
8/21/1996 12:00:00 AM
|
Shipped On Time
|
36 |
10283
|
8/16/1996 12:00:00 AM
|
8/23/1996 12:00:00 AM
|
Shipped On Time
|
37 |
10284
|
8/19/1996 12:00:00 AM
|
8/27/1996 12:00:00 AM
|
Shipped Late
|
38 |
10285
|
8/20/1996 12:00:00 AM
|
8/26/1996 12:00:00 AM
|
Shipped On Time
|
39 |
10286
|
8/21/1996 12:00:00 AM
|
8/30/1996 12:00:00 AM
|
Shipped Late
|
40 |
10287
|
8/22/1996 12:00:00 AM
|
8/28/1996 12:00:00 AM
|
Shipped On Time
|
41 |
10288
|
8/23/1996 12:00:00 AM
|
9/3/1996 12:00:00 AM
|
Shipped Late
|
42 |
10289
|
8/26/1996 12:00:00 AM
|
8/28/1996 12:00:00 AM
|
Shipped On Time
|
43 |
10290
|
8/27/1996 12:00:00 AM
|
9/3/1996 12:00:00 AM
|
Shipped On Time
|
44 |
10291
|
8/27/1996 12:00:00 AM
|
9/4/1996 12:00:00 AM
|
Shipped Late
|
45 |
10292
|
8/28/1996 12:00:00 AM
|
9/2/1996 12:00:00 AM
|
Shipped On Time
|
46 |
10293
|
8/29/1996 12:00:00 AM
|
9/11/1996 12:00:00 AM
|
Shipped Late
|
47 |
10294
|
8/30/1996 12:00:00 AM
|
9/5/1996 12:00:00 AM
|
Shipped On Time
|
48 |
10295
|
9/2/1996 12:00:00 AM
|
9/10/1996 12:00:00 AM
|
Shipped Late
|
49 |
10296
|
9/3/1996 12:00:00 AM
|
9/11/1996 12:00:00 AM
|
Shipped Late
|
50 |
10297
|
9/4/1996 12:00:00 AM
|
9/10/1996 12:00:00 AM
|
Shipped On Time
|
51 |
10298
|
9/5/1996 12:00:00 AM
|
9/11/1996 12:00:00 AM
|
Shipped On Time
|
52 |
10299
|
9/6/1996 12:00:00 AM
|
9/13/1996 12:00:00 AM
|
Shipped On Time
|
53 |
10300
|
9/9/1996 12:00:00 AM
|
9/18/1996 12:00:00 AM
|
Shipped Late
|
54 |
10301
|
9/9/1996 12:00:00 AM
|
9/17/1996 12:00:00 AM
|
Shipped Late
|
55 |
10302
|
9/10/1996 12:00:00 AM
|
10/9/1996 12:00:00 AM
|
Shipped Late
|
56 |
10303
|
9/11/1996 12:00:00 AM
|
9/18/1996 12:00:00 AM
|
Shipped On Time
|
57 |
10304
|
9/12/1996 12:00:00 AM
|
9/17/1996 12:00:00 AM
|
Shipped On Time
|
58 |
10305
|
9/13/1996 12:00:00 AM
|
10/9/1996 12:00:00 AM
|
Shipped Late
|
59 |
10306
|
9/16/1996 12:00:00 AM
|
9/23/1996 12:00:00 AM
|
Shipped On Time
|
60 |
10307
|
9/17/1996 12:00:00 AM
|
9/25/1996 12:00:00 AM
|
Shipped Late
|
61 |
10308
|
9/18/1996 12:00:00 AM
|
9/24/1996 12:00:00 AM
|
Shipped On Time
|
62 |
10309
|
9/19/1996 12:00:00 AM
|
10/23/1996 12:00:00 AM
|
Shipped Late
|
63 |
10310
|
9/20/1996 12:00:00 AM
|
9/27/1996 12:00:00 AM
|
Shipped On Time
|
64 |
10311
|
9/20/1996 12:00:00 AM
|
9/26/1996 12:00:00 AM
|
Shipped On Time
|
65 |
10312
|
9/23/1996 12:00:00 AM
|
10/3/1996 12:00:00 AM
|
Shipped Late
|
66 |
10313
|
9/24/1996 12:00:00 AM
|
10/4/1996 12:00:00 AM
|
Shipped Late
|
67 |
10314
|
9/25/1996 12:00:00 AM
|
10/4/1996 12:00:00 AM
|
Shipped Late
|
68 |
10315
|
9/26/1996 12:00:00 AM
|
10/3/1996 12:00:00 AM
|
Shipped On Time
|
69 |
10316
|
9/27/1996 12:00:00 AM
|
10/8/1996 12:00:00 AM
|
Shipped Late
|
70 |
10317
|
9/30/1996 12:00:00 AM
|
10/10/1996 12:00:00 AM
|
Shipped Late
|
71 |
10318
|
10/1/1996 12:00:00 AM
|
10/4/1996 12:00:00 AM
|
Shipped On Time
|
72 |
10319
|
10/2/1996 12:00:00 AM
|
10/11/1996 12:00:00 AM
|
Shipped Late
|
73 |
10320
|
10/3/1996 12:00:00 AM
|
10/18/1996 12:00:00 AM
|
Shipped Late
|
74 |
10321
|
10/3/1996 12:00:00 AM
|
10/11/1996 12:00:00 AM
|
Shipped Late
|
75 |
10322
|
10/4/1996 12:00:00 AM
|
10/23/1996 12:00:00 AM
|
Shipped Late
|
76 |
10323
|
10/7/1996 12:00:00 AM
|
10/14/1996 12:00:00 AM
|
Shipped On Time
|
77 |
10324
|
10/8/1996 12:00:00 AM
|
10/10/1996 12:00:00 AM
|
Shipped On Time
|
78 |
10325
|
10/9/1996 12:00:00 AM
|
10/14/1996 12:00:00 AM
|
Shipped On Time
|
79 |
10326
|
10/10/1996 12:00:00 AM
|
10/14/1996 12:00:00 AM
|
Shipped On Time
|
80 |
10327
|
10/11/1996 12:00:00 AM
|
10/14/1996 12:00:00 AM
|
Shipped On Time
|
81 |
10328
|
10/14/1996 12:00:00 AM
|
10/17/1996 12:00:00 AM
|
Shipped On Time
|
82 |
10329
|
10/15/1996 12:00:00 AM
|
10/23/1996 12:00:00 AM
|
Shipped Late
|
83 |
10330
|
10/16/1996 12:00:00 AM
|
10/28/1996 12:00:00 AM
|
Shipped Late
|
84 |
10331
|
10/16/1996 12:00:00 AM
|
10/21/1996 12:00:00 AM
|
Shipped On Time
|
85 |
10332
|
10/17/1996 12:00:00 AM
|
10/21/1996 12:00:00 AM
|
Shipped On Time
|
86 |
10333
|
10/18/1996 12:00:00 AM
|
10/25/1996 12:00:00 AM
|
Shipped On Time
|
87 |
10334
|
10/21/1996 12:00:00 AM
|
10/28/1996 12:00:00 AM
|
Shipped On Time
|
88 |
10335
|
10/22/1996 12:00:00 AM
|
10/24/1996 12:00:00 AM
|
Shipped On Time
|
89 |
10336
|
10/23/1996 12:00:00 AM
|
10/25/1996 12:00:00 AM
|
Shipped On Time
|
90 |
10337
|
10/24/1996 12:00:00 AM
|
10/29/1996 12:00:00 AM
|
Shipped On Time
|
91 |
10338
|
10/25/1996 12:00:00 AM
|
10/29/1996 12:00:00 AM
|
Shipped On Time
|
92 |
10339
|
10/28/1996 12:00:00 AM
|
11/4/1996 12:00:00 AM
|
Shipped On Time
|
93 |
10340
|
10/29/1996 12:00:00 AM
|
11/8/1996 12:00:00 AM
|
Shipped Late
|
94 |
10341
|
10/29/1996 12:00:00 AM
|
11/5/1996 12:00:00 AM
|
Shipped On Time
|
95 |
10342
|
10/30/1996 12:00:00 AM
|
11/4/1996 12:00:00 AM
|
Shipped On Time
|
96 |
10343
|
10/31/1996 12:00:00 AM
|
11/6/1996 12:00:00 AM
|
Shipped On Time
|
97 |
10344
|
11/1/1996 12:00:00 AM
|
11/5/1996 12:00:00 AM
|
Shipped On Time
|
98 |
10345
|
11/4/1996 12:00:00 AM
|
11/11/1996 12:00:00 AM
|
Shipped On Time
|
99 |
10346
|
11/5/1996 12:00:00 AM
|
11/8/1996 12:00:00 AM
|
Shipped On Time
|
100 |
10347
|
11/6/1996 12:00:00 AM
|
11/8/1996 12:00:00 AM
|
Shipped On Time
|
101 |
10348
|
11/7/1996 12:00:00 AM
|
11/15/1996 12:00:00 AM
|
Shipped Late
|
102 |
10349
|
11/8/1996 12:00:00 AM
|
11/15/1996 12:00:00 AM
|
Shipped On Time
|
103 |
10350
|
11/11/1996 12:00:00 AM
|
12/3/1996 12:00:00 AM
|
Shipped Late
|
104 |
10351
|
11/11/1996 12:00:00 AM
|
11/20/1996 12:00:00 AM
|
Shipped Late
|
105 |
10352
|
11/12/1996 12:00:00 AM
|
11/18/1996 12:00:00 AM
|
Shipped On Time
|
106 |
10353
|
11/13/1996 12:00:00 AM
|
11/25/1996 12:00:00 AM
|
Shipped Late
|
107 |
10354
|
11/14/1996 12:00:00 AM
|
11/20/1996 12:00:00 AM
|
Shipped On Time
|
108 |
10355
|
11/15/1996 12:00:00 AM
|
11/20/1996 12:00:00 AM
|
Shipped On Time
|
109 |
10356
|
11/18/1996 12:00:00 AM
|
11/27/1996 12:00:00 AM
|
Shipped Late
|
110 |
10357
|
11/19/1996 12:00:00 AM
|
12/2/1996 12:00:00 AM
|
Shipped Late
|
111 |
10358
|
11/20/1996 12:00:00 AM
|
11/27/1996 12:00:00 AM
|
Shipped On Time
|
112 |
10359
|
11/21/1996 12:00:00 AM
|
11/26/1996 12:00:00 AM
|
Shipped On Time
|
113 |
10360
|
11/22/1996 12:00:00 AM
|
12/2/1996 12:00:00 AM
|
Shipped Late
|
114 |
10361
|
11/22/1996 12:00:00 AM
|
12/3/1996 12:00:00 AM
|
Shipped Late
|
115 |
10362
|
11/25/1996 12:00:00 AM
|
11/28/1996 12:00:00 AM
|
Shipped On Time
|
116 |
10363
|
11/26/1996 12:00:00 AM
|
12/4/1996 12:00:00 AM
|
Shipped Late
|
117 |
10364
|
11/26/1996 12:00:00 AM
|
12/4/1996 12:00:00 AM
|
Shipped Late
|
118 |
10365
|
11/27/1996 12:00:00 AM
|
12/2/1996 12:00:00 AM
|
Shipped On Time
|
119 |
10366
|
11/28/1996 12:00:00 AM
|
12/30/1996 12:00:00 AM
|
Shipped Late
|
120 |
10367
|
11/28/1996 12:00:00 AM
|
12/2/1996 12:00:00 AM
|
Shipped On Time
|
121 |
10368
|
11/29/1996 12:00:00 AM
|
12/2/1996 12:00:00 AM
|
Shipped On Time
|
122 |
10369
|
12/2/1996 12:00:00 AM
|
12/9/1996 12:00:00 AM
|
Shipped On Time
|
123 |
10370
|
12/3/1996 12:00:00 AM
|
12/27/1996 12:00:00 AM
|
Shipped Late
|
124 |
10371
|
12/3/1996 12:00:00 AM
|
12/24/1996 12:00:00 AM
|
Shipped Late
|
125 |
10372
|
12/4/1996 12:00:00 AM
|
12/9/1996 12:00:00 AM
|
Shipped On Time
|
126 |
10373
|
12/5/1996 12:00:00 AM
|
12/11/1996 12:00:00 AM
|
Shipped On Time
|
127 |
10374
|
12/5/1996 12:00:00 AM
|
12/9/1996 12:00:00 AM
|
Shipped On Time
|
128 |
10375
|
12/6/1996 12:00:00 AM
|
12/9/1996 12:00:00 AM
|
Shipped On Time
|
129 |
10376
|
12/9/1996 12:00:00 AM
|
12/13/1996 12:00:00 AM
|
Shipped On Time
|
130 |
10377
|
12/9/1996 12:00:00 AM
|
12/13/1996 12:00:00 AM
|
Shipped On Time
|
131 |
10378
|
12/10/1996 12:00:00 AM
|
12/19/1996 12:00:00 AM
|
Shipped Late
|
132 |
10379
|
12/11/1996 12:00:00 AM
|
12/13/1996 12:00:00 AM
|
Shipped On Time
|
133 |
10380
|
12/12/1996 12:00:00 AM
|
1/16/1997 12:00:00 AM
|
Shipped Late
|
134 |
10381
|
12/12/1996 12:00:00 AM
|
12/13/1996 12:00:00 AM
|
Shipped On Time
|
135 |
10382
|
12/13/1996 12:00:00 AM
|
12/16/1996 12:00:00 AM
|
Shipped On Time
|
136 |
10383
|
12/16/1996 12:00:00 AM
|
12/18/1996 12:00:00 AM
|
Shipped On Time
|
137 |
10384
|
12/16/1996 12:00:00 AM
|
12/20/1996 12:00:00 AM
|
Shipped On Time
|
138 |
10385
|
12/17/1996 12:00:00 AM
|
12/23/1996 12:00:00 AM
|
Shipped On Time
|
139 |
10386
|
12/18/1996 12:00:00 AM
|
12/25/1996 12:00:00 AM
|
Shipped On Time
|
140 |
10387
|
12/18/1996 12:00:00 AM
|
12/20/1996 12:00:00 AM
|
Shipped On Time
|
141 |
10388
|
12/19/1996 12:00:00 AM
|
12/20/1996 12:00:00 AM
|
Shipped On Time
|
142 |
10389
|
12/20/1996 12:00:00 AM
|
12/24/1996 12:00:00 AM
|
Shipped On Time
|
143 |
10390
|
12/23/1996 12:00:00 AM
|
12/26/1996 12:00:00 AM
|
Shipped On Time
|
144 |
10391
|
12/23/1996 12:00:00 AM
|
12/31/1996 12:00:00 AM
|
Shipped Late
|
145 |
10392
|
12/24/1996 12:00:00 AM
|
1/1/1997 12:00:00 AM
|
Shipped Late
|
146 |
10393
|
12/25/1996 12:00:00 AM
|
1/3/1997 12:00:00 AM
|
Shipped Late
|
147 |
10394
|
12/25/1996 12:00:00 AM
|
1/3/1997 12:00:00 AM
|
Shipped Late
|
148 |
10395
|
12/26/1996 12:00:00 AM
|
1/3/1997 12:00:00 AM
|
Shipped Late
|
149 |
10396
|
12/27/1996 12:00:00 AM
|
1/6/1997 12:00:00 AM
|
Shipped Late
|
150 |
10397
|
12/27/1996 12:00:00 AM
|
1/2/1997 12:00:00 AM
|
Shipped On Time
|
151 |
10398
|
12/30/1996 12:00:00 AM
|
1/9/1997 12:00:00 AM
|
Shipped Late
|
152 |
10399
|
12/31/1996 12:00:00 AM
|
1/8/1997 12:00:00 AM
|
Shipped Late
|
153 |
10400
|
1/1/1997 12:00:00 AM
|
1/16/1997 12:00:00 AM
|
Shipped Late
|
154 |
10401
|
1/1/1997 12:00:00 AM
|
1/10/1997 12:00:00 AM
|
Shipped Late
|
155 |
10402
|
1/2/1997 12:00:00 AM
|
1/10/1997 12:00:00 AM
|
Shipped Late
|
156 |
10403
|
1/3/1997 12:00:00 AM
|
1/9/1997 12:00:00 AM
|
Shipped On Time
|
157 |
10404
|
1/3/1997 12:00:00 AM
|
1/8/1997 12:00:00 AM
|
Shipped On Time
|
158 |
10405
|
1/6/1997 12:00:00 AM
|
1/22/1997 12:00:00 AM
|
Shipped Late
|
159 |
10406
|
1/7/1997 12:00:00 AM
|
1/13/1997 12:00:00 AM
|
Shipped On Time
|
160 |
10407
|
1/7/1997 12:00:00 AM
|
1/30/1997 12:00:00 AM
|
Shipped Late
|
161 |
10408
|
1/8/1997 12:00:00 AM
|
1/14/1997 12:00:00 AM
|
Shipped On Time
|
162 |
10409
|
1/9/1997 12:00:00 AM
|
1/14/1997 12:00:00 AM
|
Shipped On Time
|
163 |
10410
|
1/10/1997 12:00:00 AM
|
1/15/1997 12:00:00 AM
|
Shipped On Time
|
164 |
10411
|
1/10/1997 12:00:00 AM
|
1/21/1997 12:00:00 AM
|
Shipped Late
|
165 |
10412
|
1/13/1997 12:00:00 AM
|
1/15/1997 12:00:00 AM
|
Shipped On Time
|
166 |
10413
|
1/14/1997 12:00:00 AM
|
1/16/1997 12:00:00 AM
|
Shipped On Time
|
167 |
10414
|
1/14/1997 12:00:00 AM
|
1/17/1997 12:00:00 AM
|
Shipped On Time
|
168 |
10415
|
1/15/1997 12:00:00 AM
|
1/24/1997 12:00:00 AM
|
Shipped Late
|
169 |
10416
|
1/16/1997 12:00:00 AM
|
1/27/1997 12:00:00 AM
|
Shipped Late
|
170 |
10417
|
1/16/1997 12:00:00 AM
|
1/28/1997 12:00:00 AM
|
Shipped Late
|
171 |
10418
|
1/17/1997 12:00:00 AM
|
1/24/1997 12:00:00 AM
|
Shipped On Time
|
172 |
10419
|
1/20/1997 12:00:00 AM
|
1/30/1997 12:00:00 AM
|
Shipped Late
|
173 |
10420
|
1/21/1997 12:00:00 AM
|
1/27/1997 12:00:00 AM
|
Shipped On Time
|
174 |
10421
|
1/21/1997 12:00:00 AM
|
1/27/1997 12:00:00 AM
|
Shipped On Time
|
175 |
10422
|
1/22/1997 12:00:00 AM
|
1/31/1997 12:00:00 AM
|
Shipped Late
|
176 |
10423
|
1/23/1997 12:00:00 AM
|
2/24/1997 12:00:00 AM
|
Shipped Late
|
177 |
10424
|
1/23/1997 12:00:00 AM
|
1/27/1997 12:00:00 AM
|
Shipped On Time
|
178 |
10425
|
1/24/1997 12:00:00 AM
|
2/14/1997 12:00:00 AM
|
Shipped Late
|
179 |
10426
|
1/27/1997 12:00:00 AM
|
2/6/1997 12:00:00 AM
|
Shipped Late
|
180 |
10427
|
1/27/1997 12:00:00 AM
|
3/3/1997 12:00:00 AM
|
Shipped Late
|
181 |
10428
|
1/28/1997 12:00:00 AM
|
2/4/1997 12:00:00 AM
|
Shipped On Time
|
182 |
10429
|
1/29/1997 12:00:00 AM
|
2/7/1997 12:00:00 AM
|
Shipped Late
|
183 |
10430
|
1/30/1997 12:00:00 AM
|
2/3/1997 12:00:00 AM
|
Shipped On Time
|
184 |
10431
|
1/30/1997 12:00:00 AM
|
2/7/1997 12:00:00 AM
|
Shipped Late
|
185 |
10432
|
1/31/1997 12:00:00 AM
|
2/7/1997 12:00:00 AM
|
Shipped On Time
|
186 |
10433
|
2/3/1997 12:00:00 AM
|
3/4/1997 12:00:00 AM
|
Shipped Late
|
187 |
10434
|
2/3/1997 12:00:00 AM
|
2/13/1997 12:00:00 AM
|
Shipped Late
|
188 |
10435
|
2/4/1997 12:00:00 AM
|
2/7/1997 12:00:00 AM
|
Shipped On Time
|
189 |
10436
|
2/5/1997 12:00:00 AM
|
2/11/1997 12:00:00 AM
|
Shipped On Time
|
190 |
10437
|
2/5/1997 12:00:00 AM
|
2/12/1997 12:00:00 AM
|
Shipped On Time
|
191 |
10438
|
2/6/1997 12:00:00 AM
|
2/14/1997 12:00:00 AM
|
Shipped Late
|
192 |
10439
|
2/7/1997 12:00:00 AM
|
2/10/1997 12:00:00 AM
|
Shipped On Time
|
193 |
10440
|
2/10/1997 12:00:00 AM
|
2/28/1997 12:00:00 AM
|
Shipped Late
|
194 |
10441
|
2/10/1997 12:00:00 AM
|
3/14/1997 12:00:00 AM
|
Shipped Late
|
195 |
10442
|
2/11/1997 12:00:00 AM
|
2/18/1997 12:00:00 AM
|
Shipped On Time
|
196 |
10443
|
2/12/1997 12:00:00 AM
|
2/14/1997 12:00:00 AM
|
Shipped On Time
|
197 |
10444
|
2/12/1997 12:00:00 AM
|
2/21/1997 12:00:00 AM
|
Shipped Late
|
198 |
10445
|
2/13/1997 12:00:00 AM
|
2/20/1997 12:00:00 AM
|
Shipped On Time
|
199 |
10446
|
2/14/1997 12:00:00 AM
|
2/19/1997 12:00:00 AM
|
Shipped On Time
|
200 |
10447
|
2/14/1997 12:00:00 AM
|
3/7/1997 12:00:00 AM
|
Shipped Late
|
201 |
10448
|
2/17/1997 12:00:00 AM
|
2/24/1997 12:00:00 AM
|
Shipped On Time
|
202 |
10449
|
2/18/1997 12:00:00 AM
|
2/27/1997 12:00:00 AM
|
Shipped Late
|
203 |
10450
|
2/19/1997 12:00:00 AM
|
3/11/1997 12:00:00 AM
|
Shipped Late
|
204 |
10451
|
2/19/1997 12:00:00 AM
|
3/12/1997 12:00:00 AM
|
Shipped Late
|
205 |
10452
|
2/20/1997 12:00:00 AM
|
2/26/1997 12:00:00 AM
|
Shipped On Time
|
206 |
10453
|
2/21/1997 12:00:00 AM
|
2/26/1997 12:00:00 AM
|
Shipped On Time
|
207 |
10454
|
2/21/1997 12:00:00 AM
|
2/25/1997 12:00:00 AM
|
Shipped On Time
|
208 |
10455
|
2/24/1997 12:00:00 AM
|
3/3/1997 12:00:00 AM
|
Shipped On Time
|
209 |
10456
|
2/25/1997 12:00:00 AM
|
2/28/1997 12:00:00 AM
|
Shipped On Time
|
210 |
10457
|
2/25/1997 12:00:00 AM
|
3/3/1997 12:00:00 AM
|
Shipped On Time
|
211 |
10458
|
2/26/1997 12:00:00 AM
|
3/4/1997 12:00:00 AM
|
Shipped On Time
|
212 |
10459
|
2/27/1997 12:00:00 AM
|
2/28/1997 12:00:00 AM
|
Shipped On Time
|
213 |
10460
|
2/28/1997 12:00:00 AM
|
3/3/1997 12:00:00 AM
|
Shipped On Time
|
214 |
10461
|
2/28/1997 12:00:00 AM
|
3/5/1997 12:00:00 AM
|
Shipped On Time
|
215 |
10462
|
3/3/1997 12:00:00 AM
|
3/18/1997 12:00:00 AM
|
Shipped Late
|
216 |
10463
|
3/4/1997 12:00:00 AM
|
3/6/1997 12:00:00 AM
|
Shipped On Time
|
217 |
10464
|
3/4/1997 12:00:00 AM
|
3/14/1997 12:00:00 AM
|
Shipped Late
|
218 |
10465
|
3/5/1997 12:00:00 AM
|
3/14/1997 12:00:00 AM
|
Shipped Late
|
219 |
10466
|
3/6/1997 12:00:00 AM
|
3/13/1997 12:00:00 AM
|
Shipped On Time
|
220 |
10467
|
3/6/1997 12:00:00 AM
|
3/11/1997 12:00:00 AM
|
Shipped On Time
|
221 |
10468
|
3/7/1997 12:00:00 AM
|
3/12/1997 12:00:00 AM
|
Shipped On Time
|
222 |
10469
|
3/10/1997 12:00:00 AM
|
3/14/1997 12:00:00 AM
|
Shipped On Time
|
223 |
10470
|
3/11/1997 12:00:00 AM
|
3/14/1997 12:00:00 AM
|
Shipped On Time
|
224 |
10471
|
3/11/1997 12:00:00 AM
|
3/18/1997 12:00:00 AM
|
Shipped On Time
|
225 |
10472
|
3/12/1997 12:00:00 AM
|
3/19/1997 12:00:00 AM
|
Shipped On Time
|
226 |
10473
|
3/13/1997 12:00:00 AM
|
3/21/1997 12:00:00 AM
|
Shipped Late
|
227 |
10474
|
3/13/1997 12:00:00 AM
|
3/21/1997 12:00:00 AM
|
Shipped Late
|
228 |
10475
|
3/14/1997 12:00:00 AM
|
4/4/1997 12:00:00 AM
|
Shipped Late
|
229 |
10476
|
3/17/1997 12:00:00 AM
|
3/24/1997 12:00:00 AM
|
Shipped On Time
|
230 |
10477
|
3/17/1997 12:00:00 AM
|
3/25/1997 12:00:00 AM
|
Shipped Late
|
231 |
10478
|
3/18/1997 12:00:00 AM
|
3/26/1997 12:00:00 AM
|
Shipped Late
|
232 |
10479
|
3/19/1997 12:00:00 AM
|
3/21/1997 12:00:00 AM
|
Shipped On Time
|
233 |
10480
|
3/20/1997 12:00:00 AM
|
3/24/1997 12:00:00 AM
|
Shipped On Time
|
234 |
10481
|
3/20/1997 12:00:00 AM
|
3/25/1997 12:00:00 AM
|
Shipped On Time
|
235 |
10482
|
3/21/1997 12:00:00 AM
|
4/10/1997 12:00:00 AM
|
Shipped Late
|
236 |
10483
|
3/24/1997 12:00:00 AM
|
4/25/1997 12:00:00 AM
|
Shipped Late
|
237 |
10484
|
3/24/1997 12:00:00 AM
|
4/1/1997 12:00:00 AM
|
Shipped Late
|
238 |
10485
|
3/25/1997 12:00:00 AM
|
3/31/1997 12:00:00 AM
|
Shipped On Time
|
239 |
10486
|
3/26/1997 12:00:00 AM
|
4/2/1997 12:00:00 AM
|
Shipped On Time
|
240 |
10487
|
3/26/1997 12:00:00 AM
|
3/28/1997 12:00:00 AM
|
Shipped On Time
|
241 |
10488
|
3/27/1997 12:00:00 AM
|
4/2/1997 12:00:00 AM
|
Shipped On Time
|
242 |
10489
|
3/28/1997 12:00:00 AM
|
4/9/1997 12:00:00 AM
|
Shipped Late
|
243 |
10490
|
3/31/1997 12:00:00 AM
|
4/3/1997 12:00:00 AM
|
Shipped On Time
|
244 |
10491
|
3/31/1997 12:00:00 AM
|
4/8/1997 12:00:00 AM
|
Shipped Late
|
245 |
10492
|
4/1/1997 12:00:00 AM
|
4/11/1997 12:00:00 AM
|
Shipped Late
|
246 |
10493
|
4/2/1997 12:00:00 AM
|
4/10/1997 12:00:00 AM
|
Shipped Late
|
247 |
10494
|
4/2/1997 12:00:00 AM
|
4/9/1997 12:00:00 AM
|
Shipped On Time
|
248 |
10495
|
4/3/1997 12:00:00 AM
|
4/11/1997 12:00:00 AM
|
Shipped Late
|
249 |
10496
|
4/4/1997 12:00:00 AM
|
4/7/1997 12:00:00 AM
|
Shipped On Time
|
250 |
10497
|
4/4/1997 12:00:00 AM
|
4/7/1997 12:00:00 AM
|
Shipped On Time
|
251 |
10498
|
4/7/1997 12:00:00 AM
|
4/11/1997 12:00:00 AM
|
Shipped On Time
|
252 |
10499
|
4/8/1997 12:00:00 AM
|
4/16/1997 12:00:00 AM
|
Shipped Late
|
253 |
10500
|
4/9/1997 12:00:00 AM
|
4/17/1997 12:00:00 AM
|
Shipped Late
|
254 |
10501
|
4/9/1997 12:00:00 AM
|
4/16/1997 12:00:00 AM
|
Shipped On Time
|
255 |
10502
|
4/10/1997 12:00:00 AM
|
4/29/1997 12:00:00 AM
|
Shipped Late
|
256 |
10503
|
4/11/1997 12:00:00 AM
|
4/16/1997 12:00:00 AM
|
Shipped On Time
|
257 |
10504
|
4/11/1997 12:00:00 AM
|
4/18/1997 12:00:00 AM
|
Shipped On Time
|
258 |
10505
|
4/14/1997 12:00:00 AM
|
4/21/1997 12:00:00 AM
|
Shipped On Time
|
259 |
10506
|
4/15/1997 12:00:00 AM
|
5/2/1997 12:00:00 AM
|
Shipped Late
|
260 |
10507
|
4/15/1997 12:00:00 AM
|
4/22/1997 12:00:00 AM
|
Shipped On Time
|
261 |
10508
|
4/16/1997 12:00:00 AM
|
5/13/1997 12:00:00 AM
|
Shipped Late
|
262 |
10509
|
4/17/1997 12:00:00 AM
|
4/29/1997 12:00:00 AM
|
Shipped Late
|
263 |
10510
|
4/18/1997 12:00:00 AM
|
4/28/1997 12:00:00 AM
|
Shipped Late
|
264 |
10511
|
4/18/1997 12:00:00 AM
|
4/21/1997 12:00:00 AM
|
Shipped On Time
|
265 |
10512
|
4/21/1997 12:00:00 AM
|
4/24/1997 12:00:00 AM
|
Shipped On Time
|
266 |
10513
|
4/22/1997 12:00:00 AM
|
4/28/1997 12:00:00 AM
|
Shipped On Time
|
267 |
10514
|
4/22/1997 12:00:00 AM
|
5/16/1997 12:00:00 AM
|
Shipped Late
|
268 |
10515
|
4/23/1997 12:00:00 AM
|
5/23/1997 12:00:00 AM
|
Shipped Late
|
269 |
10516
|
4/24/1997 12:00:00 AM
|
5/1/1997 12:00:00 AM
|
Shipped On Time
|
270 |
10517
|
4/24/1997 12:00:00 AM
|
4/29/1997 12:00:00 AM
|
Shipped On Time
|
271 |
10518
|
4/25/1997 12:00:00 AM
|
5/5/1997 12:00:00 AM
|
Shipped Late
|
272 |
10519
|
4/28/1997 12:00:00 AM
|
5/1/1997 12:00:00 AM
|
Shipped On Time
|
273 |
10520
|
4/29/1997 12:00:00 AM
|
5/1/1997 12:00:00 AM
|
Shipped On Time
|
274 |
10521
|
4/29/1997 12:00:00 AM
|
5/2/1997 12:00:00 AM
|
Shipped On Time
|
275 |
10522
|
4/30/1997 12:00:00 AM
|
5/6/1997 12:00:00 AM
|
Shipped On Time
|
276 |
10523
|
5/1/1997 12:00:00 AM
|
5/30/1997 12:00:00 AM
|
Shipped Late
|
277 |
10524
|
5/1/1997 12:00:00 AM
|
5/7/1997 12:00:00 AM
|
Shipped On Time
|
278 |
10525
|
5/2/1997 12:00:00 AM
|
5/23/1997 12:00:00 AM
|
Shipped Late
|
279 |
10526
|
5/5/1997 12:00:00 AM
|
5/15/1997 12:00:00 AM
|
Shipped Late
|
280 |
10527
|
5/5/1997 12:00:00 AM
|
5/7/1997 12:00:00 AM
|
Shipped On Time
|
281 |
10528
|
5/6/1997 12:00:00 AM
|
5/9/1997 12:00:00 AM
|
Shipped On Time
|
282 |
10529
|
5/7/1997 12:00:00 AM
|
5/9/1997 12:00:00 AM
|
Shipped On Time
|
283 |
10530
|
5/8/1997 12:00:00 AM
|
5/12/1997 12:00:00 AM
|
Shipped On Time
|
284 |
10531
|
5/8/1997 12:00:00 AM
|
5/19/1997 12:00:00 AM
|
Shipped Late
|
285 |
10532
|
5/9/1997 12:00:00 AM
|
5/12/1997 12:00:00 AM
|
Shipped On Time
|
286 |
10533
|
5/12/1997 12:00:00 AM
|
5/22/1997 12:00:00 AM
|
Shipped Late
|
287 |
10534
|
5/12/1997 12:00:00 AM
|
5/14/1997 12:00:00 AM
|
Shipped On Time
|
288 |
10535
|
5/13/1997 12:00:00 AM
|
5/21/1997 12:00:00 AM
|
Shipped Late
|
289 |
10536
|
5/14/1997 12:00:00 AM
|
6/6/1997 12:00:00 AM
|
Shipped Late
|
290 |
10537
|
5/14/1997 12:00:00 AM
|
5/19/1997 12:00:00 AM
|
Shipped On Time
|
291 |
10538
|
5/15/1997 12:00:00 AM
|
5/16/1997 12:00:00 AM
|
Shipped On Time
|
292 |
10539
|
5/16/1997 12:00:00 AM
|
5/23/1997 12:00:00 AM
|
Shipped On Time
|
293 |
10540
|
5/19/1997 12:00:00 AM
|
6/13/1997 12:00:00 AM
|
Shipped Late
|
294 |
10541
|
5/19/1997 12:00:00 AM
|
5/29/1997 12:00:00 AM
|
Shipped Late
|
295 |
10542
|
5/20/1997 12:00:00 AM
|
5/26/1997 12:00:00 AM
|
Shipped On Time
|
296 |
10543
|
5/21/1997 12:00:00 AM
|
5/23/1997 12:00:00 AM
|
Shipped On Time
|
297 |
10544
|
5/21/1997 12:00:00 AM
|
5/30/1997 12:00:00 AM
|
Shipped Late
|
298 |
10545
|
5/22/1997 12:00:00 AM
|
6/26/1997 12:00:00 AM
|
Shipped Late
|
299 |
10546
|
5/23/1997 12:00:00 AM
|
5/27/1997 12:00:00 AM
|
Shipped On Time
|
300 |
10547
|
5/23/1997 12:00:00 AM
|
6/2/1997 12:00:00 AM
|
Shipped Late
|
301 |
10548
|
5/26/1997 12:00:00 AM
|
6/2/1997 12:00:00 AM
|
Shipped On Time
|
302 |
10549
|
5/27/1997 12:00:00 AM
|
5/30/1997 12:00:00 AM
|
Shipped On Time
|
303 |
10550
|
5/28/1997 12:00:00 AM
|
6/6/1997 12:00:00 AM
|
Shipped Late
|
304 |
10551
|
5/28/1997 12:00:00 AM
|
6/6/1997 12:00:00 AM
|
Shipped Late
|
305 |
10552
|
5/29/1997 12:00:00 AM
|
6/5/1997 12:00:00 AM
|
Shipped On Time
|
306 |
10553
|
5/30/1997 12:00:00 AM
|
6/3/1997 12:00:00 AM
|
Shipped On Time
|
307 |
10554
|
5/30/1997 12:00:00 AM
|
6/5/1997 12:00:00 AM
|
Shipped On Time
|
308 |
10555
|
6/2/1997 12:00:00 AM
|
6/4/1997 12:00:00 AM
|
Shipped On Time
|
309 |
10556
|
6/3/1997 12:00:00 AM
|
6/13/1997 12:00:00 AM
|
Shipped Late
|
310 |
10557
|
6/3/1997 12:00:00 AM
|
6/6/1997 12:00:00 AM
|
Shipped On Time
|
311 |
10558
|
6/4/1997 12:00:00 AM
|
6/10/1997 12:00:00 AM
|
Shipped On Time
|
312 |
10559
|
6/5/1997 12:00:00 AM
|
6/13/1997 12:00:00 AM
|
Shipped Late
|
313 |
10560
|
6/6/1997 12:00:00 AM
|
6/9/1997 12:00:00 AM
|
Shipped On Time
|
314 |
10561
|
6/6/1997 12:00:00 AM
|
6/9/1997 12:00:00 AM
|
Shipped On Time
|
315 |
10562
|
6/9/1997 12:00:00 AM
|
6/12/1997 12:00:00 AM
|
Shipped On Time
|
316 |
10563
|
6/10/1997 12:00:00 AM
|
6/24/1997 12:00:00 AM
|
Shipped Late
|
317 |
10564
|
6/10/1997 12:00:00 AM
|
6/16/1997 12:00:00 AM
|
Shipped On Time
|
318 |
10565
|
6/11/1997 12:00:00 AM
|
6/18/1997 12:00:00 AM
|
Shipped On Time
|
319 |
10566
|
6/12/1997 12:00:00 AM
|
6/18/1997 12:00:00 AM
|
Shipped On Time
|
320 |
10567
|
6/12/1997 12:00:00 AM
|
6/17/1997 12:00:00 AM
|
Shipped On Time
|
321 |
10568
|
6/13/1997 12:00:00 AM
|
7/9/1997 12:00:00 AM
|
Shipped Late
|
322 |
10569
|
6/16/1997 12:00:00 AM
|
7/11/1997 12:00:00 AM
|
Shipped Late
|
323 |
10570
|
6/17/1997 12:00:00 AM
|
6/19/1997 12:00:00 AM
|
Shipped On Time
|
324 |
10571
|
6/17/1997 12:00:00 AM
|
7/4/1997 12:00:00 AM
|
Shipped Late
|
325 |
10572
|
6/18/1997 12:00:00 AM
|
6/25/1997 12:00:00 AM
|
Shipped On Time
|
326 |
10573
|
6/19/1997 12:00:00 AM
|
6/20/1997 12:00:00 AM
|
Shipped On Time
|
327 |
10574
|
6/19/1997 12:00:00 AM
|
6/30/1997 12:00:00 AM
|
Shipped Late
|
328 |
10575
|
6/20/1997 12:00:00 AM
|
6/30/1997 12:00:00 AM
|
Shipped Late
|
329 |
10576
|
6/23/1997 12:00:00 AM
|
6/30/1997 12:00:00 AM
|
Shipped On Time
|
330 |
10577
|
6/23/1997 12:00:00 AM
|
6/30/1997 12:00:00 AM
|
Shipped On Time
|
331 |
10578
|
6/24/1997 12:00:00 AM
|
7/25/1997 12:00:00 AM
|
Shipped Late
|
332 |
10579
|
6/25/1997 12:00:00 AM
|
7/4/1997 12:00:00 AM
|
Shipped Late
|
333 |
10580
|
6/26/1997 12:00:00 AM
|
7/1/1997 12:00:00 AM
|
Shipped On Time
|
334 |
10581
|
6/26/1997 12:00:00 AM
|
7/2/1997 12:00:00 AM
|
Shipped On Time
|
335 |
10582
|
6/27/1997 12:00:00 AM
|
7/14/1997 12:00:00 AM
|
Shipped Late
|
336 |
10583
|
6/30/1997 12:00:00 AM
|
7/4/1997 12:00:00 AM
|
Shipped On Time
|
337 |
10584
|
6/30/1997 12:00:00 AM
|
7/4/1997 12:00:00 AM
|
Shipped On Time
|
338 |
10585
|
7/1/1997 12:00:00 AM
|
7/10/1997 12:00:00 AM
|
Shipped Late
|
339 |
10586
|
7/2/1997 12:00:00 AM
|
7/9/1997 12:00:00 AM
|
Shipped On Time
|
340 |
10587
|
7/2/1997 12:00:00 AM
|
7/9/1997 12:00:00 AM
|
Shipped On Time
|
341 |
10588
|
7/3/1997 12:00:00 AM
|
7/10/1997 12:00:00 AM
|
Shipped On Time
|
342 |
10589
|
7/4/1997 12:00:00 AM
|
7/14/1997 12:00:00 AM
|
Shipped Late
|
343 |
10590
|
7/7/1997 12:00:00 AM
|
7/14/1997 12:00:00 AM
|
Shipped On Time
|
344 |
10591
|
7/7/1997 12:00:00 AM
|
7/16/1997 12:00:00 AM
|
Shipped Late
|
345 |
10592
|
7/8/1997 12:00:00 AM
|
7/16/1997 12:00:00 AM
|
Shipped Late
|
346 |
10593
|
7/9/1997 12:00:00 AM
|
8/13/1997 12:00:00 AM
|
Shipped Late
|
347 |
10594
|
7/9/1997 12:00:00 AM
|
7/16/1997 12:00:00 AM
|
Shipped On Time
|
348 |
10595
|
7/10/1997 12:00:00 AM
|
7/14/1997 12:00:00 AM
|
Shipped On Time
|
349 |
10596
|
7/11/1997 12:00:00 AM
|
8/12/1997 12:00:00 AM
|
Shipped Late
|
350 |
10597
|
7/11/1997 12:00:00 AM
|
7/18/1997 12:00:00 AM
|
Shipped On Time
|
351 |
10598
|
7/14/1997 12:00:00 AM
|
7/18/1997 12:00:00 AM
|
Shipped On Time
|
352 |
10599
|
7/15/1997 12:00:00 AM
|
7/21/1997 12:00:00 AM
|
Shipped On Time
|
353 |
10600
|
7/16/1997 12:00:00 AM
|
7/21/1997 12:00:00 AM
|
Shipped On Time
|
354 |
10601
|
7/16/1997 12:00:00 AM
|
7/22/1997 12:00:00 AM
|
Shipped On Time
|
355 |
10602
|
7/17/1997 12:00:00 AM
|
7/22/1997 12:00:00 AM
|
Shipped On Time
|
356 |
10603
|
7/18/1997 12:00:00 AM
|
8/8/1997 12:00:00 AM
|
Shipped Late
|
357 |
10604
|
7/18/1997 12:00:00 AM
|
7/29/1997 12:00:00 AM
|
Shipped Late
|
358 |
10605
|
7/21/1997 12:00:00 AM
|
7/29/1997 12:00:00 AM
|
Shipped Late
|
359 |
10606
|
7/22/1997 12:00:00 AM
|
7/31/1997 12:00:00 AM
|
Shipped Late
|
360 |
10607
|
7/22/1997 12:00:00 AM
|
7/25/1997 12:00:00 AM
|
Shipped On Time
|
361 |
10608
|
7/23/1997 12:00:00 AM
|
8/1/1997 12:00:00 AM
|
Shipped Late
|
362 |
10609
|
7/24/1997 12:00:00 AM
|
7/30/1997 12:00:00 AM
|
Shipped On Time
|
363 |
10610
|
7/25/1997 12:00:00 AM
|
8/6/1997 12:00:00 AM
|
Shipped Late
|
364 |
10611
|
7/25/1997 12:00:00 AM
|
8/1/1997 12:00:00 AM
|
Shipped On Time
|
365 |
10612
|
7/28/1997 12:00:00 AM
|
8/1/1997 12:00:00 AM
|
Shipped On Time
|
366 |
10613
|
7/29/1997 12:00:00 AM
|
8/1/1997 12:00:00 AM
|
Shipped On Time
|
367 |
10614
|
7/29/1997 12:00:00 AM
|
8/1/1997 12:00:00 AM
|
Shipped On Time
|
368 |
10615
|
7/30/1997 12:00:00 AM
|
8/6/1997 12:00:00 AM
|
Shipped On Time
|
369 |
10616
|
7/31/1997 12:00:00 AM
|
8/5/1997 12:00:00 AM
|
Shipped On Time
|
370 |
10617
|
7/31/1997 12:00:00 AM
|
8/4/1997 12:00:00 AM
|
Shipped On Time
|
371 |
10618
|
8/1/1997 12:00:00 AM
|
8/8/1997 12:00:00 AM
|
Shipped On Time
|
372 |
10619
|
8/4/1997 12:00:00 AM
|
8/7/1997 12:00:00 AM
|
Shipped On Time
|
373 |
10620
|
8/5/1997 12:00:00 AM
|
8/14/1997 12:00:00 AM
|
Shipped Late
|
374 |
10621
|
8/5/1997 12:00:00 AM
|
8/11/1997 12:00:00 AM
|
Shipped On Time
|
375 |
10622
|
8/6/1997 12:00:00 AM
|
8/11/1997 12:00:00 AM
|
Shipped On Time
|
376 |
10623
|
8/7/1997 12:00:00 AM
|
8/12/1997 12:00:00 AM
|
Shipped On Time
|
377 |
10624
|
8/7/1997 12:00:00 AM
|
8/19/1997 12:00:00 AM
|
Shipped Late
|
378 |
10625
|
8/8/1997 12:00:00 AM
|
8/14/1997 12:00:00 AM
|
Shipped On Time
|
379 |
10626
|
8/11/1997 12:00:00 AM
|
8/20/1997 12:00:00 AM
|
Shipped Late
|
380 |
10627
|
8/11/1997 12:00:00 AM
|
8/21/1997 12:00:00 AM
|
Shipped Late
|
381 |
10628
|
8/12/1997 12:00:00 AM
|
8/20/1997 12:00:00 AM
|
Shipped Late
|
382 |
10629
|
8/12/1997 12:00:00 AM
|
8/20/1997 12:00:00 AM
|
Shipped Late
|
383 |
10630
|
8/13/1997 12:00:00 AM
|
8/19/1997 12:00:00 AM
|
Shipped On Time
|
384 |
10631
|
8/14/1997 12:00:00 AM
|
8/15/1997 12:00:00 AM
|
Shipped On Time
|
385 |
10632
|
8/14/1997 12:00:00 AM
|
8/19/1997 12:00:00 AM
|
Shipped On Time
|
386 |
10633
|
8/15/1997 12:00:00 AM
|
8/18/1997 12:00:00 AM
|
Shipped On Time
|
387 |
10634
|
8/15/1997 12:00:00 AM
|
8/21/1997 12:00:00 AM
|
Shipped On Time
|
388 |
10635
|
8/18/1997 12:00:00 AM
|
8/21/1997 12:00:00 AM
|
Shipped On Time
|
389 |
10636
|
8/19/1997 12:00:00 AM
|
8/26/1997 12:00:00 AM
|
Shipped On Time
|
390 |
10637
|
8/19/1997 12:00:00 AM
|
8/26/1997 12:00:00 AM
|
Shipped On Time
|
391 |
10638
|
8/20/1997 12:00:00 AM
|
9/1/1997 12:00:00 AM
|
Shipped Late
|
392 |
10639
|
8/20/1997 12:00:00 AM
|
8/27/1997 12:00:00 AM
|
Shipped On Time
|
393 |
10640
|
8/21/1997 12:00:00 AM
|
8/28/1997 12:00:00 AM
|
Shipped On Time
|
394 |
10641
|
8/22/1997 12:00:00 AM
|
8/26/1997 12:00:00 AM
|
Shipped On Time
|
395 |
10642
|
8/22/1997 12:00:00 AM
|
9/5/1997 12:00:00 AM
|
Shipped Late
|
396 |
10643
|
8/25/1997 12:00:00 AM
|
9/2/1997 12:00:00 AM
|
Shipped Late
|
397 |
10644
|
8/25/1997 12:00:00 AM
|
9/1/1997 12:00:00 AM
|
Shipped On Time
|
398 |
10645
|
8/26/1997 12:00:00 AM
|
9/2/1997 12:00:00 AM
|
Shipped On Time
|
399 |
10646
|
8/27/1997 12:00:00 AM
|
9/3/1997 12:00:00 AM
|
Shipped On Time
|
400 |
10647
|
8/27/1997 12:00:00 AM
|
9/3/1997 12:00:00 AM
|
Shipped On Time
|
401 |
10648
|
8/28/1997 12:00:00 AM
|
9/9/1997 12:00:00 AM
|
Shipped Late
|
402 |
10649
|
8/28/1997 12:00:00 AM
|
8/29/1997 12:00:00 AM
|
Shipped On Time
|
403 |
10650
|
8/29/1997 12:00:00 AM
|
9/3/1997 12:00:00 AM
|
Shipped On Time
|
404 |
10651
|
9/1/1997 12:00:00 AM
|
9/11/1997 12:00:00 AM
|
Shipped Late
|
405 |
10652
|
9/1/1997 12:00:00 AM
|
9/8/1997 12:00:00 AM
|
Shipped On Time
|
406 |
10653
|
9/2/1997 12:00:00 AM
|
9/19/1997 12:00:00 AM
|
Shipped Late
|
407 |
10654
|
9/2/1997 12:00:00 AM
|
9/11/1997 12:00:00 AM
|
Shipped Late
|
408 |
10655
|
9/3/1997 12:00:00 AM
|
9/11/1997 12:00:00 AM
|
Shipped Late
|
409 |
10656
|
9/4/1997 12:00:00 AM
|
9/10/1997 12:00:00 AM
|
Shipped On Time
|
410 |
10657
|
9/4/1997 12:00:00 AM
|
9/15/1997 12:00:00 AM
|
Shipped Late
|
411 |
10658
|
9/5/1997 12:00:00 AM
|
9/8/1997 12:00:00 AM
|
Shipped On Time
|
412 |
10659
|
9/5/1997 12:00:00 AM
|
9/10/1997 12:00:00 AM
|
Shipped On Time
|
413 |
10660
|
9/8/1997 12:00:00 AM
|
10/15/1997 12:00:00 AM
|
Shipped Late
|
414 |
10661
|
9/9/1997 12:00:00 AM
|
9/15/1997 12:00:00 AM
|
Shipped On Time
|
415 |
10662
|
9/9/1997 12:00:00 AM
|
9/18/1997 12:00:00 AM
|
Shipped Late
|
416 |
10663
|
9/10/1997 12:00:00 AM
|
10/3/1997 12:00:00 AM
|
Shipped Late
|
417 |
10664
|
9/10/1997 12:00:00 AM
|
9/19/1997 12:00:00 AM
|
Shipped Late
|
418 |
10665
|
9/11/1997 12:00:00 AM
|
9/17/1997 12:00:00 AM
|
Shipped On Time
|
419 |
10666
|
9/12/1997 12:00:00 AM
|
9/22/1997 12:00:00 AM
|
Shipped Late
|
420 |
10667
|
9/12/1997 12:00:00 AM
|
9/19/1997 12:00:00 AM
|
Shipped On Time
|
421 |
10668
|
9/15/1997 12:00:00 AM
|
9/23/1997 12:00:00 AM
|
Shipped Late
|
422 |
10669
|
9/15/1997 12:00:00 AM
|
9/22/1997 12:00:00 AM
|
Shipped On Time
|
423 |
10670
|
9/16/1997 12:00:00 AM
|
9/18/1997 12:00:00 AM
|
Shipped On Time
|
424 |
10671
|
9/17/1997 12:00:00 AM
|
9/24/1997 12:00:00 AM
|
Shipped On Time
|
425 |
10672
|
9/17/1997 12:00:00 AM
|
9/26/1997 12:00:00 AM
|
Shipped Late
|
426 |
10673
|
9/18/1997 12:00:00 AM
|
9/19/1997 12:00:00 AM
|
Shipped On Time
|
427 |
10674
|
9/18/1997 12:00:00 AM
|
9/30/1997 12:00:00 AM
|
Shipped Late
|
428 |
10675
|
9/19/1997 12:00:00 AM
|
9/23/1997 12:00:00 AM
|
Shipped On Time
|
429 |
10676
|
9/22/1997 12:00:00 AM
|
9/29/1997 12:00:00 AM
|
Shipped On Time
|
430 |
10677
|
9/22/1997 12:00:00 AM
|
9/26/1997 12:00:00 AM
|
Shipped On Time
|
431 |
10678
|
9/23/1997 12:00:00 AM
|
10/16/1997 12:00:00 AM
|
Shipped Late
|
432 |
10679
|
9/23/1997 12:00:00 AM
|
9/30/1997 12:00:00 AM
|
Shipped On Time
|
433 |
10680
|
9/24/1997 12:00:00 AM
|
9/26/1997 12:00:00 AM
|
Shipped On Time
|
434 |
10681
|
9/25/1997 12:00:00 AM
|
9/30/1997 12:00:00 AM
|
Shipped On Time
|
435 |
10682
|
9/25/1997 12:00:00 AM
|
10/1/1997 12:00:00 AM
|
Shipped On Time
|
436 |
10683
|
9/26/1997 12:00:00 AM
|
10/1/1997 12:00:00 AM
|
Shipped On Time
|
437 |
10684
|
9/26/1997 12:00:00 AM
|
9/30/1997 12:00:00 AM
|
Shipped On Time
|
438 |
10685
|
9/29/1997 12:00:00 AM
|
10/3/1997 12:00:00 AM
|
Shipped On Time
|
439 |
10686
|
9/30/1997 12:00:00 AM
|
10/8/1997 12:00:00 AM
|
Shipped Late
|
440 |
10687
|
9/30/1997 12:00:00 AM
|
10/30/1997 12:00:00 AM
|
Shipped Late
|
441 |
10688
|
10/1/1997 12:00:00 AM
|
10/7/1997 12:00:00 AM
|
Shipped On Time
|
442 |
10689
|
10/1/1997 12:00:00 AM
|
10/7/1997 12:00:00 AM
|
Shipped On Time
|
443 |
10690
|
10/2/1997 12:00:00 AM
|
10/3/1997 12:00:00 AM
|
Shipped On Time
|
444 |
10691
|
10/3/1997 12:00:00 AM
|
10/22/1997 12:00:00 AM
|
Shipped Late
|
445 |
10692
|
10/3/1997 12:00:00 AM
|
10/13/1997 12:00:00 AM
|
Shipped Late
|
446 |
10693
|
10/6/1997 12:00:00 AM
|
10/10/1997 12:00:00 AM
|
Shipped On Time
|
447 |
10694
|
10/6/1997 12:00:00 AM
|
10/9/1997 12:00:00 AM
|
Shipped On Time
|
448 |
10695
|
10/7/1997 12:00:00 AM
|
10/14/1997 12:00:00 AM
|
Shipped On Time
|
449 |
10696
|
10/8/1997 12:00:00 AM
|
10/14/1997 12:00:00 AM
|
Shipped On Time
|
450 |
10697
|
10/8/1997 12:00:00 AM
|
10/14/1997 12:00:00 AM
|
Shipped On Time
|
451 |
10698
|
10/9/1997 12:00:00 AM
|
10/17/1997 12:00:00 AM
|
Shipped Late
|
452 |
10699
|
10/9/1997 12:00:00 AM
|
10/13/1997 12:00:00 AM
|
Shipped On Time
|
453 |
10700
|
10/10/1997 12:00:00 AM
|
10/16/1997 12:00:00 AM
|
Shipped On Time
|
454 |
10701
|
10/13/1997 12:00:00 AM
|
10/15/1997 12:00:00 AM
|
Shipped On Time
|
455 |
10702
|
10/13/1997 12:00:00 AM
|
10/21/1997 12:00:00 AM
|
Shipped Late
|
456 |
10703
|
10/14/1997 12:00:00 AM
|
10/20/1997 12:00:00 AM
|
Shipped On Time
|
457 |
10704
|
10/14/1997 12:00:00 AM
|
11/7/1997 12:00:00 AM
|
Shipped Late
|
458 |
10705
|
10/15/1997 12:00:00 AM
|
11/18/1997 12:00:00 AM
|
Shipped Late
|
459 |
10706
|
10/16/1997 12:00:00 AM
|
10/21/1997 12:00:00 AM
|
Shipped On Time
|
460 |
10707
|
10/16/1997 12:00:00 AM
|
10/23/1997 12:00:00 AM
|
Shipped On Time
|
461 |
10708
|
10/17/1997 12:00:00 AM
|
11/5/1997 12:00:00 AM
|
Shipped Late
|
462 |
10709
|
10/17/1997 12:00:00 AM
|
11/20/1997 12:00:00 AM
|
Shipped Late
|
463 |
10710
|
10/20/1997 12:00:00 AM
|
10/23/1997 12:00:00 AM
|
Shipped On Time
|
464 |
10711
|
10/21/1997 12:00:00 AM
|
10/29/1997 12:00:00 AM
|
Shipped Late
|
465 |
10712
|
10/21/1997 12:00:00 AM
|
10/31/1997 12:00:00 AM
|
Shipped Late
|
466 |
10713
|
10/22/1997 12:00:00 AM
|
10/24/1997 12:00:00 AM
|
Shipped On Time
|
467 |
10714
|
10/22/1997 12:00:00 AM
|
10/27/1997 12:00:00 AM
|
Shipped On Time
|
468 |
10715
|
10/23/1997 12:00:00 AM
|
10/29/1997 12:00:00 AM
|
Shipped On Time
|
469 |
10716
|
10/24/1997 12:00:00 AM
|
10/27/1997 12:00:00 AM
|
Shipped On Time
|
470 |
10717
|
10/24/1997 12:00:00 AM
|
10/29/1997 12:00:00 AM
|
Shipped On Time
|
471 |
10718
|
10/27/1997 12:00:00 AM
|
10/29/1997 12:00:00 AM
|
Shipped On Time
|
472 |
10719
|
10/27/1997 12:00:00 AM
|
11/5/1997 12:00:00 AM
|
Shipped Late
|
473 |
10720
|
10/28/1997 12:00:00 AM
|
11/5/1997 12:00:00 AM
|
Shipped Late
|
474 |
10721
|
10/29/1997 12:00:00 AM
|
10/31/1997 12:00:00 AM
|
Shipped On Time
|
475 |
10722
|
10/29/1997 12:00:00 AM
|
11/4/1997 12:00:00 AM
|
Shipped On Time
|
476 |
10723
|
10/30/1997 12:00:00 AM
|
11/25/1997 12:00:00 AM
|
Shipped Late
|
477 |
10724
|
10/30/1997 12:00:00 AM
|
11/5/1997 12:00:00 AM
|
Shipped On Time
|
478 |
10725
|
10/31/1997 12:00:00 AM
|
11/5/1997 12:00:00 AM
|
Shipped On Time
|
479 |
10726
|
11/3/1997 12:00:00 AM
|
12/5/1997 12:00:00 AM
|
Shipped Late
|
480 |
10727
|
11/3/1997 12:00:00 AM
|
12/5/1997 12:00:00 AM
|
Shipped Late
|
481 |
10728
|
11/4/1997 12:00:00 AM
|
11/11/1997 12:00:00 AM
|
Shipped On Time
|
482 |
10729
|
11/4/1997 12:00:00 AM
|
11/14/1997 12:00:00 AM
|
Shipped Late
|
483 |
10730
|
11/5/1997 12:00:00 AM
|
11/14/1997 12:00:00 AM
|
Shipped Late
|
484 |
10731
|
11/6/1997 12:00:00 AM
|
11/14/1997 12:00:00 AM
|
Shipped Late
|
485 |
10732
|
11/6/1997 12:00:00 AM
|
11/7/1997 12:00:00 AM
|
Shipped On Time
|
486 |
10733
|
11/7/1997 12:00:00 AM
|
11/10/1997 12:00:00 AM
|
Shipped On Time
|
487 |
10734
|
11/7/1997 12:00:00 AM
|
11/12/1997 12:00:00 AM
|
Shipped On Time
|
488 |
10735
|
11/10/1997 12:00:00 AM
|
11/21/1997 12:00:00 AM
|
Shipped Late
|
489 |
10736
|
11/11/1997 12:00:00 AM
|
11/21/1997 12:00:00 AM
|
Shipped Late
|
490 |
10737
|
11/11/1997 12:00:00 AM
|
11/18/1997 12:00:00 AM
|
Shipped On Time
|
491 |
10738
|
11/12/1997 12:00:00 AM
|
11/18/1997 12:00:00 AM
|
Shipped On Time
|
492 |
10739
|
11/12/1997 12:00:00 AM
|
11/17/1997 12:00:00 AM
|
Shipped On Time
|
493 |
10740
|
11/13/1997 12:00:00 AM
|
11/25/1997 12:00:00 AM
|
Shipped Late
|
494 |
10741
|
11/14/1997 12:00:00 AM
|
11/18/1997 12:00:00 AM
|
Shipped On Time
|
495 |
10742
|
11/14/1997 12:00:00 AM
|
11/18/1997 12:00:00 AM
|
Shipped On Time
|
496 |
10743
|
11/17/1997 12:00:00 AM
|
11/21/1997 12:00:00 AM
|
Shipped On Time
|
497 |
10744
|
11/17/1997 12:00:00 AM
|
11/24/1997 12:00:00 AM
|
Shipped On Time
|
498 |
10745
|
11/18/1997 12:00:00 AM
|
11/27/1997 12:00:00 AM
|
Shipped Late
|
499 |
10746
|
11/19/1997 12:00:00 AM
|
11/21/1997 12:00:00 AM
|
Shipped On Time
|
500 |
10747
|
11/19/1997 12:00:00 AM
|
11/26/1997 12:00:00 AM
|
Shipped On Time
|
501 |
10748
|
11/20/1997 12:00:00 AM
|
11/28/1997 12:00:00 AM
|
Shipped Late
|
502 |
10749
|
11/20/1997 12:00:00 AM
|
12/19/1997 12:00:00 AM
|
Shipped Late
|
503 |
10750
|
11/21/1997 12:00:00 AM
|
11/24/1997 12:00:00 AM
|
Shipped On Time
|
504 |
10751
|
11/24/1997 12:00:00 AM
|
12/3/1997 12:00:00 AM
|
Shipped Late
|
505 |
10752
|
11/24/1997 12:00:00 AM
|
11/28/1997 12:00:00 AM
|
Shipped On Time
|
506 |
10753
|
11/25/1997 12:00:00 AM
|
11/27/1997 12:00:00 AM
|
Shipped On Time
|
507 |
10754
|
11/25/1997 12:00:00 AM
|
11/27/1997 12:00:00 AM
|
Shipped On Time
|
508 |
10755
|
11/26/1997 12:00:00 AM
|
11/28/1997 12:00:00 AM
|
Shipped On Time
|
509 |
10756
|
11/27/1997 12:00:00 AM
|
12/2/1997 12:00:00 AM
|
Shipped On Time
|
510 |
10757
|
11/27/1997 12:00:00 AM
|
12/15/1997 12:00:00 AM
|
Shipped Late
|
511 |
10758
|
11/28/1997 12:00:00 AM
|
12/4/1997 12:00:00 AM
|
Shipped On Time
|
512 |
10759
|
11/28/1997 12:00:00 AM
|
12/12/1997 12:00:00 AM
|
Shipped Late
|
513 |
10760
|
12/1/1997 12:00:00 AM
|
12/10/1997 12:00:00 AM
|
Shipped Late
|
514 |
10761
|
12/2/1997 12:00:00 AM
|
12/8/1997 12:00:00 AM
|
Shipped On Time
|
515 |
10762
|
12/2/1997 12:00:00 AM
|
12/9/1997 12:00:00 AM
|
Shipped On Time
|
516 |
10763
|
12/3/1997 12:00:00 AM
|
12/8/1997 12:00:00 AM
|
Shipped On Time
|
517 |
10764
|
12/3/1997 12:00:00 AM
|
12/8/1997 12:00:00 AM
|
Shipped On Time
|
518 |
10765
|
12/4/1997 12:00:00 AM
|
12/9/1997 12:00:00 AM
|
Shipped On Time
|
519 |
10766
|
12/5/1997 12:00:00 AM
|
12/9/1997 12:00:00 AM
|
Shipped On Time
|
520 |
10767
|
12/5/1997 12:00:00 AM
|
12/15/1997 12:00:00 AM
|
Shipped Late
|
521 |
10768
|
12/8/1997 12:00:00 AM
|
12/15/1997 12:00:00 AM
|
Shipped On Time
|
522 |
10769
|
12/8/1997 12:00:00 AM
|
12/12/1997 12:00:00 AM
|
Shipped On Time
|
523 |
10770
|
12/9/1997 12:00:00 AM
|
12/17/1997 12:00:00 AM
|
Shipped Late
|
524 |
10771
|
12/10/1997 12:00:00 AM
|
1/2/1998 12:00:00 AM
|
Shipped Late
|
525 |
10772
|
12/10/1997 12:00:00 AM
|
12/19/1997 12:00:00 AM
|
Shipped Late
|
526 |
10773
|
12/11/1997 12:00:00 AM
|
12/16/1997 12:00:00 AM
|
Shipped On Time
|
527 |
10774
|
12/11/1997 12:00:00 AM
|
12/12/1997 12:00:00 AM
|
Shipped On Time
|
528 |
10775
|
12/12/1997 12:00:00 AM
|
12/26/1997 12:00:00 AM
|
Shipped Late
|
529 |
10776
|
12/15/1997 12:00:00 AM
|
12/18/1997 12:00:00 AM
|
Shipped On Time
|
530 |
10777
|
12/15/1997 12:00:00 AM
|
1/21/1998 12:00:00 AM
|
Shipped Late
|
531 |
10778
|
12/16/1997 12:00:00 AM
|
12/24/1997 12:00:00 AM
|
Shipped Late
|
532 |
10779
|
12/16/1997 12:00:00 AM
|
1/14/1998 12:00:00 AM
|
Shipped Late
|
533 |
10780
|
12/16/1997 12:00:00 AM
|
12/25/1997 12:00:00 AM
|
Shipped Late
|
534 |
10781
|
12/17/1997 12:00:00 AM
|
12/19/1997 12:00:00 AM
|
Shipped On Time
|
535 |
10782
|
12/17/1997 12:00:00 AM
|
12/22/1997 12:00:00 AM
|
Shipped On Time
|
536 |
10783
|
12/18/1997 12:00:00 AM
|
12/19/1997 12:00:00 AM
|
Shipped On Time
|
537 |
10784
|
12/18/1997 12:00:00 AM
|
12/22/1997 12:00:00 AM
|
Shipped On Time
|
538 |
10785
|
12/18/1997 12:00:00 AM
|
12/24/1997 12:00:00 AM
|
Shipped On Time
|
539 |
10786
|
12/19/1997 12:00:00 AM
|
12/23/1997 12:00:00 AM
|
Shipped On Time
|
540 |
10787
|
12/19/1997 12:00:00 AM
|
12/26/1997 12:00:00 AM
|
Shipped On Time
|
541 |
10788
|
12/22/1997 12:00:00 AM
|
1/19/1998 12:00:00 AM
|
Shipped Late
|
542 |
10789
|
12/22/1997 12:00:00 AM
|
12/31/1997 12:00:00 AM
|
Shipped Late
|
543 |
10790
|
12/22/1997 12:00:00 AM
|
12/26/1997 12:00:00 AM
|
Shipped On Time
|
544 |
10791
|
12/23/1997 12:00:00 AM
|
1/1/1998 12:00:00 AM
|
Shipped Late
|
545 |
10792
|
12/23/1997 12:00:00 AM
|
12/31/1997 12:00:00 AM
|
Shipped Late
|
546 |
10793
|
12/24/1997 12:00:00 AM
|
1/8/1998 12:00:00 AM
|
Shipped Late
|
547 |
10794
|
12/24/1997 12:00:00 AM
|
1/2/1998 12:00:00 AM
|
Shipped Late
|
548 |
10795
|
12/24/1997 12:00:00 AM
|
1/20/1998 12:00:00 AM
|
Shipped Late
|
549 |
10796
|
12/25/1997 12:00:00 AM
|
1/14/1998 12:00:00 AM
|
Shipped Late
|
550 |
10797
|
12/25/1997 12:00:00 AM
|
1/5/1998 12:00:00 AM
|
Shipped Late
|
551 |
10798
|
12/26/1997 12:00:00 AM
|
1/5/1998 12:00:00 AM
|
Shipped Late
|
552 |
10799
|
12/26/1997 12:00:00 AM
|
1/5/1998 12:00:00 AM
|
Shipped Late
|
553 |
10800
|
12/26/1997 12:00:00 AM
|
1/5/1998 12:00:00 AM
|
Shipped Late
|
554 |
10801
|
12/29/1997 12:00:00 AM
|
12/31/1997 12:00:00 AM
|
Shipped On Time
|
555 |
10802
|
12/29/1997 12:00:00 AM
|
1/2/1998 12:00:00 AM
|
Shipped On Time
|
556 |
10803
|
12/30/1997 12:00:00 AM
|
1/6/1998 12:00:00 AM
|
Shipped On Time
|
557 |
10804
|
12/30/1997 12:00:00 AM
|
1/7/1998 12:00:00 AM
|
Shipped Late
|
558 |
10805
|
12/30/1997 12:00:00 AM
|
1/9/1998 12:00:00 AM
|
Shipped Late
|
559 |
10806
|
12/31/1997 12:00:00 AM
|
1/5/1998 12:00:00 AM
|
Shipped On Time
|
560 |
10807
|
12/31/1997 12:00:00 AM
|
1/30/1998 12:00:00 AM
|
Shipped Late
|
561 |
10808
|
1/1/1998 12:00:00 AM
|
1/9/1998 12:00:00 AM
|
Shipped Late
|
562 |
10809
|
1/1/1998 12:00:00 AM
|
1/7/1998 12:00:00 AM
|
Shipped On Time
|
563 |
10810
|
1/1/1998 12:00:00 AM
|
1/7/1998 12:00:00 AM
|
Shipped On Time
|
564 |
10811
|
1/2/1998 12:00:00 AM
|
1/8/1998 12:00:00 AM
|
Shipped On Time
|
565 |
10812
|
1/2/1998 12:00:00 AM
|
1/12/1998 12:00:00 AM
|
Shipped Late
|
566 |
10813
|
1/5/1998 12:00:00 AM
|
1/9/1998 12:00:00 AM
|
Shipped On Time
|
567 |
10814
|
1/5/1998 12:00:00 AM
|
1/14/1998 12:00:00 AM
|
Shipped Late
|
568 |
10815
|
1/5/1998 12:00:00 AM
|
1/14/1998 12:00:00 AM
|
Shipped Late
|
569 |
10816
|
1/6/1998 12:00:00 AM
|
2/4/1998 12:00:00 AM
|
Shipped Late
|
570 |
10817
|
1/6/1998 12:00:00 AM
|
1/13/1998 12:00:00 AM
|
Shipped On Time
|
571 |
10818
|
1/7/1998 12:00:00 AM
|
1/12/1998 12:00:00 AM
|
Shipped On Time
|
572 |
10819
|
1/7/1998 12:00:00 AM
|
1/16/1998 12:00:00 AM
|
Shipped Late
|
573 |
10820
|
1/7/1998 12:00:00 AM
|
1/13/1998 12:00:00 AM
|
Shipped On Time
|
574 |
10821
|
1/8/1998 12:00:00 AM
|
1/15/1998 12:00:00 AM
|
Shipped On Time
|
575 |
10822
|
1/8/1998 12:00:00 AM
|
1/16/1998 12:00:00 AM
|
Shipped Late
|
576 |
10823
|
1/9/1998 12:00:00 AM
|
1/13/1998 12:00:00 AM
|
Shipped On Time
|
577 |
10824
|
1/9/1998 12:00:00 AM
|
1/30/1998 12:00:00 AM
|
Shipped Late
|
578 |
10825
|
1/9/1998 12:00:00 AM
|
1/14/1998 12:00:00 AM
|
Shipped On Time
|
579 |
10826
|
1/12/1998 12:00:00 AM
|
2/6/1998 12:00:00 AM
|
Shipped Late
|
580 |
10827
|
1/12/1998 12:00:00 AM
|
2/6/1998 12:00:00 AM
|
Shipped Late
|
581 |
10828
|
1/13/1998 12:00:00 AM
|
2/4/1998 12:00:00 AM
|
Shipped Late
|
582 |
10829
|
1/13/1998 12:00:00 AM
|
1/23/1998 12:00:00 AM
|
Shipped Late
|
583 |
10830
|
1/13/1998 12:00:00 AM
|
1/21/1998 12:00:00 AM
|
Shipped Late
|
584 |
10831
|
1/14/1998 12:00:00 AM
|
1/23/1998 12:00:00 AM
|
Shipped Late
|
585 |
10832
|
1/14/1998 12:00:00 AM
|
1/19/1998 12:00:00 AM
|
Shipped On Time
|
586 |
10833
|
1/15/1998 12:00:00 AM
|
1/23/1998 12:00:00 AM
|
Shipped Late
|
587 |
10834
|
1/15/1998 12:00:00 AM
|
1/19/1998 12:00:00 AM
|
Shipped On Time
|
588 |
10835
|
1/15/1998 12:00:00 AM
|
1/21/1998 12:00:00 AM
|
Shipped On Time
|
589 |
10836
|
1/16/1998 12:00:00 AM
|
1/21/1998 12:00:00 AM
|
Shipped On Time
|
590 |
10837
|
1/16/1998 12:00:00 AM
|
1/23/1998 12:00:00 AM
|
Shipped On Time
|
591 |
10838
|
1/19/1998 12:00:00 AM
|
1/23/1998 12:00:00 AM
|
Shipped On Time
|
592 |
10839
|
1/19/1998 12:00:00 AM
|
1/22/1998 12:00:00 AM
|
Shipped On Time
|
593 |
10840
|
1/19/1998 12:00:00 AM
|
2/16/1998 12:00:00 AM
|
Shipped Late
|
594 |
10841
|
1/20/1998 12:00:00 AM
|
1/29/1998 12:00:00 AM
|
Shipped Late
|
595 |
10842
|
1/20/1998 12:00:00 AM
|
1/29/1998 12:00:00 AM
|
Shipped Late
|
596 |
10843
|
1/21/1998 12:00:00 AM
|
1/26/1998 12:00:00 AM
|
Shipped On Time
|
597 |
10844
|
1/21/1998 12:00:00 AM
|
1/26/1998 12:00:00 AM
|
Shipped On Time
|
598 |
10845
|
1/21/1998 12:00:00 AM
|
1/30/1998 12:00:00 AM
|
Shipped Late
|
599 |
10846
|
1/22/1998 12:00:00 AM
|
1/23/1998 12:00:00 AM
|
Shipped On Time
|
600 |
10847
|
1/22/1998 12:00:00 AM
|
2/10/1998 12:00:00 AM
|
Shipped Late
|
601 |
10848
|
1/23/1998 12:00:00 AM
|
1/29/1998 12:00:00 AM
|
Shipped On Time
|
602 |
10849
|
1/23/1998 12:00:00 AM
|
1/30/1998 12:00:00 AM
|
Shipped On Time
|
603 |
10850
|
1/23/1998 12:00:00 AM
|
1/30/1998 12:00:00 AM
|
Shipped On Time
|
604 |
10851
|
1/26/1998 12:00:00 AM
|
2/2/1998 12:00:00 AM
|
Shipped On Time
|
605 |
10852
|
1/26/1998 12:00:00 AM
|
1/30/1998 12:00:00 AM
|
Shipped On Time
|
606 |
10853
|
1/27/1998 12:00:00 AM
|
2/3/1998 12:00:00 AM
|
Shipped On Time
|
607 |
10854
|
1/27/1998 12:00:00 AM
|
2/5/1998 12:00:00 AM
|
Shipped Late
|
608 |
10855
|
1/27/1998 12:00:00 AM
|
2/4/1998 12:00:00 AM
|
Shipped Late
|
609 |
10856
|
1/28/1998 12:00:00 AM
|
2/10/1998 12:00:00 AM
|
Shipped Late
|
610 |
10857
|
1/28/1998 12:00:00 AM
|
2/6/1998 12:00:00 AM
|
Shipped Late
|
611 |
10858
|
1/29/1998 12:00:00 AM
|
2/3/1998 12:00:00 AM
|
Shipped On Time
|
612 |
10859
|
1/29/1998 12:00:00 AM
|
2/2/1998 12:00:00 AM
|
Shipped On Time
|
613 |
10860
|
1/29/1998 12:00:00 AM
|
2/4/1998 12:00:00 AM
|
Shipped On Time
|
614 |
10861
|
1/30/1998 12:00:00 AM
|
2/17/1998 12:00:00 AM
|
Shipped Late
|
615 |
10862
|
1/30/1998 12:00:00 AM
|
2/2/1998 12:00:00 AM
|
Shipped On Time
|
616 |
10863
|
2/2/1998 12:00:00 AM
|
2/17/1998 12:00:00 AM
|
Shipped Late
|
617 |
10864
|
2/2/1998 12:00:00 AM
|
2/9/1998 12:00:00 AM
|
Shipped On Time
|
618 |
10865
|
2/2/1998 12:00:00 AM
|
2/12/1998 12:00:00 AM
|
Shipped Late
|
619 |
10866
|
2/3/1998 12:00:00 AM
|
2/12/1998 12:00:00 AM
|
Shipped Late
|
620 |
10867
|
2/3/1998 12:00:00 AM
|
2/11/1998 12:00:00 AM
|
Shipped Late
|
621 |
10868
|
2/4/1998 12:00:00 AM
|
2/23/1998 12:00:00 AM
|
Shipped Late
|
622 |
10869
|
2/4/1998 12:00:00 AM
|
2/9/1998 12:00:00 AM
|
Shipped On Time
|
623 |
10870
|
2/4/1998 12:00:00 AM
|
2/13/1998 12:00:00 AM
|
Shipped Late
|
624 |
10871
|
2/5/1998 12:00:00 AM
|
2/10/1998 12:00:00 AM
|
Shipped On Time
|
625 |
10872
|
2/5/1998 12:00:00 AM
|
2/9/1998 12:00:00 AM
|
Shipped On Time
|
626 |
10873
|
2/6/1998 12:00:00 AM
|
2/9/1998 12:00:00 AM
|
Shipped On Time
|
627 |
10874
|
2/6/1998 12:00:00 AM
|
2/11/1998 12:00:00 AM
|
Shipped On Time
|
628 |
10875
|
2/6/1998 12:00:00 AM
|
3/3/1998 12:00:00 AM
|
Shipped Late
|
629 |
10876
|
2/9/1998 12:00:00 AM
|
2/12/1998 12:00:00 AM
|
Shipped On Time
|
630 |
10877
|
2/9/1998 12:00:00 AM
|
2/19/1998 12:00:00 AM
|
Shipped Late
|
631 |
10878
|
2/10/1998 12:00:00 AM
|
2/12/1998 12:00:00 AM
|
Shipped On Time
|
632 |
10879
|
2/10/1998 12:00:00 AM
|
2/12/1998 12:00:00 AM
|
Shipped On Time
|
633 |
10880
|
2/10/1998 12:00:00 AM
|
2/18/1998 12:00:00 AM
|
Shipped Late
|
634 |
10881
|
2/11/1998 12:00:00 AM
|
2/18/1998 12:00:00 AM
|
Shipped On Time
|
635 |
10882
|
2/11/1998 12:00:00 AM
|
2/20/1998 12:00:00 AM
|
Shipped Late
|
636 |
10883
|
2/12/1998 12:00:00 AM
|
2/20/1998 12:00:00 AM
|
Shipped Late
|
637 |
10884
|
2/12/1998 12:00:00 AM
|
2/13/1998 12:00:00 AM
|
Shipped On Time
|
638 |
10885
|
2/12/1998 12:00:00 AM
|
2/18/1998 12:00:00 AM
|
Shipped On Time
|
639 |
10886
|
2/13/1998 12:00:00 AM
|
3/2/1998 12:00:00 AM
|
Shipped Late
|
640 |
10887
|
2/13/1998 12:00:00 AM
|
2/16/1998 12:00:00 AM
|
Shipped On Time
|
641 |
10888
|
2/16/1998 12:00:00 AM
|
2/23/1998 12:00:00 AM
|
Shipped On Time
|
642 |
10889
|
2/16/1998 12:00:00 AM
|
2/23/1998 12:00:00 AM
|
Shipped On Time
|
643 |
10890
|
2/16/1998 12:00:00 AM
|
2/18/1998 12:00:00 AM
|
Shipped On Time
|
644 |
10891
|
2/17/1998 12:00:00 AM
|
2/19/1998 12:00:00 AM
|
Shipped On Time
|
645 |
10892
|
2/17/1998 12:00:00 AM
|
2/19/1998 12:00:00 AM
|
Shipped On Time
|
646 |
10893
|
2/18/1998 12:00:00 AM
|
2/20/1998 12:00:00 AM
|
Shipped On Time
|
647 |
10894
|
2/18/1998 12:00:00 AM
|
2/20/1998 12:00:00 AM
|
Shipped On Time
|
648 |
10895
|
2/18/1998 12:00:00 AM
|
2/23/1998 12:00:00 AM
|
Shipped On Time
|
649 |
10896
|
2/19/1998 12:00:00 AM
|
2/27/1998 12:00:00 AM
|
Shipped Late
|
650 |
10897
|
2/19/1998 12:00:00 AM
|
2/25/1998 12:00:00 AM
|
Shipped On Time
|
651 |
10898
|
2/20/1998 12:00:00 AM
|
3/6/1998 12:00:00 AM
|
Shipped Late
|
652 |
10899
|
2/20/1998 12:00:00 AM
|
2/26/1998 12:00:00 AM
|
Shipped On Time
|
653 |
10900
|
2/20/1998 12:00:00 AM
|
3/4/1998 12:00:00 AM
|
Shipped Late
|
654 |
10901
|
2/23/1998 12:00:00 AM
|
2/26/1998 12:00:00 AM
|
Shipped On Time
|
655 |
10902
|
2/23/1998 12:00:00 AM
|
3/3/1998 12:00:00 AM
|
Shipped Late
|
656 |
10903
|
2/24/1998 12:00:00 AM
|
3/4/1998 12:00:00 AM
|
Shipped Late
|
657 |
10904
|
2/24/1998 12:00:00 AM
|
2/27/1998 12:00:00 AM
|
Shipped On Time
|
658 |
10905
|
2/24/1998 12:00:00 AM
|
3/6/1998 12:00:00 AM
|
Shipped Late
|
659 |
10906
|
2/25/1998 12:00:00 AM
|
3/3/1998 12:00:00 AM
|
Shipped On Time
|
660 |
10907
|
2/25/1998 12:00:00 AM
|
2/27/1998 12:00:00 AM
|
Shipped On Time
|
661 |
10908
|
2/26/1998 12:00:00 AM
|
3/6/1998 12:00:00 AM
|
Shipped Late
|
662 |
10909
|
2/26/1998 12:00:00 AM
|
3/10/1998 12:00:00 AM
|
Shipped Late
|
663 |
10910
|
2/26/1998 12:00:00 AM
|
3/4/1998 12:00:00 AM
|
Shipped On Time
|
664 |
10911
|
2/26/1998 12:00:00 AM
|
3/5/1998 12:00:00 AM
|
Shipped On Time
|
665 |
10912
|
2/26/1998 12:00:00 AM
|
3/18/1998 12:00:00 AM
|
Shipped Late
|
666 |
10913
|
2/26/1998 12:00:00 AM
|
3/4/1998 12:00:00 AM
|
Shipped On Time
|
667 |
10914
|
2/27/1998 12:00:00 AM
|
3/2/1998 12:00:00 AM
|
Shipped On Time
|
668 |
10915
|
2/27/1998 12:00:00 AM
|
3/2/1998 12:00:00 AM
|
Shipped On Time
|
669 |
10916
|
2/27/1998 12:00:00 AM
|
3/9/1998 12:00:00 AM
|
Shipped Late
|
670 |
10917
|
3/2/1998 12:00:00 AM
|
3/11/1998 12:00:00 AM
|
Shipped Late
|
671 |
10918
|
3/2/1998 12:00:00 AM
|
3/11/1998 12:00:00 AM
|
Shipped Late
|
672 |
10919
|
3/2/1998 12:00:00 AM
|
3/4/1998 12:00:00 AM
|
Shipped On Time
|
673 |
10920
|
3/3/1998 12:00:00 AM
|
3/9/1998 12:00:00 AM
|
Shipped On Time
|
674 |
10921
|
3/3/1998 12:00:00 AM
|
3/9/1998 12:00:00 AM
|
Shipped On Time
|
675 |
10922
|
3/3/1998 12:00:00 AM
|
3/5/1998 12:00:00 AM
|
Shipped On Time
|
676 |
10923
|
3/3/1998 12:00:00 AM
|
3/13/1998 12:00:00 AM
|
Shipped Late
|
677 |
10924
|
3/4/1998 12:00:00 AM
|
4/8/1998 12:00:00 AM
|
Shipped Late
|
678 |
10925
|
3/4/1998 12:00:00 AM
|
3/13/1998 12:00:00 AM
|
Shipped Late
|
679 |
10926
|
3/4/1998 12:00:00 AM
|
3/11/1998 12:00:00 AM
|
Shipped On Time
|
680 |
10927
|
3/5/1998 12:00:00 AM
|
4/8/1998 12:00:00 AM
|
Shipped Late
|
681 |
10928
|
3/5/1998 12:00:00 AM
|
3/18/1998 12:00:00 AM
|
Shipped Late
|
682 |
10929
|
3/5/1998 12:00:00 AM
|
3/12/1998 12:00:00 AM
|
Shipped On Time
|
683 |
10930
|
3/6/1998 12:00:00 AM
|
3/18/1998 12:00:00 AM
|
Shipped Late
|
684 |
10931
|
3/6/1998 12:00:00 AM
|
3/19/1998 12:00:00 AM
|
Shipped Late
|
685 |
10932
|
3/6/1998 12:00:00 AM
|
3/24/1998 12:00:00 AM
|
Shipped Late
|
686 |
10933
|
3/6/1998 12:00:00 AM
|
3/16/1998 12:00:00 AM
|
Shipped Late
|
687 |
10934
|
3/9/1998 12:00:00 AM
|
3/12/1998 12:00:00 AM
|
Shipped On Time
|
688 |
10935
|
3/9/1998 12:00:00 AM
|
3/18/1998 12:00:00 AM
|
Shipped Late
|
689 |
10936
|
3/9/1998 12:00:00 AM
|
3/18/1998 12:00:00 AM
|
Shipped Late
|
690 |
10937
|
3/10/1998 12:00:00 AM
|
3/13/1998 12:00:00 AM
|
Shipped On Time
|
691 |
10938
|
3/10/1998 12:00:00 AM
|
3/16/1998 12:00:00 AM
|
Shipped On Time
|
692 |
10939
|
3/10/1998 12:00:00 AM
|
3/13/1998 12:00:00 AM
|
Shipped On Time
|
693 |
10940
|
3/11/1998 12:00:00 AM
|
3/23/1998 12:00:00 AM
|
Shipped Late
|
694 |
10941
|
3/11/1998 12:00:00 AM
|
3/20/1998 12:00:00 AM
|
Shipped Late
|
695 |
10942
|
3/11/1998 12:00:00 AM
|
3/18/1998 12:00:00 AM
|
Shipped On Time
|
696 |
10943
|
3/11/1998 12:00:00 AM
|
3/19/1998 12:00:00 AM
|
Shipped Late
|
697 |
10944
|
3/12/1998 12:00:00 AM
|
3/13/1998 12:00:00 AM
|
Shipped On Time
|
698 |
10945
|
3/12/1998 12:00:00 AM
|
3/18/1998 12:00:00 AM
|
Shipped On Time
|
699 |
10946
|
3/12/1998 12:00:00 AM
|
3/19/1998 12:00:00 AM
|
Shipped On Time
|
700 |
10947
|
3/13/1998 12:00:00 AM
|
3/16/1998 12:00:00 AM
|
Shipped On Time
|
701 |
10948
|
3/13/1998 12:00:00 AM
|
3/19/1998 12:00:00 AM
|
Shipped On Time
|
702 |
10949
|
3/13/1998 12:00:00 AM
|
3/17/1998 12:00:00 AM
|
Shipped On Time
|
703 |
10950
|
3/16/1998 12:00:00 AM
|
3/23/1998 12:00:00 AM
|
Shipped On Time
|
704 |
10951
|
3/16/1998 12:00:00 AM
|
4/7/1998 12:00:00 AM
|
Shipped Late
|
705 |
10952
|
3/16/1998 12:00:00 AM
|
3/24/1998 12:00:00 AM
|
Shipped Late
|
706 |
10953
|
3/16/1998 12:00:00 AM
|
3/25/1998 12:00:00 AM
|
Shipped Late
|
707 |
10954
|
3/17/1998 12:00:00 AM
|
3/20/1998 12:00:00 AM
|
Shipped On Time
|
708 |
10955
|
3/17/1998 12:00:00 AM
|
3/20/1998 12:00:00 AM
|
Shipped On Time
|
709 |
10956
|
3/17/1998 12:00:00 AM
|
3/20/1998 12:00:00 AM
|
Shipped On Time
|
710 |
10957
|
3/18/1998 12:00:00 AM
|
3/27/1998 12:00:00 AM
|
Shipped Late
|
711 |
10958
|
3/18/1998 12:00:00 AM
|
3/27/1998 12:00:00 AM
|
Shipped Late
|
712 |
10959
|
3/18/1998 12:00:00 AM
|
3/23/1998 12:00:00 AM
|
Shipped On Time
|
713 |
10960
|
3/19/1998 12:00:00 AM
|
4/8/1998 12:00:00 AM
|
Shipped Late
|
714 |
10961
|
3/19/1998 12:00:00 AM
|
3/30/1998 12:00:00 AM
|
Shipped Late
|
715 |
10962
|
3/19/1998 12:00:00 AM
|
3/23/1998 12:00:00 AM
|
Shipped On Time
|
716 |
10963
|
3/19/1998 12:00:00 AM
|
3/26/1998 12:00:00 AM
|
Shipped On Time
|
717 |
10964
|
3/20/1998 12:00:00 AM
|
3/24/1998 12:00:00 AM
|
Shipped On Time
|
718 |
10965
|
3/20/1998 12:00:00 AM
|
3/30/1998 12:00:00 AM
|
Shipped Late
|
719 |
10966
|
3/20/1998 12:00:00 AM
|
4/8/1998 12:00:00 AM
|
Shipped Late
|
720 |
10967
|
3/23/1998 12:00:00 AM
|
4/2/1998 12:00:00 AM
|
Shipped Late
|
721 |
10968
|
3/23/1998 12:00:00 AM
|
4/1/1998 12:00:00 AM
|
Shipped Late
|
722 |
10969
|
3/23/1998 12:00:00 AM
|
3/30/1998 12:00:00 AM
|
Shipped On Time
|
723 |
10970
|
3/24/1998 12:00:00 AM
|
4/24/1998 12:00:00 AM
|
Shipped Late
|
724 |
10971
|
3/24/1998 12:00:00 AM
|
4/2/1998 12:00:00 AM
|
Shipped Late
|
725 |
10972
|
3/24/1998 12:00:00 AM
|
3/26/1998 12:00:00 AM
|
Shipped On Time
|
726 |
10973
|
3/24/1998 12:00:00 AM
|
3/27/1998 12:00:00 AM
|
Shipped On Time
|
727 |
10974
|
3/25/1998 12:00:00 AM
|
4/3/1998 12:00:00 AM
|
Shipped Late
|
728 |
10975
|
3/25/1998 12:00:00 AM
|
3/27/1998 12:00:00 AM
|
Shipped On Time
|
729 |
10976
|
3/25/1998 12:00:00 AM
|
4/3/1998 12:00:00 AM
|
Shipped Late
|
730 |
10977
|
3/26/1998 12:00:00 AM
|
4/10/1998 12:00:00 AM
|
Shipped Late
|
731 |
10978
|
3/26/1998 12:00:00 AM
|
4/23/1998 12:00:00 AM
|
Shipped Late
|
732 |
10979
|
3/26/1998 12:00:00 AM
|
3/31/1998 12:00:00 AM
|
Shipped On Time
|
733 |
10980
|
3/27/1998 12:00:00 AM
|
4/17/1998 12:00:00 AM
|
Shipped Late
|
734 |
10981
|
3/27/1998 12:00:00 AM
|
4/2/1998 12:00:00 AM
|
Shipped On Time
|
735 |
10982
|
3/27/1998 12:00:00 AM
|
4/8/1998 12:00:00 AM
|
Shipped Late
|
736 |
10983
|
3/27/1998 12:00:00 AM
|
4/6/1998 12:00:00 AM
|
Shipped Late
|
737 |
10984
|
3/30/1998 12:00:00 AM
|
4/3/1998 12:00:00 AM
|
Shipped On Time
|
738 |
10985
|
3/30/1998 12:00:00 AM
|
4/2/1998 12:00:00 AM
|
Shipped On Time
|
739 |
10986
|
3/30/1998 12:00:00 AM
|
4/21/1998 12:00:00 AM
|
Shipped Late
|
740 |
10987
|
3/31/1998 12:00:00 AM
|
4/6/1998 12:00:00 AM
|
Shipped On Time
|
741 |
10988
|
3/31/1998 12:00:00 AM
|
4/10/1998 12:00:00 AM
|
Shipped Late
|
742 |
10989
|
3/31/1998 12:00:00 AM
|
4/2/1998 12:00:00 AM
|
Shipped On Time
|
743 |
10990
|
4/1/1998 12:00:00 AM
|
4/7/1998 12:00:00 AM
|
Shipped On Time
|
744 |
10991
|
4/1/1998 12:00:00 AM
|
4/7/1998 12:00:00 AM
|
Shipped On Time
|
745 |
10992
|
4/1/1998 12:00:00 AM
|
4/3/1998 12:00:00 AM
|
Shipped On Time
|
746 |
10993
|
4/1/1998 12:00:00 AM
|
4/10/1998 12:00:00 AM
|
Shipped Late
|
747 |
10994
|
4/2/1998 12:00:00 AM
|
4/9/1998 12:00:00 AM
|
Shipped On Time
|
748 |
10995
|
4/2/1998 12:00:00 AM
|
4/6/1998 12:00:00 AM
|
Shipped On Time
|
749 |
10996
|
4/2/1998 12:00:00 AM
|
4/10/1998 12:00:00 AM
|
Shipped Late
|
750 |
10997
|
4/3/1998 12:00:00 AM
|
4/13/1998 12:00:00 AM
|
Shipped Late
|
751 |
10998
|
4/3/1998 12:00:00 AM
|
4/17/1998 12:00:00 AM
|
Shipped Late
|
752 |
10999
|
4/3/1998 12:00:00 AM
|
4/10/1998 12:00:00 AM
|
Shipped On Time
|
753 |
11000
|
4/6/1998 12:00:00 AM
|
4/14/1998 12:00:00 AM
|
Shipped Late
|
754 |
11001
|
4/6/1998 12:00:00 AM
|
4/14/1998 12:00:00 AM
|
Shipped Late
|
755 |
11002
|
4/6/1998 12:00:00 AM
|
4/16/1998 12:00:00 AM
|
Shipped Late
|
756 |
11003
|
4/6/1998 12:00:00 AM
|
4/8/1998 12:00:00 AM
|
Shipped On Time
|
757 |
11004
|
4/7/1998 12:00:00 AM
|
4/20/1998 12:00:00 AM
|
Shipped Late
|
758 |
11005
|
4/7/1998 12:00:00 AM
|
4/10/1998 12:00:00 AM
|
Shipped On Time
|
759 |
11006
|
4/7/1998 12:00:00 AM
|
4/15/1998 12:00:00 AM
|
Shipped Late
|
760 |
11007
|
4/8/1998 12:00:00 AM
|
4/13/1998 12:00:00 AM
|
Shipped On Time
|
761 |
11008
|
4/8/1998 12:00:00 AM
|
1/1/0001 12:00:00 AM
|
Not Shipped
|
762 |
11009
|
4/8/1998 12:00:00 AM
|
4/10/1998 12:00:00 AM
|
Shipped On Time
|
763 |
11010
|
4/9/1998 12:00:00 AM
|
4/21/1998 12:00:00 AM
|
Shipped Late
|
764 |
11011
|
4/9/1998 12:00:00 AM
|
4/13/1998 12:00:00 AM
|
Shipped On Time
|
765 |
11012
|
4/9/1998 12:00:00 AM
|
4/17/1998 12:00:00 AM
|
Shipped Late
|
766 |
11013
|
4/9/1998 12:00:00 AM
|
4/10/1998 12:00:00 AM
|
Shipped On Time
|
767 |
11014
|
4/10/1998 12:00:00 AM
|
4/15/1998 12:00:00 AM
|
Shipped On Time
|
768 |
11015
|
4/10/1998 12:00:00 AM
|
4/20/1998 12:00:00 AM
|
Shipped Late
|
769 |
11016
|
4/10/1998 12:00:00 AM
|
4/13/1998 12:00:00 AM
|
Shipped On Time
|
770 |
11017
|
4/13/1998 12:00:00 AM
|
4/20/1998 12:00:00 AM
|
Shipped On Time
|
771 |
11018
|
4/13/1998 12:00:00 AM
|
4/16/1998 12:00:00 AM
|
Shipped On Time
|
772 |
11019
|
4/13/1998 12:00:00 AM
|
1/1/0001 12:00:00 AM
|
Not Shipped
|
773 |
11020
|
4/14/1998 12:00:00 AM
|
4/16/1998 12:00:00 AM
|
Shipped On Time
|
774 |
11021
|
4/14/1998 12:00:00 AM
|
4/21/1998 12:00:00 AM
|
Shipped On Time
|
775 |
11022
|
4/14/1998 12:00:00 AM
|
5/4/1998 12:00:00 AM
|
Shipped Late
|
776 |
11023
|
4/14/1998 12:00:00 AM
|
4/24/1998 12:00:00 AM
|
Shipped Late
|
777 |
11024
|
4/15/1998 12:00:00 AM
|
4/20/1998 12:00:00 AM
|
Shipped On Time
|
778 |
11025
|
4/15/1998 12:00:00 AM
|
4/24/1998 12:00:00 AM
|
Shipped Late
|
779 |
11026
|
4/15/1998 12:00:00 AM
|
4/28/1998 12:00:00 AM
|
Shipped Late
|
780 |
11027
|
4/16/1998 12:00:00 AM
|
4/20/1998 12:00:00 AM
|
Shipped On Time
|
781 |
11028
|
4/16/1998 12:00:00 AM
|
4/22/1998 12:00:00 AM
|
Shipped On Time
|
782 |
11029
|
4/16/1998 12:00:00 AM
|
4/27/1998 12:00:00 AM
|
Shipped Late
|
783 |
11030
|
4/17/1998 12:00:00 AM
|
4/27/1998 12:00:00 AM
|
Shipped Late
|
784 |
11031
|
4/17/1998 12:00:00 AM
|
4/24/1998 12:00:00 AM
|
Shipped On Time
|
785 |
11032
|
4/17/1998 12:00:00 AM
|
4/23/1998 12:00:00 AM
|
Shipped On Time
|
786 |
11033
|
4/17/1998 12:00:00 AM
|
4/23/1998 12:00:00 AM
|
Shipped On Time
|
787 |
11034
|
4/20/1998 12:00:00 AM
|
4/27/1998 12:00:00 AM
|
Shipped On Time
|
788 |
11035
|
4/20/1998 12:00:00 AM
|
4/24/1998 12:00:00 AM
|
Shipped On Time
|
789 |
11036
|
4/20/1998 12:00:00 AM
|
4/22/1998 12:00:00 AM
|
Shipped On Time
|
790 |
11037
|
4/21/1998 12:00:00 AM
|
4/27/1998 12:00:00 AM
|
Shipped On Time
|
791 |
11038
|
4/21/1998 12:00:00 AM
|
4/30/1998 12:00:00 AM
|
Shipped Late
|
792 |
11039
|
4/21/1998 12:00:00 AM
|
1/1/0001 12:00:00 AM
|
Not Shipped
|
793 |
11040
|
4/22/1998 12:00:00 AM
|
1/1/0001 12:00:00 AM
|
Not Shipped
|
794 |
11041
|
4/22/1998 12:00:00 AM
|
4/28/1998 12:00:00 AM
|
Shipped On Time
|
795 |
11042
|
4/22/1998 12:00:00 AM
|
5/1/1998 12:00:00 AM
|
Shipped Late
|
796 |
11043
|
4/22/1998 12:00:00 AM
|
4/29/1998 12:00:00 AM
|
Shipped On Time
|
797 |
11044
|
4/23/1998 12:00:00 AM
|
5/1/1998 12:00:00 AM
|
Shipped Late
|
798 |
11045
|
4/23/1998 12:00:00 AM
|
1/1/0001 12:00:00 AM
|
Not Shipped
|
799 |
11046
|
4/23/1998 12:00:00 AM
|
4/24/1998 12:00:00 AM
|
Shipped On Time
|
800 |
11047
|
4/24/1998 12:00:00 AM
|
5/1/1998 12:00:00 AM
|
Shipped On Time
|
801 |
11048
|
4/24/1998 12:00:00 AM
|
4/30/1998 12:00:00 AM
|
Shipped On Time
|
802 |
11049
|
4/24/1998 12:00:00 AM
|
5/4/1998 12:00:00 AM
|
Shipped Late
|
803 |
11050
|
4/27/1998 12:00:00 AM
|
5/5/1998 12:00:00 AM
|
Shipped Late
|
804 |
11051
|
4/27/1998 12:00:00 AM
|
1/1/0001 12:00:00 AM
|
Not Shipped
|
805 |
11052
|
4/27/1998 12:00:00 AM
|
5/1/1998 12:00:00 AM
|
Shipped On Time
|
806 |
11053
|
4/27/1998 12:00:00 AM
|
4/29/1998 12:00:00 AM
|
Shipped On Time
|
807 |
11054
|
4/28/1998 12:00:00 AM
|
1/1/0001 12:00:00 AM
|
Not Shipped
|
808 |
11055
|
4/28/1998 12:00:00 AM
|
5/5/1998 12:00:00 AM
|
Shipped On Time
|
809 |
11056
|
4/28/1998 12:00:00 AM
|
5/1/1998 12:00:00 AM
|
Shipped On Time
|
810 |
11057
|
4/29/1998 12:00:00 AM
|
5/1/1998 12:00:00 AM
|
Shipped On Time
|
811 |
11058
|
4/29/1998 12:00:00 AM
|
1/1/0001 12:00:00 AM
|
Not Shipped
|
812 |
11059
|
4/29/1998 12:00:00 AM
|
1/1/0001 12:00:00 AM
|
Not Shipped
|
813 |
11060
|
4/30/1998 12:00:00 AM
|
5/4/1998 12:00:00 AM
|
Shipped On Time
|
814 |
11061
|
4/30/1998 12:00:00 AM
|
1/1/0001 12:00:00 AM
|
Not Shipped
|
815 |
11062
|
4/30/1998 12:00:00 AM
|
1/1/0001 12:00:00 AM
|
Not Shipped
|
816 |
11063
|
4/30/1998 12:00:00 AM
|
5/6/1998 12:00:00 AM
|
Shipped On Time
|
817 |
11064
|
5/1/1998 12:00:00 AM
|
5/4/1998 12:00:00 AM
|
Shipped On Time
|
818 |
11065
|
5/1/1998 12:00:00 AM
|
1/1/0001 12:00:00 AM
|
Not Shipped
|
819 |
11066
|
5/1/1998 12:00:00 AM
|
5/4/1998 12:00:00 AM
|
Shipped On Time
|
820 |
11067
|
5/4/1998 12:00:00 AM
|
5/6/1998 12:00:00 AM
|
Shipped On Time
|
821 |
11068
|
5/4/1998 12:00:00 AM
|
1/1/0001 12:00:00 AM
|
Not Shipped
|
822 |
11069
|
5/4/1998 12:00:00 AM
|
5/6/1998 12:00:00 AM
|
Shipped On Time
|
823 |
11070
|
5/5/1998 12:00:00 AM
|
1/1/0001 12:00:00 AM
|
Not Shipped
|
824 |
11071
|
5/5/1998 12:00:00 AM
|
1/1/0001 12:00:00 AM
|
Not Shipped
|
825 |
11072
|
5/5/1998 12:00:00 AM
|
1/1/0001 12:00:00 AM
|
Not Shipped
|
826 |
11073
|
5/5/1998 12:00:00 AM
|
1/1/0001 12:00:00 AM
|
Not Shipped
|
827 |
11074
|
5/6/1998 12:00:00 AM
|
1/1/0001 12:00:00 AM
|
Not Shipped
|
828 |
11075
|
5/6/1998 12:00:00 AM
|
1/1/0001 12:00:00 AM
|
Not Shipped
|
829 |
11076
|
5/6/1998 12:00:00 AM
|
1/1/0001 12:00:00 AM
|
Not Shipped
|
830 |
11077
|
5/6/1998 12:00:00 AM
|
1/1/0001 12:00:00 AM
|
Not Shipped
|
3. Usage of IIF to demonstrate discounted amount.
SQL Server Query 3
SELECT
o.OrderID,
o.CustomerID,
c.Country,
OrderTotal = (SELECT SUM(od.UnitPrice * od.Quantity) FROM [Order Details] od WHERE OrderID = o.OrderID),
DiscountedAmount = (
SELECT SUM(od.UnitPrice * od.Quantity) FROM [Order Details] od WHERE OrderID = o.OrderID
) *
(1 - IIF(c.Country = 'USA',
IIF(
(SELECT SUM(od.UnitPrice * od.Quantity) FROM [Order Details] od WHERE OrderID = o.OrderID) > 1000,
0.10, -- 10% discount for USA orders over 1000
0.05 -- 5% discount for all other USA orders
),
IIF(
c.Country = 'Canada',
0.08, -- 8% discount for Canada
0 -- No discount for other countries
)
))
FROM Orders o
JOIN Customers c ON o.CustomerID = c.CustomerID
ORDER BY o.OrderID;
Create SQL query with SqlQueryBuilder 3
var (sql3, parameters3) = new SqlQueryBuilder()
.Select()
.Columns("o.OrderID", "o.CustomerID", "c.Country")
.Column(new SqlQueryBuilder().Select().Column(new SUM(new ColumnArithmatic("od.UnitPrice").MULTIPLY("od.Quantity")), "OrderTotal")
.From("[Order Details]", "od").Where(new Where(new Column("OrderID"), SQLComparisonOperators.EQUALE_TO, new Column("o.OrderID")))
, "OrderTotal")
.Column(new ColumnArithmatic().StartBracket(new SqlQueryBuilder().Select()
.Column(new SUM(new ColumnArithmatic("od.UnitPrice").MULTIPLY("od.Quantity")), "TotalCost")
.From("[Order Details]", "od")
.Where(new Where(new Column("OrderID"), SQLComparisonOperators.EQUALE_TO, new Column("o.OrderID")))
).EndBracket().MULTIPLY().StartBracket(1).SUBTRACT(new IIF(new Column("c.Country").Equale("USA"))
.True(
new IIF(new SqlQueryBuilder()
.Select().Column(new SUM(new ColumnArithmatic("od.UnitPrice").MULTIPLY("od.Quantity")), "TotalCost")
.From("[Order Details]", "od")
.Where(new Where(new Column("OrderID").Equale(new Column("o.OrderID")))).GreaterThan(1000))
.True(0.10).False(0.05)
)
.False(
new IIF(new Column("c.Country").Equale("Canada"))
.True(0.08).False(0)
)
).EndBracket()
, "DiscountedAmount")
.From("Orders", "o")
.Join(new List<IJoin>() {
new INNERJOIN().TableName(new Table("Customers","c"))
.On(new Column("o.CustomerID"), SQLComparisonOperators.EQUALE_TO, new Column("c.CustomerID"))
})
.OrderBy(new OrderBy().SetColumnAscending("o.OrderID"))
.Build();
Query build by SqlQueryBuilder 3
SELECT o.OrderID,
o.CustomerID,
c.Country,
(SELECT SUM(od.UnitPrice * od.Quantity) AS OrderTotal
FROM [Order Details] AS od
WHERE OrderID = o.OrderID) AS OrderTotal,
(SELECT SUM(od.UnitPrice * od.Quantity) AS TotalCost
FROM [Order Details] AS od
WHERE OrderID = o.OrderID) * (@pMAIN_2507200140484562170 - IIF (c.Country = @pMAIN_2507200140484562171, IIF ((SELECT SUM(od.UnitPrice * od.Quantity) AS TotalCost
FROM [Order Details] AS od
WHERE OrderID = o.OrderID) > @pMAIN_2507200140484562172, @pMAIN_2507200140484562173, @pMAIN_2507200140484562174), IIF (c.Country = @pMAIN_2507200140484562175, @pMAIN_2507200140484562176, @pMAIN_2507200140484562177))) AS DiscountedAmount
FROM Orders AS o
INNER JOIN
Customers AS c
ON o.CustomerID = c.CustomerID
ORDER BY o.OrderID ASC;
Parameters (If used)
Name |
Value |
@pMAIN_2507200140484562170 |
1 |
@pMAIN_2507200140484562171 |
USA |
@pMAIN_2507200140484562172 |
1000 |
@pMAIN_2507200140484562173 |
0.1 |
@pMAIN_2507200140484562174 |
0.05 |
@pMAIN_2507200140484562175 |
Canada |
@pMAIN_2507200140484562176 |
0.08 |
@pMAIN_2507200140484562177 |
0 |
Query Results 3:
|
OrderID |
CustomerID |
Country |
OrderTotal |
DiscountedAmount |
1 |
10248
|
VINET
|
France
|
440.0000
|
440
|
2 |
10249
|
TOMSP
|
Germany
|
1863.4000
|
1863.4
|
3 |
10250
|
HANAR
|
Brazil
|
1813.0000
|
1813
|
4 |
10251
|
VICTE
|
France
|
670.8000
|
670.8
|
5 |
10252
|
SUPRD
|
Belgium
|
3730.0000
|
3730
|
6 |
10253
|
HANAR
|
Brazil
|
1444.8000
|
1444.8
|
7 |
10254
|
CHOPS
|
Switzerland
|
625.2000
|
625.2
|
8 |
10255
|
RICSU
|
Switzerland
|
2490.5000
|
2490.5
|
9 |
10256
|
WELLI
|
Brazil
|
517.8000
|
517.8
|
10 |
10257
|
HILAA
|
Venezuela
|
1119.9000
|
1119.9
|
11 |
10258
|
ERNSH
|
Austria
|
2018.6000
|
2018.6
|
12 |
10259
|
CENTC
|
Mexico
|
100.8000
|
100.8
|
13 |
10260
|
OTTIK
|
Germany
|
1746.2000
|
1746.2
|
14 |
10261
|
QUEDE
|
Brazil
|
448.0000
|
448
|
15 |
10262
|
RATTC
|
USA
|
624.8000
|
593.56
|
16 |
10263
|
ERNSH
|
Austria
|
2464.8000
|
2464.8
|
17 |
10264
|
FOLKO
|
Sweden
|
724.5000
|
724.5
|
18 |
10265
|
BLONP
|
France
|
1176.0000
|
1176
|
19 |
10266
|
WARTH
|
Finland
|
364.8000
|
364.8
|
20 |
10267
|
FRANK
|
Germany
|
4031.0000
|
4031
|
21 |
10268
|
GROSR
|
Venezuela
|
1101.2000
|
1101.2
|
22 |
10269
|
WHITC
|
USA
|
676.0000
|
642.1999999999999
|
23 |
10270
|
WARTH
|
Finland
|
1376.0000
|
1376
|
24 |
10271
|
SPLIR
|
USA
|
48.0000
|
45.599999999999994
|
25 |
10272
|
RATTC
|
USA
|
1456.0000
|
1310.4
|
26 |
10273
|
QUICK
|
Germany
|
2142.4000
|
2142.4
|
27 |
10274
|
VINET
|
France
|
538.6000
|
538.6
|
28 |
10275
|
MAGAA
|
Italy
|
307.2000
|
307.2
|
29 |
10276
|
TORTU
|
Mexico
|
420.0000
|
420
|
30 |
10277
|
MORGK
|
Germany
|
1200.8000
|
1200.8
|
31 |
10278
|
BERGS
|
Sweden
|
1488.8000
|
1488.8
|
32 |
10279
|
LEHMS
|
Germany
|
468.0000
|
468
|
33 |
10280
|
BERGS
|
Sweden
|
613.2000
|
613.2
|
34 |
10281
|
ROMEY
|
Spain
|
86.5000
|
86.5
|
35 |
10282
|
ROMEY
|
Spain
|
155.4000
|
155.4
|
36 |
10283
|
LILAS
|
Venezuela
|
1414.8000
|
1414.8
|
37 |
10284
|
LEHMS
|
Germany
|
1452.0000
|
1452
|
38 |
10285
|
QUICK
|
Germany
|
2179.2000
|
2179.2
|
39 |
10286
|
QUICK
|
Germany
|
3016.0000
|
3016
|
40 |
10287
|
RICAR
|
Brazil
|
924.0000
|
924
|
41 |
10288
|
REGGC
|
Italy
|
89.0000
|
89
|
42 |
10289
|
BSBEV
|
UK
|
479.4000
|
479.4
|
43 |
10290
|
COMMI
|
Brazil
|
2169.0000
|
2169
|
44 |
10291
|
QUEDE
|
Brazil
|
552.8000
|
552.8
|
45 |
10292
|
TRADH
|
Brazil
|
1296.0000
|
1296
|
46 |
10293
|
TORTU
|
Mexico
|
848.7000
|
848.7
|
47 |
10294
|
RATTC
|
USA
|
1887.6000
|
1698.84
|
48 |
10295
|
VINET
|
France
|
121.6000
|
121.6
|
49 |
10296
|
LILAS
|
Venezuela
|
1050.6000
|
1050.6
|
50 |
10297
|
BLONP
|
France
|
1420.0000
|
1420
|
51 |
10298
|
HUNGO
|
Ireland
|
3127.0000
|
3127
|
52 |
10299
|
RICAR
|
Brazil
|
349.5000
|
349.5
|
53 |
10300
|
MAGAA
|
Italy
|
608.0000
|
608
|
54 |
10301
|
WANDK
|
Germany
|
755.0000
|
755
|
55 |
10302
|
SUPRD
|
Belgium
|
2708.8000
|
2708.8
|
56 |
10303
|
GODOS
|
Spain
|
1242.0000
|
1242
|
57 |
10304
|
TORTU
|
Mexico
|
954.4000
|
954.4
|
58 |
10305
|
OLDWO
|
USA
|
4157.0000
|
3741.3
|
59 |
10306
|
ROMEY
|
Spain
|
498.5000
|
498.5
|
60 |
10307
|
LONEP
|
USA
|
424.0000
|
402.79999999999995
|
61 |
10308
|
ANATR
|
Mexico
|
88.8000
|
88.8
|
62 |
10309
|
HUNGO
|
Ireland
|
1762.0000
|
1762
|
63 |
10310
|
THEBI
|
USA
|
336.0000
|
319.2
|
64 |
10311
|
DUMON
|
France
|
268.8000
|
268.8
|
65 |
10312
|
WANDK
|
Germany
|
1614.8000
|
1614.8
|
66 |
10313
|
QUICK
|
Germany
|
182.4000
|
182.4
|
67 |
10314
|
RATTC
|
USA
|
2327.0000
|
2094.3
|
68 |
10315
|
ISLAT
|
UK
|
516.8000
|
516.8
|
69 |
10316
|
RATTC
|
USA
|
2835.0000
|
2551.5
|
70 |
10317
|
LONEP
|
USA
|
288.0000
|
273.59999999999997
|
71 |
10318
|
ISLAT
|
UK
|
240.4000
|
240.4
|
72 |
10319
|
TORTU
|
Mexico
|
1191.2000
|
1191.2
|
73 |
10320
|
WARTH
|
Finland
|
516.0000
|
516
|
74 |
10321
|
ISLAT
|
UK
|
144.0000
|
144
|
75 |
10322
|
PERIC
|
Mexico
|
112.0000
|
112
|
76 |
10323
|
KOENE
|
Germany
|
164.4000
|
164.4
|
77 |
10324
|
SAVEA
|
USA
|
6155.9000
|
5540.3099999999995
|
78 |
10325
|
KOENE
|
Germany
|
1497.0000
|
1497
|
79 |
10326
|
BOLID
|
Spain
|
982.0000
|
982
|
80 |
10327
|
FOLKO
|
Sweden
|
2262.5000
|
2262.5
|
81 |
10328
|
FURIB
|
Portugal
|
1168.0000
|
1168
|
82 |
10329
|
SPLIR
|
USA
|
4819.4000
|
4337.46
|
83 |
10330
|
LILAS
|
Venezuela
|
1940.0000
|
1940
|
84 |
10331
|
BONAP
|
France
|
88.5000
|
88.5
|
85 |
10332
|
MEREP
|
Canada
|
2233.6000
|
2054.912
|
86 |
10333
|
WARTH
|
Finland
|
954.0000
|
954
|
87 |
10334
|
VICTE
|
France
|
144.8000
|
144.8
|
88 |
10335
|
HUNGO
|
Ireland
|
2545.2000
|
2545.2
|
89 |
10336
|
PRINI
|
Portugal
|
316.8000
|
316.8
|
90 |
10337
|
FRANK
|
Germany
|
2467.0000
|
2467
|
91 |
10338
|
OLDWO
|
USA
|
934.5000
|
887.775
|
92 |
10339
|
MEREP
|
Canada
|
3463.2000
|
3186.144
|
93 |
10340
|
BONAP
|
France
|
2564.4000
|
2564.4
|
94 |
10341
|
SIMOB
|
Denmark
|
412.0000
|
412
|
95 |
10342
|
FRANK
|
Germany
|
2300.8000
|
2300.8
|
96 |
10343
|
LEHMS
|
Germany
|
1586.0000
|
1586
|
97 |
10344
|
WHITC
|
USA
|
2856.0000
|
2570.4
|
98 |
10345
|
QUICK
|
Germany
|
2924.8000
|
2924.8
|
99 |
10346
|
RATTC
|
USA
|
1731.2000
|
1558.0800000000002
|
100 |
10347
|
FAMIA
|
Brazil
|
928.0000
|
928
|
101 |
10348
|
WANDK
|
Germany
|
396.0000
|
396
|
102 |
10349
|
SPLIR
|
USA
|
141.6000
|
134.51999999999998
|
103 |
10350
|
LAMAI
|
France
|
713.4000
|
713.4
|
104 |
10351
|
ERNSH
|
Austria
|
5677.6000
|
5677.6
|
105 |
10352
|
FURIB
|
Portugal
|
154.0000
|
154
|
106 |
10353
|
PICCO
|
Austria
|
10741.6000
|
10741.6
|
107 |
10354
|
PERIC
|
Mexico
|
568.8000
|
568.8
|
108 |
10355
|
AROUT
|
UK
|
480.0000
|
480
|
109 |
10356
|
WANDK
|
Germany
|
1106.4000
|
1106.4
|
110 |
10357
|
LILAS
|
Venezuela
|
1360.0000
|
1360
|
111 |
10358
|
LAMAI
|
France
|
452.0000
|
452
|
112 |
10359
|
SEVES
|
UK
|
3654.4000
|
3654.4
|
113 |
10360
|
BLONP
|
France
|
7390.2000
|
7390.2
|
114 |
10361
|
QUICK
|
Germany
|
2273.6000
|
2273.6
|
115 |
10362
|
BONAP
|
France
|
1549.6000
|
1549.6
|
116 |
10363
|
DRACD
|
Germany
|
447.2000
|
447.2
|
117 |
10364
|
EASTC
|
UK
|
950.0000
|
950
|
118 |
10365
|
ANTON
|
Mexico
|
403.2000
|
403.2
|
119 |
10366
|
GALED
|
Spain
|
136.0000
|
136
|
120 |
10367
|
VAFFE
|
Denmark
|
834.2000
|
834.2
|
121 |
10368
|
ERNSH
|
Austria
|
1834.2000
|
1834.2
|
122 |
10369
|
SPLIR
|
USA
|
2527.2000
|
2274.48
|
123 |
10370
|
CHOPS
|
Switzerland
|
1174.0000
|
1174
|
124 |
10371
|
LAMAI
|
France
|
91.2000
|
91.2
|
125 |
10372
|
QUEEN
|
Brazil
|
12281.2000
|
12281.2
|
126 |
10373
|
HUNGO
|
Ireland
|
1708.0000
|
1708
|
127 |
10374
|
WOLZA
|
Poland
|
459.0000
|
459
|
128 |
10375
|
HUNGC
|
USA
|
338.0000
|
321.09999999999997
|
129 |
10376
|
MEREP
|
Canada
|
420.0000
|
386.40000000000003
|
130 |
10377
|
SEVES
|
UK
|
1016.0000
|
1016
|
131 |
10378
|
FOLKO
|
Sweden
|
103.2000
|
103.2
|
132 |
10379
|
QUEDE
|
Brazil
|
959.2000
|
959.2
|
133 |
10380
|
HUNGO
|
Ireland
|
1419.8000
|
1419.8
|
134 |
10381
|
LILAS
|
Venezuela
|
112.0000
|
112
|
135 |
10382
|
ERNSH
|
Austria
|
2900.0000
|
2900
|
136 |
10383
|
AROUT
|
UK
|
899.0000
|
899
|
137 |
10384
|
BERGS
|
Sweden
|
2222.4000
|
2222.4
|
138 |
10385
|
SPLIR
|
USA
|
864.0000
|
820.8
|
139 |
10386
|
FAMIA
|
Brazil
|
166.0000
|
166
|
140 |
10387
|
SANTG
|
Norway
|
1058.4000
|
1058.4
|
141 |
10388
|
SEVES
|
UK
|
1274.0000
|
1274
|
142 |
10389
|
BOTTM
|
Canada
|
1832.8000
|
1686.176
|
143 |
10390
|
ERNSH
|
Austria
|
2275.2000
|
2275.2
|
144 |
10391
|
DRACD
|
Germany
|
86.4000
|
86.4
|
145 |
10392
|
PICCO
|
Austria
|
1440.0000
|
1440
|
146 |
10393
|
SAVEA
|
USA
|
3302.6000
|
2972.34
|
147 |
10394
|
HUNGC
|
USA
|
442.0000
|
419.9
|
148 |
10395
|
HILAA
|
Venezuela
|
2333.2000
|
2333.2
|
149 |
10396
|
FRANK
|
Germany
|
1903.8000
|
1903.8
|
150 |
10397
|
PRINI
|
Portugal
|
843.2000
|
843.2
|
151 |
10398
|
SAVEA
|
USA
|
2736.0000
|
2462.4
|
152 |
10399
|
VAFFE
|
Denmark
|
1765.6000
|
1765.6
|
153 |
10400
|
EASTC
|
UK
|
3063.0000
|
3063
|
154 |
10401
|
RATTC
|
USA
|
3868.6000
|
3481.74
|
155 |
10402
|
ERNSH
|
Austria
|
2713.5000
|
2713.5
|
156 |
10403
|
ERNSH
|
Austria
|
1005.9000
|
1005.9
|
157 |
10404
|
MAGAA
|
Italy
|
1675.0000
|
1675
|
158 |
10405
|
LINOD
|
Venezuela
|
400.0000
|
400
|
159 |
10406
|
QUEEN
|
Brazil
|
2018.2000
|
2018.2
|
160 |
10407
|
OTTIK
|
Germany
|
1194.0000
|
1194
|
161 |
10408
|
FOLIG
|
France
|
1622.4000
|
1622.4
|
162 |
10409
|
OCEAN
|
Argentina
|
319.2000
|
319.2
|
163 |
10410
|
BOTTM
|
Canada
|
802.0000
|
737.84
|
164 |
10411
|
BOTTM
|
Canada
|
1208.5000
|
1111.82
|
165 |
10412
|
WARTH
|
Finland
|
372.0000
|
372
|
166 |
10413
|
LAMAI
|
France
|
2123.2000
|
2123.2
|
167 |
10414
|
FAMIA
|
Brazil
|
231.4000
|
231.4
|
168 |
10415
|
HUNGC
|
USA
|
102.4000
|
97.28
|
169 |
10416
|
WARTH
|
Finland
|
720.0000
|
720
|
170 |
10417
|
SIMOB
|
Denmark
|
11283.2000
|
11283.2
|
171 |
10418
|
QUICK
|
Germany
|
1814.8000
|
1814.8
|
172 |
10419
|
RICSU
|
Switzerland
|
2208.0000
|
2208
|
173 |
10420
|
WELLI
|
Brazil
|
1897.6000
|
1897.6
|
174 |
10421
|
QUEDE
|
Brazil
|
1273.2000
|
1273.2
|
175 |
10422
|
FRANS
|
Italy
|
49.8000
|
49.8
|
176 |
10423
|
GOURL
|
Brazil
|
1020.0000
|
1020
|
177 |
10424
|
MEREP
|
Canada
|
11493.2000
|
10573.744
|
178 |
10425
|
LAMAI
|
France
|
480.0000
|
480
|
179 |
10426
|
GALED
|
Spain
|
338.2000
|
338.2
|
180 |
10427
|
PICCO
|
Austria
|
651.0000
|
651
|
181 |
10428
|
REGGC
|
Italy
|
192.0000
|
192
|
182 |
10429
|
HUNGO
|
Ireland
|
1748.5000
|
1748.5
|
183 |
10430
|
ERNSH
|
Austria
|
5796.0000
|
5796
|
184 |
10431
|
BOTTM
|
Canada
|
2523.0000
|
2321.1600000000003
|
185 |
10432
|
SPLIR
|
USA
|
485.0000
|
460.75
|
186 |
10433
|
PRINI
|
Portugal
|
851.2000
|
851.2
|
187 |
10434
|
FOLKO
|
Sweden
|
360.0000
|
360
|
188 |
10435
|
CONSH
|
UK
|
631.6000
|
631.6
|
189 |
10436
|
BLONP
|
France
|
2210.8000
|
2210.8
|
190 |
10437
|
WARTH
|
Finland
|
393.0000
|
393
|
191 |
10438
|
TOMSP
|
Germany
|
567.5000
|
567.5
|
192 |
10439
|
MEREP
|
Canada
|
1078.0000
|
991.76
|
193 |
10440
|
SAVEA
|
USA
|
5793.1000
|
5213.790000000001
|
194 |
10441
|
OLDWO
|
USA
|
1755.0000
|
1579.5
|
195 |
10442
|
ERNSH
|
Austria
|
1792.0000
|
1792
|
196 |
10443
|
REGGC
|
Italy
|
537.6000
|
537.6
|
197 |
10444
|
BERGS
|
Sweden
|
1031.7000
|
1031.7
|
198 |
10445
|
BERGS
|
Sweden
|
174.9000
|
174.9
|
199 |
10446
|
TOMSP
|
Germany
|
273.6000
|
273.6
|
200 |
10447
|
RICAR
|
Brazil
|
914.4000
|
914.4
|
201 |
10448
|
RANCH
|
Argentina
|
443.4000
|
443.4
|
202 |
10449
|
BLONP
|
France
|
1838.2000
|
1838.2
|
203 |
10450
|
VICTE
|
France
|
531.4000
|
531.4
|
204 |
10451
|
QUICK
|
Germany
|
4277.4000
|
4277.4
|
205 |
10452
|
SAVEA
|
USA
|
2096.0000
|
1886.4
|
206 |
10453
|
AROUT
|
UK
|
453.0000
|
453
|
207 |
10454
|
LAMAI
|
France
|
414.0000
|
414
|
208 |
10455
|
WARTH
|
Finland
|
2684.0000
|
2684
|
209 |
10456
|
KOENE
|
Germany
|
656.0000
|
656
|
210 |
10457
|
KOENE
|
Germany
|
1584.0000
|
1584
|
211 |
10458
|
SUPRD
|
Belgium
|
3891.0000
|
3891
|
212 |
10459
|
VICTE
|
France
|
1688.0000
|
1688
|
213 |
10460
|
FOLKO
|
Sweden
|
234.8000
|
234.8
|
214 |
10461
|
LILAS
|
Venezuela
|
2051.6000
|
2051.6
|
215 |
10462
|
CONSH
|
UK
|
156.0000
|
156
|
216 |
10463
|
SUPRD
|
Belgium
|
713.3000
|
713.3
|
217 |
10464
|
FURIB
|
Portugal
|
1848.0000
|
1848
|
218 |
10465
|
VAFFE
|
Denmark
|
2719.0000
|
2719
|
219 |
10466
|
COMMI
|
Brazil
|
216.0000
|
216
|
220 |
10467
|
MAGAA
|
Italy
|
235.2000
|
235.2
|
221 |
10468
|
KOENE
|
Germany
|
717.6000
|
717.6
|
222 |
10469
|
WHITC
|
USA
|
1125.5000
|
1012.95
|
223 |
10470
|
BONAP
|
France
|
1820.8000
|
1820.8
|
224 |
10471
|
BSBEV
|
UK
|
1328.0000
|
1328
|
225 |
10472
|
SEVES
|
UK
|
1051.2000
|
1051.2
|
226 |
10473
|
ISLAT
|
UK
|
230.4000
|
230.4
|
227 |
10474
|
PERIC
|
Mexico
|
1249.1000
|
1249.1
|
228 |
10475
|
SUPRD
|
Belgium
|
1770.8000
|
1770.8
|
229 |
10476
|
HILAA
|
Venezuela
|
182.4000
|
182.4
|
230 |
10477
|
PRINI
|
Portugal
|
672.0000
|
672
|
231 |
10478
|
VICTE
|
France
|
496.0000
|
496
|
232 |
10479
|
RATTC
|
USA
|
10495.6000
|
9446.04
|
233 |
10480
|
FOLIG
|
France
|
756.0000
|
756
|
234 |
10481
|
RICAR
|
Brazil
|
1472.0000
|
1472
|
235 |
10482
|
LAZYK
|
USA
|
147.0000
|
139.65
|
236 |
10483
|
WHITC
|
USA
|
704.0000
|
668.8
|
237 |
10484
|
BSBEV
|
UK
|
386.2000
|
386.2
|
238 |
10485
|
LINOD
|
Venezuela
|
1760.0000
|
1760
|
239 |
10486
|
HILAA
|
Venezuela
|
1272.0000
|
1272
|
240 |
10487
|
QUEEN
|
Brazil
|
925.1000
|
925.1
|
241 |
10488
|
FRANK
|
Germany
|
1560.0000
|
1560
|
242 |
10489
|
PICCO
|
Austria
|
502.2000
|
502.2
|
243 |
10490
|
HILAA
|
Venezuela
|
3163.2000
|
3163.2
|
244 |
10491
|
FURIB
|
Portugal
|
305.3000
|
305.3
|
245 |
10492
|
BOTTM
|
Canada
|
896.0000
|
824.32
|
246 |
10493
|
LAMAI
|
France
|
676.0000
|
676
|
247 |
10494
|
COMMI
|
Brazil
|
912.0000
|
912
|
248 |
10495
|
LAUGB
|
Canada
|
278.0000
|
255.76000000000002
|
249 |
10496
|
TRADH
|
Brazil
|
200.0000
|
200
|
250 |
10497
|
LEHMS
|
Germany
|
1380.6000
|
1380.6
|
251 |
10498
|
HILAA
|
Venezuela
|
575.0000
|
575
|
252 |
10499
|
LILAS
|
Venezuela
|
1412.0000
|
1412
|
253 |
10500
|
LAMAI
|
France
|
550.8000
|
550.8
|
254 |
10501
|
BLAUS
|
Germany
|
149.0000
|
149
|
255 |
10502
|
PERIC
|
Mexico
|
816.3000
|
816.3
|
256 |
10503
|
HUNGO
|
Ireland
|
2048.5000
|
2048.5
|
257 |
10504
|
WHITC
|
USA
|
1388.5000
|
1249.65
|
258 |
10505
|
MEREP
|
Canada
|
147.9000
|
136.068
|
259 |
10506
|
KOENE
|
Germany
|
462.0000
|
462
|
260 |
10507
|
ANTON
|
Mexico
|
881.2500
|
881.25
|
261 |
10508
|
OTTIK
|
Germany
|
240.0000
|
240
|
262 |
10509
|
BLAUS
|
Germany
|
136.8000
|
136.8
|
263 |
10510
|
SAVEA
|
USA
|
4735.4400
|
4261.896
|
264 |
10511
|
BONAP
|
France
|
3000.0000
|
3000
|
265 |
10512
|
FAMIA
|
Brazil
|
618.0000
|
618
|
266 |
10513
|
WANDK
|
Germany
|
2427.5000
|
2427.5
|
267 |
10514
|
ERNSH
|
Austria
|
8623.4500
|
8623.45
|
268 |
10515
|
QUICK
|
Germany
|
10588.5000
|
10588.5
|
269 |
10516
|
HUNGO
|
Ireland
|
2614.5000
|
2614.5
|
270 |
10517
|
NORTS
|
UK
|
352.0000
|
352
|
271 |
10518
|
TORTU
|
Mexico
|
4150.0500
|
4150.05
|
272 |
10519
|
CHOPS
|
Switzerland
|
2356.0000
|
2356
|
273 |
10520
|
SANTG
|
Norway
|
200.0000
|
200
|
274 |
10521
|
CACTU
|
Argentina
|
225.5000
|
225.5
|
275 |
10522
|
LEHMS
|
Germany
|
2657.8000
|
2657.8
|
276 |
10523
|
SEVES
|
UK
|
2715.9000
|
2715.9
|
277 |
10524
|
BERGS
|
Sweden
|
3192.6500
|
3192.65
|
278 |
10525
|
BONAP
|
France
|
846.0000
|
846
|
279 |
10526
|
WARTH
|
Finland
|
1344.0000
|
1344
|
280 |
10527
|
QUICK
|
Germany
|
1670.0000
|
1670
|
281 |
10528
|
GREAL
|
USA
|
396.2000
|
376.39
|
282 |
10529
|
MAISD
|
Belgium
|
946.0000
|
946
|
283 |
10530
|
PICCO
|
Austria
|
4180.0000
|
4180
|
284 |
10531
|
OCEAN
|
Argentina
|
110.0000
|
110
|
285 |
10532
|
EASTC
|
UK
|
796.3500
|
796.35
|
286 |
10533
|
FOLKO
|
Sweden
|
2295.2000
|
2295.2
|
287 |
10534
|
LEHMS
|
Germany
|
517.4000
|
517.4
|
288 |
10535
|
ANTON
|
Mexico
|
2156.5000
|
2156.5
|
289 |
10536
|
LEHMS
|
Germany
|
2085.0000
|
2085
|
290 |
10537
|
RICSU
|
Switzerland
|
1823.8000
|
1823.8
|
291 |
10538
|
BSBEV
|
UK
|
139.8000
|
139.8
|
292 |
10539
|
BSBEV
|
UK
|
355.5000
|
355.5
|
293 |
10540
|
QUICK
|
Germany
|
10191.7000
|
10191.7
|
294 |
10541
|
HANAR
|
Brazil
|
2162.8000
|
2162.8
|
295 |
10542
|
KOENE
|
Germany
|
493.8000
|
493.8
|
296 |
10543
|
LILAS
|
Venezuela
|
1770.0000
|
1770
|
297 |
10544
|
LONEP
|
USA
|
417.2000
|
396.34
|
298 |
10545
|
LAZYK
|
USA
|
210.0000
|
199.5
|
299 |
10546
|
VICTE
|
France
|
2812.0000
|
2812
|
300 |
10547
|
SEVES
|
UK
|
1908.0000
|
1908
|
301 |
10548
|
TOMSP
|
Germany
|
275.1000
|
275.1
|
302 |
10549
|
QUICK
|
Germany
|
4181.5000
|
4181.5
|
303 |
10550
|
GODOS
|
Spain
|
749.0000
|
749
|
304 |
10551
|
FURIB
|
Portugal
|
1836.0000
|
1836
|
305 |
10552
|
HILAA
|
Venezuela
|
880.5000
|
880.5
|
306 |
10553
|
WARTH
|
Finland
|
1546.3000
|
1546.3
|
307 |
10554
|
OTTIK
|
Germany
|
1819.5000
|
1819.5
|
308 |
10555
|
SAVEA
|
USA
|
3680.5000
|
3312.4500000000003
|
309 |
10556
|
SIMOB
|
Denmark
|
835.2000
|
835.2
|
310 |
10557
|
LEHMS
|
Germany
|
1152.5000
|
1152.5
|
311 |
10558
|
AROUT
|
UK
|
2142.9000
|
2142.9
|
312 |
10559
|
BLONP
|
France
|
547.8000
|
547.8
|
313 |
10560
|
FRANK
|
Germany
|
1257.3000
|
1257.3
|
314 |
10561
|
FOLKO
|
Sweden
|
2844.5000
|
2844.5
|
315 |
10562
|
REGGC
|
Italy
|
543.0000
|
543
|
316 |
10563
|
RICAR
|
Brazil
|
965.0000
|
965
|
317 |
10564
|
RATTC
|
USA
|
1299.0000
|
1169.1000000000001
|
318 |
10565
|
MEREP
|
Canada
|
711.0000
|
654.12
|
319 |
10566
|
BLONP
|
France
|
2040.0000
|
2040
|
320 |
10567
|
HUNGO
|
Ireland
|
3109.0000
|
3109
|
321 |
10568
|
GALED
|
Spain
|
155.0000
|
155
|
322 |
10569
|
RATTC
|
USA
|
977.5000
|
928.625
|
323 |
10570
|
MEREP
|
Canada
|
2595.0000
|
2387.4
|
324 |
10571
|
ERNSH
|
Austria
|
647.7500
|
647.75
|
325 |
10572
|
BERGS
|
Sweden
|
1565.6500
|
1565.65
|
326 |
10573
|
ANTON
|
Mexico
|
2082.0000
|
2082
|
327 |
10574
|
TRAIH
|
USA
|
764.3000
|
726.0849999999999
|
328 |
10575
|
MORGK
|
Germany
|
2147.4000
|
2147.4
|
329 |
10576
|
TORTU
|
Mexico
|
838.4500
|
838.45
|
330 |
10577
|
TRAIH
|
USA
|
569.0000
|
540.55
|
331 |
10578
|
BSBEV
|
UK
|
477.0000
|
477
|
332 |
10579
|
LETSS
|
USA
|
317.7500
|
301.8625
|
333 |
10580
|
OTTIK
|
Germany
|
1067.1000
|
1067.1
|
334 |
10581
|
FAMIA
|
Brazil
|
387.5000
|
387.5
|
335 |
10582
|
BLAUS
|
Germany
|
330.0000
|
330
|
336 |
10583
|
WARTH
|
Finland
|
2413.9000
|
2413.9
|
337 |
10584
|
BLONP
|
France
|
625.0000
|
625
|
338 |
10585
|
WELLI
|
Brazil
|
142.5000
|
142.5
|
339 |
10586
|
REGGC
|
Italy
|
28.0000
|
28
|
340 |
10587
|
QUEDE
|
Brazil
|
807.3800
|
807.38
|
341 |
10588
|
QUICK
|
Germany
|
3900.0000
|
3900
|
342 |
10589
|
GREAL
|
USA
|
72.0000
|
68.39999999999999
|
343 |
10590
|
MEREP
|
Canada
|
1140.0000
|
1048.8
|
344 |
10591
|
VAFFE
|
Denmark
|
812.5000
|
812.5
|
345 |
10592
|
LEHMS
|
Germany
|
543.6500
|
543.65
|
346 |
10593
|
LEHMS
|
Germany
|
2493.0000
|
2493
|
347 |
10594
|
OLDWO
|
USA
|
565.5000
|
537.225
|
348 |
10595
|
ERNSH
|
Austria
|
6300.0000
|
6300
|
349 |
10596
|
WHITC
|
USA
|
1476.1000
|
1328.49
|
350 |
10597
|
PICCO
|
Austria
|
800.1000
|
800.1
|
351 |
10598
|
RATTC
|
USA
|
2388.5000
|
2149.65
|
352 |
10599
|
BSBEV
|
UK
|
493.0000
|
493
|
353 |
10600
|
HUNGC
|
USA
|
479.8000
|
455.81
|
354 |
10601
|
HILAA
|
Venezuela
|
2285.0000
|
2285
|
355 |
10602
|
VAFFE
|
Denmark
|
65.0000
|
65
|
356 |
10603
|
SAVEA
|
USA
|
1508.0000
|
1357.2
|
357 |
10604
|
FURIB
|
Portugal
|
256.5000
|
256.5
|
358 |
10605
|
MEREP
|
Canada
|
4326.0000
|
3979.92
|
359 |
10606
|
TRADH
|
Brazil
|
1413.0000
|
1413
|
360 |
10607
|
SAVEA
|
USA
|
6475.4000
|
5827.86
|
361 |
10608
|
TOMSP
|
Germany
|
1064.0000
|
1064
|
362 |
10609
|
DUMON
|
France
|
424.0000
|
424
|
363 |
10610
|
LAMAI
|
France
|
399.0000
|
399
|
364 |
10611
|
WOLZA
|
Poland
|
808.0000
|
808
|
365 |
10612
|
SAVEA
|
USA
|
6375.0000
|
5737.5
|
366 |
10613
|
HILAA
|
Venezuela
|
358.0000
|
358
|
367 |
10614
|
BLAUS
|
Germany
|
464.0000
|
464
|
368 |
10615
|
WILMK
|
Finland
|
120.0000
|
120
|
369 |
10616
|
GREAL
|
USA
|
5032.0000
|
4528.8
|
370 |
10617
|
GREAL
|
USA
|
1650.0000
|
1485
|
371 |
10618
|
MEREP
|
Canada
|
2697.5000
|
2481.7000000000003
|
372 |
10619
|
MEREP
|
Canada
|
1260.0000
|
1159.2
|
373 |
10620
|
LAUGB
|
Canada
|
57.5000
|
52.900000000000006
|
374 |
10621
|
ISLAT
|
UK
|
758.5000
|
758.5
|
375 |
10622
|
RICAR
|
Brazil
|
605.0000
|
605
|
376 |
10623
|
FRANK
|
Germany
|
1429.7500
|
1429.75
|
377 |
10624
|
THECR
|
USA
|
1393.2400
|
1253.916
|
378 |
10625
|
ANATR
|
Mexico
|
479.7500
|
479.75
|
379 |
10626
|
BERGS
|
Sweden
|
1503.6000
|
1503.6
|
380 |
10627
|
SAVEA
|
USA
|
1264.5000
|
1138.05
|
381 |
10628
|
BLONP
|
France
|
450.0000
|
450
|
382 |
10629
|
GODOS
|
Spain
|
2775.0500
|
2775.05
|
383 |
10630
|
KOENE
|
Germany
|
918.0000
|
918
|
384 |
10631
|
LAMAI
|
France
|
62.0000
|
62
|
385 |
10632
|
WANDK
|
Germany
|
620.0000
|
620
|
386 |
10633
|
ERNSH
|
Austria
|
6483.0500
|
6483.05
|
387 |
10634
|
FOLIG
|
France
|
4985.5000
|
4985.5
|
388 |
10635
|
MAGAA
|
Italy
|
1380.2500
|
1380.25
|
389 |
10636
|
WARTH
|
Finland
|
629.5000
|
629.5
|
390 |
10637
|
QUEEN
|
Brazil
|
2896.2500
|
2896.25
|
391 |
10638
|
LINOD
|
Venezuela
|
2720.0500
|
2720.05
|
392 |
10639
|
SANTG
|
Norway
|
500.0000
|
500
|
393 |
10640
|
WANDK
|
Germany
|
945.0000
|
945
|
394 |
10641
|
HILAA
|
Venezuela
|
2054.0000
|
2054
|
395 |
10642
|
SIMOB
|
Denmark
|
870.0000
|
870
|
396 |
10643
|
ALFKI
|
Germany
|
1086.0000
|
1086
|
397 |
10644
|
WELLI
|
Brazil
|
1422.0000
|
1422
|
398 |
10645
|
HANAR
|
Brazil
|
1535.0000
|
1535
|
399 |
10646
|
HUNGO
|
Ireland
|
1928.0000
|
1928
|
400 |
10647
|
QUEDE
|
Brazil
|
636.0000
|
636
|
401 |
10648
|
RICAR
|
Brazil
|
382.5000
|
382.5
|
402 |
10649
|
MAISD
|
Belgium
|
1434.0000
|
1434
|
403 |
10650
|
FAMIA
|
Brazil
|
1820.2000
|
1820.2
|
404 |
10651
|
WANDK
|
Germany
|
530.4000
|
530.4
|
405 |
10652
|
GOURL
|
Brazil
|
331.7800
|
331.78
|
406 |
10653
|
FRANK
|
Germany
|
1203.5000
|
1203.5
|
407 |
10654
|
BERGS
|
Sweden
|
668.7000
|
668.7
|
408 |
10655
|
REGGC
|
Italy
|
193.0000
|
193
|
409 |
10656
|
GREAL
|
USA
|
671.3500
|
637.7825
|
410 |
10657
|
SAVEA
|
USA
|
4371.6000
|
3934.4400000000005
|
411 |
10658
|
QUICK
|
Germany
|
4668.0000
|
4668
|
412 |
10659
|
QUEEN
|
Brazil
|
1291.6000
|
1291.6
|
413 |
10660
|
HUNGC
|
USA
|
1701.0000
|
1530.9
|
414 |
10661
|
HUNGO
|
Ireland
|
703.2500
|
703.25
|
415 |
10662
|
LONEP
|
USA
|
125.0000
|
118.75
|
416 |
10663
|
BONAP
|
France
|
2032.0000
|
2032
|
417 |
10664
|
FURIB
|
Portugal
|
1515.7500
|
1515.75
|
418 |
10665
|
LONEP
|
USA
|
1295.0000
|
1165.5
|
419 |
10666
|
RICSU
|
Switzerland
|
4666.9400
|
4666.94
|
420 |
10667
|
ERNSH
|
Austria
|
1921.0000
|
1921
|
421 |
10668
|
WANDK
|
Germany
|
694.7500
|
694.75
|
422 |
10669
|
SIMOB
|
Denmark
|
570.0000
|
570
|
423 |
10670
|
FRANK
|
Germany
|
2301.7500
|
2301.75
|
424 |
10671
|
FRANR
|
France
|
920.1000
|
920.1
|
425 |
10672
|
BERGS
|
Sweden
|
4210.5000
|
4210.5
|
426 |
10673
|
WILMK
|
Finland
|
412.3500
|
412.35
|
427 |
10674
|
ISLAT
|
UK
|
45.0000
|
45
|
428 |
10675
|
FRANK
|
Germany
|
1423.0000
|
1423
|
429 |
10676
|
TORTU
|
Mexico
|
534.8500
|
534.85
|
430 |
10677
|
ANTON
|
Mexico
|
956.9000
|
956.9
|
431 |
10678
|
SAVEA
|
USA
|
5256.5000
|
4730.85
|
432 |
10679
|
BLONP
|
France
|
660.0000
|
660
|
433 |
10680
|
OLDWO
|
USA
|
1682.5000
|
1514.25
|
434 |
10681
|
GREAL
|
USA
|
1327.0000
|
1194.3
|
435 |
10682
|
ANTON
|
Mexico
|
375.5000
|
375.5
|
436 |
10683
|
DUMON
|
France
|
63.0000
|
63
|
437 |
10684
|
OTTIK
|
Germany
|
1768.0000
|
1768
|
438 |
10685
|
GOURL
|
Brazil
|
801.1000
|
801.1
|
439 |
10686
|
PICCO
|
Austria
|
1638.4500
|
1638.45
|
440 |
10687
|
HUNGO
|
Ireland
|
6201.9000
|
6201.9
|
441 |
10688
|
VAFFE
|
Denmark
|
3490.0000
|
3490
|
442 |
10689
|
BERGS
|
Sweden
|
630.0000
|
630
|
443 |
10690
|
HANAR
|
Brazil
|
1150.0000
|
1150
|
444 |
10691
|
QUICK
|
Germany
|
10164.8000
|
10164.8
|
445 |
10692
|
ALFKI
|
Germany
|
878.0000
|
878
|
446 |
10693
|
WHITC
|
USA
|
2334.0000
|
2100.6
|
447 |
10694
|
QUICK
|
Germany
|
4825.0000
|
4825
|
448 |
10695
|
WILMK
|
Finland
|
642.0000
|
642
|
449 |
10696
|
WHITC
|
USA
|
996.0000
|
946.1999999999999
|
450 |
10697
|
LINOD
|
Venezuela
|
1073.9000
|
1073.9
|
451 |
10698
|
ERNSH
|
Austria
|
3600.7300
|
3600.73
|
452 |
10699
|
MORGK
|
Germany
|
114.0000
|
114
|
453 |
10700
|
SAVEA
|
USA
|
2048.0000
|
1843.2
|
454 |
10701
|
HUNGO
|
Ireland
|
3370.0000
|
3370
|
455 |
10702
|
ALFKI
|
Germany
|
330.0000
|
330
|
456 |
10703
|
FOLKO
|
Sweden
|
2545.0000
|
2545
|
457 |
10704
|
QUEEN
|
Brazil
|
595.5000
|
595.5
|
458 |
10705
|
HILAA
|
Venezuela
|
378.0000
|
378
|
459 |
10706
|
OLDWO
|
USA
|
1893.0000
|
1703.7
|
460 |
10707
|
AROUT
|
UK
|
1704.0000
|
1704
|
461 |
10708
|
THEBI
|
USA
|
180.4000
|
171.38
|
462 |
10709
|
GOURL
|
Brazil
|
3424.0000
|
3424
|
463 |
10710
|
FRANS
|
Italy
|
93.5000
|
93.5
|
464 |
10711
|
SAVEA
|
USA
|
4451.7000
|
4006.5299999999997
|
465 |
10712
|
HUNGO
|
Ireland
|
1238.4000
|
1238.4
|
466 |
10713
|
SAVEA
|
USA
|
2827.9000
|
2545.11
|
467 |
10714
|
SAVEA
|
USA
|
2941.0000
|
2646.9
|
468 |
10715
|
BONAP
|
France
|
1296.0000
|
1296
|
469 |
10716
|
RANCH
|
Argentina
|
706.0000
|
706
|
470 |
10717
|
FRANK
|
Germany
|
1331.7500
|
1331.75
|
471 |
10718
|
KOENE
|
Germany
|
3463.0000
|
3463
|
472 |
10719
|
LETSS
|
USA
|
1125.6700
|
1013.1030000000001
|
473 |
10720
|
QUEDE
|
Brazil
|
550.0000
|
550
|
474 |
10721
|
QUICK
|
Germany
|
972.5000
|
972.5
|
475 |
10722
|
SAVEA
|
USA
|
1570.0000
|
1413
|
476 |
10723
|
WHITC
|
USA
|
468.4500
|
445.0275
|
477 |
10724
|
MEREP
|
Canada
|
638.5000
|
587.4200000000001
|
478 |
10725
|
FAMIA
|
Brazil
|
287.8000
|
287.8
|
479 |
10726
|
EASTC
|
UK
|
655.0000
|
655
|
480 |
10727
|
REGGC
|
Italy
|
1710.0000
|
1710
|
481 |
10728
|
QUEEN
|
Brazil
|
1296.7500
|
1296.75
|
482 |
10729
|
LINOD
|
Venezuela
|
1850.0000
|
1850
|
483 |
10730
|
BONAP
|
France
|
509.7500
|
509.75
|
484 |
10731
|
CHOPS
|
Switzerland
|
1990.0000
|
1990
|
485 |
10732
|
BONAP
|
France
|
360.0000
|
360
|
486 |
10733
|
BERGS
|
Sweden
|
1459.0000
|
1459
|
487 |
10734
|
GOURL
|
Brazil
|
1498.3500
|
1498.35
|
488 |
10735
|
LETSS
|
USA
|
596.0000
|
566.1999999999999
|
489 |
10736
|
HUNGO
|
Ireland
|
997.0000
|
997
|
490 |
10737
|
VINET
|
France
|
139.8000
|
139.8
|
491 |
10738
|
SPECD
|
France
|
52.3500
|
52.35
|
492 |
10739
|
VINET
|
France
|
240.0000
|
240
|
493 |
10740
|
WHITC
|
USA
|
1770.0000
|
1593
|
494 |
10741
|
AROUT
|
UK
|
285.0000
|
285
|
495 |
10742
|
BOTTM
|
Canada
|
3118.0000
|
2868.56
|
496 |
10743
|
AROUT
|
UK
|
336.0000
|
336
|
497 |
10744
|
VAFFE
|
Denmark
|
920.0000
|
920
|
498 |
10745
|
QUICK
|
Germany
|
4529.8000
|
4529.8
|
499 |
10746
|
CHOPS
|
Switzerland
|
2311.7000
|
2311.7
|
500 |
10747
|
PICCO
|
Austria
|
1912.8500
|
1912.85
|
501 |
10748
|
SAVEA
|
USA
|
2196.0000
|
1976.4
|
502 |
10749
|
ISLAT
|
UK
|
1080.0000
|
1080
|
503 |
10750
|
WARTH
|
Finland
|
1871.2500
|
1871.25
|
504 |
10751
|
RICSU
|
Switzerland
|
1701.4600
|
1701.46
|
505 |
10752
|
NORTS
|
UK
|
252.0000
|
252
|
506 |
10753
|
FRANS
|
Italy
|
88.0000
|
88
|
507 |
10754
|
MAGAA
|
Italy
|
55.2000
|
55.2
|
508 |
10755
|
BONAP
|
France
|
2598.0000
|
2598
|
509 |
10756
|
SPLIR
|
USA
|
2487.5000
|
2238.75
|
510 |
10757
|
SAVEA
|
USA
|
3082.0000
|
2773.8
|
511 |
10758
|
RICSU
|
Switzerland
|
1644.6000
|
1644.6
|
512 |
10759
|
ANATR
|
Mexico
|
320.0000
|
320
|
513 |
10760
|
MAISD
|
Belgium
|
3304.0000
|
3304
|
514 |
10761
|
RATTC
|
USA
|
629.5000
|
598.025
|
515 |
10762
|
FOLKO
|
Sweden
|
4337.0000
|
4337
|
516 |
10763
|
FOLIG
|
France
|
616.0000
|
616
|
517 |
10764
|
ERNSH
|
Austria
|
2540.0000
|
2540
|
518 |
10765
|
QUICK
|
Germany
|
1684.0000
|
1684
|
519 |
10766
|
OTTIK
|
Germany
|
2310.0000
|
2310
|
520 |
10767
|
SUPRD
|
Belgium
|
28.0000
|
28
|
521 |
10768
|
AROUT
|
UK
|
1477.0000
|
1477
|
522 |
10769
|
VAFFE
|
Denmark
|
1704.0000
|
1704
|
523 |
10770
|
HANAR
|
Brazil
|
315.0000
|
315
|
524 |
10771
|
ERNSH
|
Austria
|
344.0000
|
344
|
525 |
10772
|
LEHMS
|
Germany
|
3603.2200
|
3603.22
|
526 |
10773
|
ERNSH
|
Austria
|
2216.2500
|
2216.25
|
527 |
10774
|
FOLKO
|
Sweden
|
875.0000
|
875
|
528 |
10775
|
THECR
|
USA
|
228.0000
|
216.6
|
529 |
10776
|
ERNSH
|
Austria
|
6984.5000
|
6984.5
|
530 |
10777
|
GOURL
|
Brazil
|
280.0000
|
280
|
531 |
10778
|
BERGS
|
Sweden
|
96.5000
|
96.5
|
532 |
10779
|
MORGK
|
Germany
|
1335.0000
|
1335
|
533 |
10780
|
LILAS
|
Venezuela
|
720.0000
|
720
|
534 |
10781
|
WARTH
|
Finland
|
1132.3500
|
1132.35
|
535 |
10782
|
CACTU
|
Argentina
|
12.5000
|
12.5
|
536 |
10783
|
HANAR
|
Brazil
|
1442.5000
|
1442.5
|
537 |
10784
|
MAGAA
|
Italy
|
1650.0000
|
1650
|
538 |
10785
|
GROSR
|
Venezuela
|
387.5000
|
387.5
|
539 |
10786
|
QUEEN
|
Brazil
|
1913.8500
|
1913.85
|
540 |
10787
|
LAMAI
|
France
|
2760.8000
|
2760.8
|
541 |
10788
|
QUICK
|
Germany
|
770.0000
|
770
|
542 |
10789
|
FOLIG
|
France
|
3687.0000
|
3687
|
543 |
10790
|
GOURL
|
Brazil
|
850.0000
|
850
|
544 |
10791
|
FRANK
|
Germany
|
1926.0600
|
1926.06
|
545 |
10792
|
WOLZA
|
Poland
|
399.8500
|
399.85
|
546 |
10793
|
AROUT
|
UK
|
191.1000
|
191.1
|
547 |
10794
|
QUEDE
|
Brazil
|
393.4500
|
393.45
|
548 |
10795
|
ERNSH
|
Austria
|
2499.2500
|
2499.25
|
549 |
10796
|
HILAA
|
Venezuela
|
2878.0800
|
2878.08
|
550 |
10797
|
DRACD
|
Germany
|
420.0000
|
420
|
551 |
10798
|
ISLAT
|
UK
|
446.6000
|
446.6
|
552 |
10799
|
KOENE
|
Germany
|
1585.0000
|
1585
|
553 |
10800
|
SEVES
|
UK
|
1632.1500
|
1632.15
|
554 |
10801
|
BOLID
|
Spain
|
4035.8000
|
4035.8
|
555 |
10802
|
SIMOB
|
Denmark
|
3923.7500
|
3923.75
|
556 |
10803
|
WELLI
|
Brazil
|
1255.8000
|
1255.8
|
557 |
10804
|
SEVES
|
UK
|
2290.4000
|
2290.4
|
558 |
10805
|
THEBI
|
USA
|
2775.0000
|
2497.5
|
559 |
10806
|
VICTE
|
France
|
572.1000
|
572.1
|
560 |
10807
|
FRANS
|
Italy
|
18.4000
|
18.4
|
561 |
10808
|
OLDWO
|
USA
|
1660.0000
|
1494
|
562 |
10809
|
WELLI
|
Brazil
|
140.0000
|
140
|
563 |
10810
|
LAUGB
|
Canada
|
187.0000
|
172.04000000000002
|
564 |
10811
|
LINOD
|
Venezuela
|
852.0000
|
852
|
565 |
10812
|
REGGC
|
Italy
|
1852.0000
|
1852
|
566 |
10813
|
RICAR
|
Brazil
|
648.0000
|
648
|
567 |
10814
|
VICTE
|
France
|
2070.0000
|
2070
|
568 |
10815
|
SAVEA
|
USA
|
40.0000
|
38
|
569 |
10816
|
GREAL
|
USA
|
8891.0000
|
8001.900000000001
|
570 |
10817
|
KOENE
|
Germany
|
11490.7000
|
11490.7
|
571 |
10818
|
MAGAA
|
Italy
|
833.0000
|
833
|
572 |
10819
|
CACTU
|
Argentina
|
477.0000
|
477
|
573 |
10820
|
RATTC
|
USA
|
1140.0000
|
1026
|
574 |
10821
|
SPLIR
|
USA
|
678.0000
|
644.1
|
575 |
10822
|
TRAIH
|
USA
|
237.9000
|
226.005
|
576 |
10823
|
LILAS
|
Venezuela
|
3107.5000
|
3107.5
|
577 |
10824
|
FOLKO
|
Sweden
|
250.8000
|
250.8
|
578 |
10825
|
DRACD
|
Germany
|
1030.7600
|
1030.76
|
579 |
10826
|
BLONP
|
France
|
730.0000
|
730
|
580 |
10827
|
BONAP
|
France
|
843.0000
|
843
|
581 |
10828
|
RANCH
|
Argentina
|
932.0000
|
932
|
582 |
10829
|
ISLAT
|
UK
|
1764.0000
|
1764
|
583 |
10830
|
TRADH
|
Brazil
|
1974.0000
|
1974
|
584 |
10831
|
SANTG
|
Norway
|
2684.4000
|
2684.4
|
585 |
10832
|
LAMAI
|
France
|
568.9500
|
568.95
|
586 |
10833
|
OTTIK
|
Germany
|
1007.7000
|
1007.7
|
587 |
10834
|
TRADH
|
Brazil
|
1508.1200
|
1508.12
|
588 |
10835
|
ALFKI
|
Germany
|
851.0000
|
851
|
589 |
10836
|
ERNSH
|
Austria
|
4705.5000
|
4705.5
|
590 |
10837
|
BERGS
|
Sweden
|
1254.0000
|
1254
|
591 |
10838
|
LINOD
|
Venezuela
|
2584.5000
|
2584.5
|
592 |
10839
|
TRADH
|
Brazil
|
919.5000
|
919.5
|
593 |
10840
|
LINOD
|
Venezuela
|
264.0000
|
264
|
594 |
10841
|
SUPRD
|
Belgium
|
4581.0000
|
4581
|
595 |
10842
|
TORTU
|
Mexico
|
975.0000
|
975
|
596 |
10843
|
VICTE
|
France
|
212.0000
|
212
|
597 |
10844
|
PICCO
|
Austria
|
735.0000
|
735
|
598 |
10845
|
QUICK
|
Germany
|
4059.0000
|
4059
|
599 |
10846
|
SUPRD
|
Belgium
|
1112.0000
|
1112
|
600 |
10847
|
SAVEA
|
USA
|
6164.9000
|
5548.41
|
601 |
10848
|
CONSH
|
UK
|
931.5000
|
931.5
|
602 |
10849
|
KOENE
|
Germany
|
1052.1400
|
1052.14
|
603 |
10850
|
VICTE
|
France
|
740.0000
|
740
|
604 |
10851
|
RICAR
|
Brazil
|
2740.0000
|
2740
|
605 |
10852
|
RATTC
|
USA
|
2984.0000
|
2685.6
|
606 |
10853
|
BLAUS
|
Germany
|
625.0000
|
625
|
607 |
10854
|
ERNSH
|
Austria
|
3490.0000
|
3490
|
608 |
10855
|
OLDWO
|
USA
|
2275.2500
|
2047.7250000000001
|
609 |
10856
|
ANTON
|
Mexico
|
660.0000
|
660
|
610 |
10857
|
BERGS
|
Sweden
|
2630.9500
|
2630.95
|
611 |
10858
|
LACOR
|
France
|
649.0000
|
649
|
612 |
10859
|
FRANK
|
Germany
|
1438.2500
|
1438.25
|
613 |
10860
|
FRANR
|
France
|
519.0000
|
519
|
614 |
10861
|
WHITC
|
USA
|
3523.4000
|
3171.06
|
615 |
10862
|
LEHMS
|
Germany
|
581.0000
|
581
|
616 |
10863
|
HILAA
|
Venezuela
|
519.0000
|
519
|
617 |
10864
|
AROUT
|
UK
|
282.0000
|
282
|
618 |
10865
|
QUICK
|
Germany
|
17250.0000
|
17250
|
619 |
10866
|
BERGS
|
Sweden
|
1461.6000
|
1461.6
|
620 |
10867
|
LONEP
|
USA
|
98.4000
|
93.48
|
621 |
10868
|
QUEEN
|
Brazil
|
2004.6000
|
2004.6
|
622 |
10869
|
SEVES
|
UK
|
1630.0000
|
1630
|
623 |
10870
|
WOLZA
|
Poland
|
160.0000
|
160
|
624 |
10871
|
BONAP
|
France
|
2083.4000
|
2083.4
|
625 |
10872
|
GODOS
|
Spain
|
2166.8000
|
2166.8
|
626 |
10873
|
WILMK
|
Finland
|
336.8000
|
336.8
|
627 |
10874
|
GODOS
|
Spain
|
310.0000
|
310
|
628 |
10875
|
BERGS
|
Sweden
|
729.5000
|
729.5
|
629 |
10876
|
BONAP
|
France
|
917.0000
|
917
|
630 |
10877
|
RICAR
|
Brazil
|
2086.0000
|
2086
|
631 |
10878
|
QUICK
|
Germany
|
1620.0000
|
1620
|
632 |
10879
|
WILMK
|
Finland
|
611.3000
|
611.3
|
633 |
10880
|
FOLKO
|
Sweden
|
1875.0000
|
1875
|
634 |
10881
|
CACTU
|
Argentina
|
150.0000
|
150
|
635 |
10882
|
SAVEA
|
USA
|
988.4000
|
938.9799999999999
|
636 |
10883
|
LONEP
|
USA
|
36.0000
|
34.199999999999996
|
637 |
10884
|
LETSS
|
USA
|
1450.6000
|
1305.54
|
638 |
10885
|
SUPRD
|
Belgium
|
1209.0000
|
1209
|
639 |
10886
|
HANAR
|
Brazil
|
3127.5000
|
3127.5
|
640 |
10887
|
GALED
|
Spain
|
70.0000
|
70
|
641 |
10888
|
GODOS
|
Spain
|
605.0000
|
605
|
642 |
10889
|
RATTC
|
USA
|
11380.0000
|
10242
|
643 |
10890
|
DUMON
|
France
|
860.1000
|
860.1
|
644 |
10891
|
LEHMS
|
Germany
|
388.3500
|
388.35
|
645 |
10892
|
MAISD
|
Belgium
|
2200.0000
|
2200
|
646 |
10893
|
KOENE
|
Germany
|
5502.1100
|
5502.11
|
647 |
10894
|
SAVEA
|
USA
|
2898.0000
|
2608.2000000000003
|
648 |
10895
|
ERNSH
|
Austria
|
6379.4000
|
6379.4
|
649 |
10896
|
MAISD
|
Belgium
|
750.5000
|
750.5
|
650 |
10897
|
HUNGO
|
Ireland
|
10835.2400
|
10835.24
|
651 |
10898
|
OCEAN
|
Argentina
|
30.0000
|
30
|
652 |
10899
|
LILAS
|
Venezuela
|
144.0000
|
144
|
653 |
10900
|
WELLI
|
Brazil
|
45.0000
|
45
|
654 |
10901
|
HILAA
|
Venezuela
|
934.5000
|
934.5
|
655 |
10902
|
FOLKO
|
Sweden
|
1015.8000
|
1015.8
|
656 |
10903
|
HANAR
|
Brazil
|
932.0500
|
932.05
|
657 |
10904
|
WHITC
|
USA
|
1924.2500
|
1731.825
|
658 |
10905
|
WELLI
|
Brazil
|
360.0000
|
360
|
659 |
10906
|
WOLZA
|
Poland
|
427.5000
|
427.5
|
660 |
10907
|
SPECD
|
France
|
108.5000
|
108.5
|
661 |
10908
|
REGGC
|
Italy
|
698.0000
|
698
|
662 |
10909
|
SANTG
|
Norway
|
670.0000
|
670
|
663 |
10910
|
WILMK
|
Finland
|
452.9000
|
452.9
|
664 |
10911
|
GODOS
|
Spain
|
858.0000
|
858
|
665 |
10912
|
HUNGO
|
Ireland
|
8267.4000
|
8267.4
|
666 |
10913
|
QUEEN
|
Brazil
|
958.7500
|
958.75
|
667 |
10914
|
QUEEN
|
Brazil
|
537.5000
|
537.5
|
668 |
10915
|
TORTU
|
Mexico
|
539.5000
|
539.5
|
669 |
10916
|
RANCH
|
Argentina
|
686.7000
|
686.7
|
670 |
10917
|
ROMEY
|
Spain
|
365.8900
|
365.89
|
671 |
10918
|
BOTTM
|
Canada
|
1930.0000
|
1775.6000000000001
|
672 |
10919
|
LINOD
|
Venezuela
|
1122.8000
|
1122.8
|
673 |
10920
|
AROUT
|
UK
|
390.0000
|
390
|
674 |
10921
|
VAFFE
|
Denmark
|
1936.0000
|
1936
|
675 |
10922
|
HANAR
|
Brazil
|
742.5000
|
742.5
|
676 |
10923
|
LAMAI
|
France
|
936.0000
|
936
|
677 |
10924
|
BERGS
|
Sweden
|
2034.5000
|
2034.5
|
678 |
10925
|
HANAR
|
Brazil
|
559.0000
|
559
|
679 |
10926
|
ANATR
|
Mexico
|
514.4000
|
514.4
|
680 |
10927
|
LACOR
|
France
|
800.0000
|
800
|
681 |
10928
|
GALED
|
Spain
|
137.5000
|
137.5
|
682 |
10929
|
FRANK
|
Germany
|
1174.7500
|
1174.75
|
683 |
10930
|
SUPRD
|
Belgium
|
2455.0000
|
2455
|
684 |
10931
|
RICSU
|
Switzerland
|
837.0000
|
837
|
685 |
10932
|
BONAP
|
France
|
1925.5000
|
1925.5
|
686 |
10933
|
ISLAT
|
UK
|
920.6000
|
920.6
|
687 |
10934
|
LEHMS
|
Germany
|
500.0000
|
500
|
688 |
10935
|
WELLI
|
Brazil
|
700.0000
|
700
|
689 |
10936
|
GREAL
|
USA
|
570.0000
|
541.5
|
690 |
10937
|
CACTU
|
Argentina
|
644.8000
|
644.8
|
691 |
10938
|
QUICK
|
Germany
|
3642.5000
|
3642.5
|
692 |
10939
|
MAGAA
|
Italy
|
750.0000
|
750
|
693 |
10940
|
BONAP
|
France
|
360.0000
|
360
|
694 |
10941
|
SAVEA
|
USA
|
4769.0000
|
4292.1
|
695 |
10942
|
REGGC
|
Italy
|
560.0000
|
560
|
696 |
10943
|
BSBEV
|
UK
|
711.0000
|
711
|
697 |
10944
|
BOTTM
|
Canada
|
1139.1000
|
1047.972
|
698 |
10945
|
MORGK
|
Germany
|
245.0000
|
245
|
699 |
10946
|
VAFFE
|
Denmark
|
1407.5000
|
1407.5
|
700 |
10947
|
BSBEV
|
UK
|
220.0000
|
220
|
701 |
10948
|
GODOS
|
Spain
|
2362.2500
|
2362.25
|
702 |
10949
|
BOTTM
|
Canada
|
4422.0000
|
4068.2400000000002
|
703 |
10950
|
MAGAA
|
Italy
|
110.0000
|
110
|
704 |
10951
|
RICSU
|
Switzerland
|
482.9000
|
482.9
|
705 |
10952
|
ALFKI
|
Germany
|
491.2000
|
491.2
|
706 |
10953
|
AROUT
|
UK
|
4675.0000
|
4675
|
707 |
10954
|
LINOD
|
Venezuela
|
1902.1000
|
1902.1
|
708 |
10955
|
FOLKO
|
Sweden
|
93.0000
|
93
|
709 |
10956
|
BLAUS
|
Germany
|
677.0000
|
677
|
710 |
10957
|
HILAA
|
Venezuela
|
1762.7000
|
1762.7
|
711 |
10958
|
OCEAN
|
Argentina
|
781.0000
|
781
|
712 |
10959
|
GOURL
|
Brazil
|
155.0000
|
155
|
713 |
10960
|
HILAA
|
Venezuela
|
276.6000
|
276.6
|
714 |
10961
|
QUEEN
|
Brazil
|
1122.0000
|
1122
|
715 |
10962
|
QUICK
|
Germany
|
3584.0000
|
3584
|
716 |
10963
|
FURIB
|
Portugal
|
68.0000
|
68
|
717 |
10964
|
SPECD
|
France
|
2052.5000
|
2052.5
|
718 |
10965
|
OLDWO
|
USA
|
848.0000
|
805.5999999999999
|
719 |
10966
|
CHOPS
|
Switzerland
|
1255.6000
|
1255.6
|
720 |
10967
|
TOMSP
|
Germany
|
910.4000
|
910.4
|
721 |
10968
|
ERNSH
|
Austria
|
1408.0000
|
1408
|
722 |
10969
|
COMMI
|
Brazil
|
108.0000
|
108
|
723 |
10970
|
BOLID
|
Spain
|
280.0000
|
280
|
724 |
10971
|
FRANR
|
France
|
1733.0600
|
1733.06
|
725 |
10972
|
LACOR
|
France
|
251.5000
|
251.5
|
726 |
10973
|
LACOR
|
France
|
291.5500
|
291.55
|
727 |
10974
|
SPLIR
|
USA
|
439.0000
|
417.04999999999995
|
728 |
10975
|
BOTTM
|
Canada
|
717.5000
|
660.1
|
729 |
10976
|
HILAA
|
Venezuela
|
912.0000
|
912
|
730 |
10977
|
FOLKO
|
Sweden
|
2233.0000
|
2233
|
731 |
10978
|
MAISD
|
Belgium
|
1500.7000
|
1500.7
|
732 |
10979
|
ERNSH
|
Austria
|
4813.5000
|
4813.5
|
733 |
10980
|
FOLKO
|
Sweden
|
310.0000
|
310
|
734 |
10981
|
HANAR
|
Brazil
|
15810.0000
|
15810
|
735 |
10982
|
BOTTM
|
Canada
|
1014.0000
|
932.88
|
736 |
10983
|
SAVEA
|
USA
|
796.5000
|
756.675
|
737 |
10984
|
SAVEA
|
USA
|
1809.7500
|
1628.775
|
738 |
10985
|
HUNGO
|
Ireland
|
2248.2000
|
2248.2
|
739 |
10986
|
OCEAN
|
Argentina
|
2220.0000
|
2220
|
740 |
10987
|
EASTC
|
UK
|
2772.0000
|
2772
|
741 |
10988
|
RATTC
|
USA
|
3772.0000
|
3394.8
|
742 |
10989
|
QUEDE
|
Brazil
|
1353.6000
|
1353.6
|
743 |
10990
|
ERNSH
|
Austria
|
4931.0000
|
4931
|
744 |
10991
|
QUICK
|
Germany
|
2870.0000
|
2870
|
745 |
10992
|
THEBI
|
USA
|
69.6000
|
66.11999999999999
|
746 |
10993
|
FOLKO
|
Sweden
|
6527.2500
|
6527.25
|
747 |
10994
|
VAFFE
|
Denmark
|
990.0000
|
990
|
748 |
10995
|
PERIC
|
Mexico
|
1196.0000
|
1196
|
749 |
10996
|
QUICK
|
Germany
|
560.0000
|
560
|
750 |
10997
|
LILAS
|
Venezuela
|
1980.0000
|
1980
|
751 |
10998
|
WOLZA
|
Poland
|
686.0000
|
686
|
752 |
10999
|
OTTIK
|
Germany
|
1261.0000
|
1261
|
753 |
11000
|
RATTC
|
USA
|
1075.0000
|
967.5
|
754 |
11001
|
FOLKO
|
Sweden
|
2769.0000
|
2769
|
755 |
11002
|
SAVEA
|
USA
|
1902.0000
|
1711.8
|
756 |
11003
|
THECR
|
USA
|
326.0000
|
309.7
|
757 |
11004
|
MAISD
|
Belgium
|
295.3800
|
295.38
|
758 |
11005
|
WILMK
|
Finland
|
586.0000
|
586
|
759 |
11006
|
GREAL
|
USA
|
391.5800
|
372.001
|
760 |
11007
|
PRINI
|
Portugal
|
2633.9000
|
2633.9
|
761 |
11008
|
ERNSH
|
Austria
|
4903.5000
|
4903.5
|
762 |
11009
|
GODOS
|
Spain
|
702.0000
|
702
|
763 |
11010
|
REGGC
|
Italy
|
645.0000
|
645
|
764 |
11011
|
ALFKI
|
Germany
|
960.0000
|
960
|
765 |
11012
|
FRANK
|
Germany
|
2974.0000
|
2974
|
766 |
11013
|
ROMEY
|
Spain
|
361.0000
|
361
|
767 |
11014
|
LINOD
|
Venezuela
|
270.2000
|
270.2
|
768 |
11015
|
SANTG
|
Norway
|
622.3500
|
622.35
|
769 |
11016
|
AROUT
|
UK
|
491.5000
|
491.5
|
770 |
11017
|
ERNSH
|
Austria
|
6750.0000
|
6750
|
771 |
11018
|
LONEP
|
USA
|
1575.0000
|
1417.5
|
772 |
11019
|
RANCH
|
Argentina
|
76.0000
|
76
|
773 |
11020
|
OTTIK
|
Germany
|
744.0000
|
744
|
774 |
11021
|
QUICK
|
Germany
|
6941.4900
|
6941.49
|
775 |
11022
|
HANAR
|
Brazil
|
1402.0000
|
1402
|
776 |
11023
|
BSBEV
|
UK
|
1500.0000
|
1500
|
777 |
11024
|
EASTC
|
UK
|
1966.8100
|
1966.81
|
778 |
11025
|
WARTH
|
Finland
|
300.0000
|
300
|
779 |
11026
|
FRANS
|
Italy
|
1030.0000
|
1030
|
780 |
11027
|
BOTTM
|
Canada
|
1170.3000
|
1076.676
|
781 |
11028
|
KOENE
|
Germany
|
2160.0000
|
2160
|
782 |
11029
|
CHOPS
|
Switzerland
|
1286.8000
|
1286.8
|
783 |
11030
|
SAVEA
|
USA
|
16321.9000
|
14689.71
|
784 |
11031
|
SAVEA
|
USA
|
2393.5000
|
2154.15
|
785 |
11032
|
WHITC
|
USA
|
8902.5000
|
8012.25
|
786 |
11033
|
RICSU
|
Switzerland
|
3592.0000
|
3592
|
787 |
11034
|
OLDWO
|
USA
|
554.4000
|
526.68
|
788 |
11035
|
SUPRD
|
Belgium
|
1754.5000
|
1754.5
|
789 |
11036
|
DRACD
|
Germany
|
1692.0000
|
1692
|
790 |
11037
|
GODOS
|
Spain
|
60.0000
|
60
|
791 |
11038
|
SUPRD
|
Belgium
|
751.0000
|
751
|
792 |
11039
|
LINOD
|
Venezuela
|
3090.0000
|
3090
|
793 |
11040
|
GREAL
|
USA
|
200.0000
|
190
|
794 |
11041
|
CHOPS
|
Switzerland
|
1887.0000
|
1887
|
795 |
11042
|
COMMI
|
Brazil
|
405.7500
|
405.75
|
796 |
11043
|
SPECD
|
France
|
210.0000
|
210
|
797 |
11044
|
WOLZA
|
Poland
|
591.6000
|
591.6
|
798 |
11045
|
BOTTM
|
Canada
|
1309.5000
|
1204.74
|
799 |
11046
|
WANDK
|
Germany
|
1564.0000
|
1564
|
800 |
11047
|
EASTC
|
UK
|
1090.5000
|
1090.5
|
801 |
11048
|
BOTTM
|
Canada
|
525.0000
|
483
|
802 |
11049
|
GOURL
|
Brazil
|
342.0000
|
342
|
803 |
11050
|
FOLKO
|
Sweden
|
900.0000
|
900
|
804 |
11051
|
LAMAI
|
France
|
45.0000
|
45
|
805 |
11052
|
HANAR
|
Brazil
|
1665.0000
|
1665
|
806 |
11053
|
PICCO
|
Austria
|
3658.7500
|
3658.75
|
807 |
11054
|
CACTU
|
Argentina
|
305.0000
|
305
|
808 |
11055
|
HILAA
|
Venezuela
|
1727.5000
|
1727.5
|
809 |
11056
|
EASTC
|
UK
|
3740.0000
|
3740
|
810 |
11057
|
NORTS
|
UK
|
45.0000
|
45
|
811 |
11058
|
BLAUS
|
Germany
|
858.0000
|
858
|
812 |
11059
|
RICAR
|
Brazil
|
1838.0000
|
1838
|
813 |
11060
|
FRANS
|
Italy
|
266.0000
|
266
|
814 |
11061
|
GREAL
|
USA
|
510.0000
|
484.5
|
815 |
11062
|
REGGC
|
Italy
|
508.0000
|
508
|
816 |
11063
|
HUNGO
|
Ireland
|
1445.5000
|
1445.5
|
817 |
11064
|
SAVEA
|
USA
|
4722.3000
|
4250.070000000001
|
818 |
11065
|
LILAS
|
Venezuela
|
252.5600
|
252.56
|
819 |
11066
|
WHITC
|
USA
|
928.7500
|
882.3125
|
820 |
11067
|
DRACD
|
Germany
|
86.8500
|
86.85
|
821 |
11068
|
QUEEN
|
Brazil
|
2384.8000
|
2384.8
|
822 |
11069
|
TORTU
|
Mexico
|
360.0000
|
360
|
823 |
11070
|
LEHMS
|
Germany
|
1873.5000
|
1873.5
|
824 |
11071
|
LILAS
|
Venezuela
|
510.0000
|
510
|
825 |
11072
|
ERNSH
|
Austria
|
5218.0000
|
5218
|
826 |
11073
|
PERIC
|
Mexico
|
300.0000
|
300
|
827 |
11074
|
SIMOB
|
Denmark
|
244.3000
|
244.3
|
828 |
11075
|
RICSU
|
Switzerland
|
586.0000
|
586
|
829 |
11076
|
BONAP
|
France
|
1057.0000
|
1057
|
830 |
11077
|
RATTC
|
USA
|
1374.6000
|
1237.1399999999999
|