Home Work of Dplyr (Rstudio)
# Use package dplyr to explore WestRoxbury real estate dataset
d = read.csv(“WestRoxbury.csv”)
View(d)
# Questions
# 1) Filter the data to show only houses whose total value
# is greater than 350 (thousand), less than 20 years of age,
# and tax is less than 5000. HINT: use Mutate to calculate
# age of the house as of 2020.
# 2) Sort the dataset by (age, total value), then show
# only age, total value, lot sqft, and rooms. Assign entire
# output to a variable named sortedD. Now using standard base R, show only
# first 10 rows of sortedD.
# 3) A potential buyer is looking for a house which will have at least 8 rooms,
# in exactly one floor, have a fireplace, and built in between 1970 and 1990.
# Arrange these houses sorted by total value.
# Finally, assign the result to a new variable named custList.
# View custList.
# 4) Summarize the dataset by first grouping on age, then calculate
# count of each group, mean, min, and max of total value. Then,
# order the resulting output (in descending order) by count. Finally, assign the result
# to a new variable named groupedD.
# View groupedD.
TOTAL VALUE ,TAX,LOT SQFT ,YR BUILT,GROSS AREA ,LIVING AREA,FLOORS ,ROOMS,BEDROOMS ,FULL BATH,HALF BATH,KITCHEN,FIREPLACE,REMODEL
344.2,4330,9965,1880,2436,1352,2,6,3,1,1,1,0,None
412.6,5190,6590,1945,3108,1976,2,10,4,2,1,1,0,Recent
330.1,4152,7500,1890,2294,1371,2,8,4,1,1,1,0,None
498.6,6272,13773,1957,5032,2608,1,9,5,1,1,1,1,None
331.5,4170,5000,1910,2370,1438,2,7,3,2,0,1,0,None
337.4,4244,5142,1950,2124,1060,1,6,3,1,0,1,1,Old
359.4,4521,5000,1954,3220,1916,2,7,3,1,1,1,0,None
320.4,4030,10000,1950,2208,1200,1,6,3,1,0,1,0,None
333.5,4195,6835,1958,2582,1092,1,5,3,1,0,1,1,Recent
409.4,5150,5093,1900,4818,2992,2,8,4,2,0,1,0,None
313,3937,5000,1960,2624,1485,1.5,6,3,2,0,1,1,None
344.5,4333,6768,1958,2844,1460,1.5,6,3,2,0,1,1,None
315.5,3968,5000,1889,2196,1290,2,6,3,1,0,1,0,None
575,7233,12288,2004,4616,2378,2,9,4,2,1,1,1,None
326.2,4103,5000,1954,2536,1272,1.5,6,3,1,1,1,1,None
298.2,3751,5000,1940,2129,864,1,7,3,2,0,1,0,None
313.1,3938,6949,1880,2612,1438,1.5,7,3,1,1,1,0,Old
344.9,4338,10000,1950,2099,1445,1,7,3,1,1,1,1,None
330.7,4160,5000,1910,2408,1470,2,7,3,1,0,1,0,None
348,4377,9001,1875,2840,1632,2,7,3,1,0,1,0,None
317.5,3994,4450,1920,1400,1232,2,7,3,1,0,1,0,None
330.8,4161,5000,1889,2560,1302,1.5,6,2,1,0,1,0,Recent
357.8,4501,12255,1944,2631,1275,1.5,6,3,1,1,1,1,None
414.7,5216,12972,1892,3796,2054,1.5,6,3,3,0,1,0,None
318.8,4010,4717,1900,2512,1371,2,7,3,1,1,1,0,None
346.2,4355,5000,1910,2655,1541,2,7,3,1,0,1,0,None
245.1,3083,4142,1880,1892,927,1.5,5,2,1,0,1,0,None
317.4,3992,5000,1910,2596,1244,1.5,7,3,1,0,1,0,None
247.3,3111,4012,1896,1994,1048,1.5,6,3,1,0,1,0,None
320.8,4035,13275,1910,1516,808,1.5,6,2,1,1,1,0,None
328.8,4136,4717,1906,2824,1469,1.5,6,3,2,0,1,0,None
293.6,3693,4289,1910,2286,1436,2,7,3,1,0,1,0,None
280.1,3523,10688,1890,3014,1625,2,7,4,1,0,1,0,None
342.5,4308,4717,1925,2802,1620,2,7,3,1,1,1,0,None
337.2,4241,5000,1920,3112,1906,2,9,4,2,0,1,0,None
336.5,4233,6842,1910,2269,1393,2,6,3,2,0,1,0,None
315.6,3970,6675,1945,2392,1394,1.5,6,2,2,0,1,0,None
296.5,3729,5683,1960,2982,1452,1,6,3,1,1,1,1,None
239.7,3015,5450,1963,2112,960,1,5,3,1,0,1,1,None
318.4,4005,4717,1915,3222,1803,1,7,3,1,1,1,0,None
431.5,5428,6733,1990,2880,1792,2,7,3,2,1,1,1,Old
349.8,4400,7242,1910,2496,1460,2,7,3,1,1,1,0,None
344,4327,5683,1940,3136,1870,2,9,4,2,0,1,1,None
358.3,4507,6138,1910,2500,1690,2,7,3,1,1,1,0,None
346.2,4355,11250,1900,2830,1391,1.5,6,3,1,0,1,0,Old
490.7,6173,5683,1995,4100,2640,2,6,3,1,1,1,1,Recent
371.9,4678,7001,1996,2320,1500,2,7,3,2,1,1,1,None
325.3,4092,4717,1910,2592,1572,2,7,3,1,1,1,0,None
340.5,4283,8489,1950,2368,1326,1.5,6,3,1,1,1,1,None
432.5,5440,7139,1996,2340,1500,2,7,3,2,1,1,0,None
334.7,4210,4584,1907,3288,1694,2,7,3,1,1,1,0,None
314.3,3953,7193,1900,2740,1508,2,7,3,1,0,1,0,None
405.5,5101,3867,1996,2431,1560,2,7,3,2,1,1,1,None
326,4101,4262,1960,2090,1300,2,7,3,1,1,1,1,None
285.6,3592,5325,1945,3060,1364,1,5,2,1,0,1,1,None
345.9,4351,8005,1900,2490,1562,2,7,3,1,1,1,1,None
317.3,3991,7234,1910,2289,1440,2,7,3,1,0,1,0,None
277.8,3494,5959,1940,2036,1018,1,5,3,1,1,1,1,None
306.8,3859,7785,1860,2038,1056,1.5,6,3,1,0,1,0,None
265.7,3342,3887,1950,2364,1075,1,6,3,2,0,1,1,Old
356.8,4488,5906,1967,2368,2051,1,8,4,1,1,1,2,None
299.9,3772,5401,1991,1800,1800,2,6,3,1,1,1,1,None
287.8,3620,3204,1991,1800,1800,2,6,3,1,1,1,1,None
296,3723,2947,1991,1800,1800,2,6,3,1,1,1,1,None
300.6,3781,4241,1991,1800,1800,2,6,3,1,1,1,1,None
566.3,7124,8249,2007,4390,2708,2,8,4,2,1,1,1,None
286,3597,7655,1910,3013,1318,1.5,7,3,1,0,1,0,None
351.2,4418,10000,1875,2232,1392,2,7,3,1,1,1,0,None
365.1,4592,5058,1910,3362,1763,2,8,4,2,0,1,0,Recent
330,4151,6330,1940,2644,1386,1.5,6,3,1,0,1,0,None
354.1,4454,4984,1940,2441,1464,2,7,3,1,1,1,1,Recent
335.8,4224,6111,1964,2262,1740,1,7,3,1,1,1,1,None
345,4340,20000,1900,1754,845,1.5,6,3,1,0,1,0,None
356.4,4483,5967,1942,3442,1836,2,8,3,2,0,1,0,Old
379,4767,7940,1900,3894,2436,2,8,4,2,0,1,1,None
352.1,4429,6003,1987,2178,1350,2,7,3,2,0,1,0,None
437.3,5501,7000,1997,2628,1680,2,6,3,2,1,1,0,None
404.2,5084,5488,1940,3780,1992,1.5,8,4,2,1,1,1,Recent
283.4,3565,4774,1940,3128,1470,1,5,2,1,0,1,1,None
326.4,4106,6029,1940,2620,1265,1.5,6,3,1,1,1,0,None
309.2,3889,5057,1948,2244,1224,1.5,7,3,2,0,1,0,None
332.9,4187,5682,1940,2484,1488,2,7,3,1,1,1,0,None
260.4,3275,3819,1930,2468,1299,1.5,6,3,1,0,1,0,None
339.3,4268,5651,1940,2454,1306,1.5,6,3,2,1,1,1,Recent
307.9,3873,5005,1928,2078,1369,2,6,3,1,0,1,0,Old
346.3,4356,8145,1940,2664,1546,1.5,6,3,1,0,1,1,Recent
479.1,6027,9642,1999,2952,1872,2,7,4,2,1,1,1,None
335.6,4221,6475,1946,2684,1265,1.5,6,3,1,1,1,0,None
261.5,3289,4175,1940,1536,768,1,4,2,1,0,1,0,None
355.1,4467,5400,1940,2650,1224,1.5,7,3,2,0,1,1,Recent
356.8,4488,5005,1996,2660,1680,2,6,3,2,1,1,1,None
287.3,3614,3288,1955,2764,1503,1.5,7,3,2,1,1,1,None
331.9,4175,5400,1940,2536,1224,1.5,6,3,1,0,1,1,None
387.1,4869,8238,1968,3972,1922,1,9,4,2,0,1,1,None
307.6,3869,5092,1945,2539,1306,1.5,6,3,2,0,1,0,Old
360.9,4540,5400,1950,2508,1440,2,6,3,3,0,1,0,Recent
466.1,5863,8970,1999,2952,1872,2,7,4,2,1,1,1,None
340,4277,5400,1940,2714,1376,1.5,6,3,1,0,1,1,Recent
303.9,3823,8200,1934,2608,1304,1,6,2,2,0,1,1,Recent
303.5,3818,4200,1960,2670,1710,2,10,4,1,1,1,1,None
301.4,3791,6444,1940,2886,1474,1.5,6,3,1,1,1,1,None
339.9,4275,5035,1925,3264,1523,1,6,2,1,0,1,0,Recent
281.3,3538,3960,1955,2590,1630,2,8,4,2,1,1,1,None
530.1,6668,6227,1999,4013,2359,2,8,4,2,1,1,0,None
310.4,3904,3150,1955,2456,1620,2,7,4,1,1,1,1,Old
344.6,4335,8151,1983,4532,2056,1,5,2,1,2,1,1,None
525.1,6605,6257,2001,4124,2494,2,9,4,2,0,1,1,None
285.3,3589,5024,1940,2556,1306,1.5,6,3,2,0,1,0,None
302.3,3802,4200,1930,2272,1352,2,8,3,1,0,1,1,Recent
243.3,3060,3150,1962,2496,1420,1.5,4,2,1,0,1,1,None
334.9,4213,6012,1910,3185,1911,2,7,3,1,1,1,0,None
327.5,4119,5968,1910,3216,1839,2,7,3,1,1,1,0,None
586.6,7379,8890,2001,4791,2774,2,9,4,3,1,1,1,None
347.3,4369,7355,1920,3516,1980,2,7,3,1,1,1,0,None
267.6,3366,5077,1956,876,876,1,5,2,1,0,1,0,None
274.2,3449,3617,1955,2784,1435,1.5,5,2,1,1,1,1,None
404.6,5089,6253,1959,3077,1989,1,6,4,3,0,1,1,Recent
339.9,4275,6300,1960,1730,1625,1,7,4,1,1,1,1,None
420.8,5293,7861,1967,4182,2888,1,12,4,2,1,1,0,None
283.5,3566,4200,1930,2488,1484,2,6,3,1,1,1,0,None
620.3,7803,6255,2001,6016,3446,2,10,4,3,1,1,2,None
346.3,4356,4050,1940,2756,1150,1,6,3,1,1,1,1,Recent
295.07,3711,5131,1945,1840,1486,1.5,6,4,2,0,1,0,Old
297.6,3743,3628,1962,2736,1680,2,7,3,1,1,1,1,None
310.7,3908,6001,1969,2124,2074,1,10,4,2,0,2,2,None
442.6,5567,4800,1999,3960,2282,2,6,3,2,1,1,1,None
277.5,3490,4050,1945,2108,1014,1,6,3,1,1,1,1,None
310.6,3907,3639,1955,2784,1421,1.5,7,3,1,1,1,1,Old
327.1,4114,6754,1960,2705,1340,1,6,3,1,0,1,1,None
307.5,3868,2100,1989,2244,1400,2,6,3,1,1,1,1,None
243.3,3060,4200,1955,2508,1120,1,6,3,1,1,1,1,None
352.8,4438,6001,1965,1964,1826,1,8,3,1,1,1,1,Recent
258.6,3253,5460,1950,2188,1080,1,6,2,1,0,1,1,None
295.5,3717,4050,1960,2592,1387,1.5,6,3,1,1,1,1,None
490.7,6173,6011,1999,4368,2483,2,9,3,2,1,1,1,None
330.3,4155,6317,1969,2385,1440,2,6,3,1,1,1,0,None
290.8,3658,6850,1958,2568,1414,1.5,6,2,1,1,1,1,None
350.7,4411,9600,1950,4063,1636,1,9,3,2,0,2,0,None
301.1,3787,6000,1965,2098,1696,1,7,5,1,1,1,2,None
278.7,3506,6400,1974,2161,1633,1,8,4,2,0,1,1,Old
298.2,3751,5824,1945,2696,1120,1,6,3,1,0,1,0,None
249,3132,4200,1950,1976,988,1,5,2,1,0,1,1,None
287.5,3616,6000,1965,2347,1781,1,8,4,1,1,1,0,None
434.3,5463,13267,1960,3813,1931,1.5,6,2,1,1,1,1,Recent
508.8,6400,3911,2004,3836,2416,2,7,4,3,1,1,1,None
338.8,4262,10537,1910,2100,1380,2,7,3,1,1,1,1,None
363.5,4572,7468,1972,2815,2035,2,10,4,2,1,1,0,Recent
335.3,4218,6400,1974,3404,2612,1,7,4,1,1,1,1,Old
353.5,4447,12600,1955,2910,1347,1,6,3,1,1,1,1,None
291.5,3667,6000,1971,2080,2028,1,8,4,1,1,1,0,None
325.8,4098,4900,1970,2835,1659,2,8,4,2,0,1,1,None
368.2,4631,7200,1900,3223,1669,2,7,3,1,1,1,0,Recent
361.7,4550,6000,1978,2530,1590,2,7,4,2,0,1,0,None
286.3,3601,6000,1965,2296,1781,1,8,4,1,1,1,0,None
315.7,3971,6400,1965,2198,1633,1,8,3,1,1,1,1,Old
282.4,3552,7770,1950,1800,900,1,5,2,1,0,1,1,None
337.5,4245,5914,1925,2594,1131,1,6,3,1,0,1,0,None
320.1,4026,5290,1950,2800,1824,2,7,4,2,0,1,0,Recent
272.9,3433,2800,1920,2663,1430,2,6,3,1,1,1,0,None
243.2,3059,4868,1950,1628,800,1,5,2,1,0,1,1,None
305,3836,7448,1984,2358,1306,1.5,8,3,2,0,1,1,None
277.7,3493,2800,1955,2324,1306,1.5,7,3,2,0,1,1,None
316.9,3986,4449,1910,2302,1208,1.5,6,3,1,2,1,0,Recent
297.1,3737,6000,1971,2456,1997,1,7,3,1,1,1,0,None
467,5874,4800,2003,3924,2206,2,9,4,2,2,1,1,None
302.4,3804,7440,1950,2040,900,1,6,3,1,0,1,0,None
253.2,3185,4200,1955,2507,1403,1.5,6,2,2,0,1,1,None
375.1,4718,6000,1978,2370,1590,2,7,4,2,1,1,0,None
242.9,3055,4151,1920,2068,1248,2,7,3,1,0,1,0,None
307.1,3863,6000,1965,2308,2009,1,9,3,2,0,1,0,None
274.1,3448,6781,1956,2064,1000,1,5,2,1,0,1,1,None
237,2981,3200,1911,1292,1020,2,6,3,1,0,1,0,Old
253,3182,6300,1964,2507,1155,1,6,3,1,0,1,1,None
299.4,3766,6081,1960,2212,1082,1,5,3,1,1,1,1,None
286.9,3609,7912,1955,1848,864,1,6,3,1,0,1,1,None
327.5,4119,6000,1980,2466,1590,2,7,3,1,1,1,0,None
367.5,4623,4895,1989,2728,1800,2,7,4,2,1,1,1,None
308,3874,5160,1920,2658,1452,2,7,3,2,0,1,0,None
516.7,6500,6000,2005,4623,2597,2,11,4,2,1,1,1,None
348.7,4386,7000,1986,2467,1954,1,9,4,2,0,1,1,None
367.1,4618,6750,1956,2216,1216,1,8,3,2,0,2,1,None
299.4,3766,3900,1920,3475,1754,2,7,3,2,1,1,0,Old
296.5,3729,7416,1960,2164,1082,1,6,2,1,1,1,0,None
360,4528,4544,1989,2704,1800,2,6,3,2,1,1,1,None
325.9,4099,3500,1960,2632,1632,2,6,3,2,0,1,1,Old
360.8,4538,6000,1978,2466,1590,2,7,4,1,1,1,0,Old
283,3560,3200,1965,2120,1410,2,7,3,1,1,1,1,Old
368,4629,2295,2002,2718,1728,2,7,3,2,1,1,1,None
297.8,3746,7442,1950,2438,1204,1,6,3,1,0,1,1,None
239.9,3017,2800,1955,2364,1306,1.5,7,3,1,0,1,0,None
293.7,3694,6548,1960,2164,1082,1,5,2,1,0,1,1,None
412.4,5187,6000,1993,2991,1680,2,6,3,1,1,1,1,None
382,4805,7300,1978,2524,1590,2,7,4,1,1,1,0,None
275,3459,4294,1965,2295,1470,2,7,3,1,1,1,1,None
318.2,4002,8001,1925,3228,1408,1,5,2,1,0,1,0,None
266.3,3350,6089,1960,2180,1082,1,5,3,1,0,1,0,None
282.2,3550,4392,1914,2773,1568,2,7,3,1,0,1,0,None
325.2,4091,5950,1962,2448,2293,1,8,3,1,1,2,0,None
287.8,3620,6750,1956,2060,960,1,6,3,1,0,1,1,None
354.2,4455,6000,1926,2936,1650,2,8,3,2,0,1,0,None
289.5,3641,4335,1965,2087,1326,2,7,3,1,1,1,1,Old
186.3,2343,4300,1920,1926,960,1,5,2,1,0,1,1,None
398.1,5008,7287,1999,2892,1800,2,6,3,2,0,1,0,None
283.5,3566,4824,1916,1795,933,1.5,7,3,2,0,1,0,None
254.5,3201,5095,1960,2184,1082,1,5,3,1,0,1,1,None
303.9,3823,6000,1940,1904,1228,2,6,3,1,1,1,0,None
262.1,3297,2100,1900,1800,972,1.5,6,3,1,1,1,0,Recent
273.1,3435,7258,1950,1992,900,1,5,2,1,0,1,1,None
210.9,2653,4281,1929,2047,900,1,5,2,1,0,1,0,None
272.4,3426,4416,1925,2413,1083,1,8,3,1,1,1,1,None
279.6,3517,6026,1960,2376,1487,1,9,3,1,1,1,0,None
348.9,4389,5300,1963,2616,1966,1,8,3,1,1,1,0,None
325.2,4091,6750,1950,2710,1305,1.5,6,3,1,1,1,1,None
323,4063,2100,1900,2414,1544,2.5,6,3,1,0,1,0,Recent
337.3,4243,6730,1963,2926,1871,2,7,3,2,1,1,0,Old
182.7,2298,1616,1920,1439,856,2,5,2,1,0,1,0,None
285.8,3595,5144,1963,2732,1539,1.5,6,3,1,1,1,0,None
259,3258,4200,1900,2962,1744,2,6,3,1,0,1,0,None
331.1,4165,5307,1960,2232,1726,1,8,4,1,1,2,0,None
329.2,4141,5663,1965,2212,1320,2,7,3,1,1,1,0,None
239.3,3010,3420,1918,2107,1310,2,6,3,1,0,1,0,None
272,3421,6073,1951,1928,900,1,5,2,1,0,1,1,None
207.9,2615,2968,1920,2027,938,1.5,5,2,1,0,1,0,None
294.4,3703,6750,1950,2216,1000,1,5,2,1,1,1,1,None
312.5,3931,6099,1960,2638,2156,1,6,3,2,0,1,0,None
401.7,5053,8056,2001,3156,1976,2,8,4,2,1,1,1,None
288.5,3629,3150,1900,2342,1467,2,7,4,1,1,1,0,None
305.4,3841,6291,1960,2126,1380,2,6,3,1,1,1,0,None
283.9,3571,4200,1915,2697,1552,2,7,3,1,0,1,0,None
272.2,3424,5507,1960,2592,1469,1.5,7,2,2,0,1,0,None
271.3,3412,5769,1960,2136,1487,1,6,2,1,1,1,0,None
300.2,3776,6444,1957,2808,1469,1.5,6,2,2,0,1,0,None
279.8,3519,6720,1960,2492,1246,1,6,3,1,0,1,1,None
509.4,6408,24677,1960,6100,2601,1.5,8,5,3,0,1,0,Recent
298.9,3760,7133,1950,2408,1008,1,6,3,1,0,1,1,None
325,4088,3850,1910,2235,1276,2,8,3,1,1,1,0,Old
356,4478,6750,1950,2526,1200,1,7,3,1,0,1,1,Recent
241.3,3035,3360,1920,2119,1105,1.5,6,2,1,1,1,0,None
314.3,3953,7109,1960,2239,1380,2,8,3,1,1,1,0,None
366.3,4608,6327,2001,3156,1976,2,7,4,2,1,1,1,None
323.1,4064,5643,1960,3048,1896,2,8,4,1,1,1,0,None
286.9,3609,6044,1957,2634,1469,1.5,5,2,1,0,1,0,None
293.2,3688,7408,1950,2459,984,1,5,2,1,1,1,1,None
293.8,3696,5835,1960,2680,1469,1.5,6,3,1,1,1,0,None
167.6,2108,1980,1900,1502,690,1,3,1,1,0,1,0,None
253.3,3186,3402,1924,2057,1350,2,6,3,1,1,1,0,None
269.3,3387,3850,1910,1816,1152,2,6,2,1,0,1,0,None
310.2,3902,7200,1909,2370,1364,2,5,2,1,1,1,0,None
217.9,2741,3360,1957,2160,1008,1,6,3,1,0,1,1,None
395,4969,4291,1990,2815,1684,2,6,3,1,1,1,0,None
298.5,3755,6514,1960,2118,1380,2,8,3,1,1,1,0,None
561.8,7067,9604,2006,3960,2455,2,8,4,2,1,1,1,None
220,2767,3205,1924,2117,1061,1.5,6,3,1,0,1,0,None
334.4,4206,7622,1940,2896,1510,1.5,6,3,1,1,1,1,None
331.2,4166,7796,1962,2760,1469,1.5,7,3,2,0,1,0,None
311.9,3923,6750,1950,2336,1140,1,7,2,2,0,1,2,None
286.3,3601,3628,1950,2232,1056,1,5,2,1,0,1,1,Recent
311.9,3923,13209,1950,2304,1075,1,6,3,1,1,1,1,None
144.6,1819,1017,1920,1293,797,1.5,5,2,1,0,1,0,None
292.5,3679,5602,1960,2643,1469,1.5,6,2,1,1,1,0,None
233.7,2939,3360,1950,2409,1008,1,6,3,2,1,1,1,None
287.8,3620,6000,1960,2116,1726,1,6,4,2,0,2,0,None
309.5,3893,5958,1960,2431,1560,2,6,3,1,1,1,0,None
278.4,3502,4343,1959,2064,912,1,6,3,2,0,1,1,None
222.4,2797,3850,1905,1832,1188,2,5,2,1,1,1,0,None
319.9,4024,6539,1943,3045,1712,1.5,8,1,1,0,1,1,Recent
306.5,3855,6021,1969,2092,1016,1,6,3,2,0,1,1,None
240.9,3030,3728,1920,1698,936,1.5,6,3,1,0,1,0,None
270.7,3405,5013,1900,2339,1497,2,6,3,1,0,1,0,None
314.2,3952,3486,1960,2344,1713,1,8,4,2,0,1,1,None
306.5,3855,6000,1967,1984,968,1,6,3,2,0,2,1,None
402.5,5063,5981,1950,3434,2369,2,9,4,2,0,1,1,Recent
358.4,4508,12853,1950,2329,1625,2,7,4,2,0,1,1,Recent
309.1,3888,6794,1959,2260,1577,1,8,3,1,1,1,0,None
348.9,4389,4311,1950,2972,1529,1.5,6,3,1,1,1,1,None
331.3,4167,8323,1960,2116,1966,1,8,4,1,1,2,0,None
562,7069,7682,2005,4184,2724,2,8,4,2,1,1,1,None
246.4,3099,3780,1950,2412,1008,1,6,2,2,0,1,1,None
298,3748,5931,1961,2912,1533,1.5,8,3,1,1,1,0,None
287.2,3612,6750,1950,2344,1000,1,5,2,1,0,1,1,None
279.4,3514,6540,1945,2304,1075,1,6,3,1,0,1,1,None
308.9,3885,13051,1942,2324,1075,1,6,3,1,0,1,1,None
273.6,3441,4200,1955,2428,1075,1,7,3,1,0,1,1,None
400.8,5042,4117,1992,2744,2079,2,7,3,2,0,1,1,None
338,4252,6000,1960,2244,2134,1,7,3,1,1,1,0,None
294.3,3702,4486,1950,2612,1378,1.5,6,3,1,1,1,1,None
357.7,4499,6057,1960,2636,1966,1,6,3,1,0,1,0,Recent
319.1,4014,4386,1950,2504,1313,1.5,7,3,2,0,1,0,None
206,2591,2436,1920,2476,1265,1.5,5,3,1,0,1,0,None
282.1,3548,4603,1910,2531,1426,2,7,3,1,1,1,0,Old
282.4,3552,5401,1960,2016,968,1,5,3,1,0,1,1,None
293.9,3697,5110,1950,2412,1306,1.5,6,3,1,1,1,1,None
322.4,4055,5981,1940,2504,1506,1.5,7,3,1,0,1,1,None
337.2,4241,13250,1950,2508,1075,1,6,3,1,1,1,1,None
313.7,3946,4288,1965,2368,1368,2,9,4,1,1,1,1,None
280.2,3524,4200,1955,2164,1200,2,6,3,1,1,1,1,None
297.8,3746,5975,1955,2628,1469,1.5,7,3,2,0,1,0,None
474.4,5967,5604,2008,3526,2118,2,8,4,2,1,1,0,None
269,3384,5301,1910,3714,2428,2,9,5,2,0,1,0,None
313.6,3945,4998,1959,2203,1589,1,7,3,1,1,1,2,None
322.1,4052,7163,1965,2116,1487,1,7,3,1,1,1,0,None
204.9,2577,4200,1920,2296,990,1,5,3,1,0,1,1,None
563.1,7083,9021,2005,4065,2605,2,8,4,2,1,1,1,None
313.1,3938,4696,1965,2184,1368,2,7,4,1,1,1,1,None
282.5,3553,6000,1960,2212,1538,1,8,3,1,1,1,0,None
337,4239,6047,1950,2568,1490,1.5,7,3,2,0,1,1,Recent
331.2,4166,13494,1950,2340,1306,1.5,6,3,2,0,1,1,None
311.1,3913,6000,1960,2140,1966,1,7,3,2,0,1,0,None
355.9,4477,5998,1960,2184,1726,1,8,4,2,0,1,0,Recent
315,3962,6725,1964,2064,1372,2,6,3,1,1,1,1,None
177.4,2231,3624,1910,821,600,1,5,2,1,0,1,0,None
298.1,3750,6000,1960,2212,1692,1,7,3,1,1,1,0,None
331,4163,3603,1930,3063,1612,2,5,2,1,0,1,0,Recent
396.8,4991,14065,1940,2424,1306,1.5,9,3,2,1,1,1,Recent
349.3,4394,5050,1900,3502,1842,2,9,3,1,1,1,0,Recent
338.2,4254,9733,1920,2902,1377,1.5,6,3,2,0,1,0,None
276.6,3479,4200,1955,2000,1200,2,6,3,1,1,1,1,None
255,3207,4200,1960,1940,970,1,7,3,1,1,1,1,None
277.7,3493,4759,1959,1989,918,1,5,3,1,1,1,1,None
347.9,4376,4269,1960,2236,1368,2,6,4,1,1,1,1,None
440.2,5537,8247,1940,3210,1980,2,7,3,1,0,1,1,Recent
357.3,4494,7939,1964,2136,1726,1,9,4,1,1,1,0,None
558.8,7029,8317,2005,4133,2605,2,8,4,2,1,1,1,None
305,3836,3861,1965,2191,1369,2,7,4,1,1,1,1,None
322.4,4055,4265,1900,2307,1350,2,6,3,1,1,1,0,Recent
105,1320,997,1910,1319,504,1,4,2,1,0,1,0,None
380.6,4787,6074,1965,2668,2014,1,8,3,2,0,2,1,Recent
350.1,4404,14707,1942,3057,1529,1.5,7,4,2,0,1,1,None
302.8,3809,5975,1960,2326,1380,2,7,3,1,1,1,0,None
310.7,3908,6465,1960,1948,1404,1,5,3,1,1,1,1,None
290.2,3650,6000,1960,2212,1692,1,7,3,1,1,1,0,None
320.2,4028,6047,1957,2486,1387,1.5,6,3,2,0,1,1,Recent
313.6,3945,8104,1955,3202,1492,1,5,3,1,1,1,1,None
320,4025,4411,1960,2284,1558,1,7,3,1,1,1,2,None
282.2,3550,5823,1963,2100,1320,2,6,3,1,1,1,0,None
287.4,3615,5277,1959,2092,952,1,7,3,1,1,1,1,None
336.6,4234,4200,1960,3870,1953,1.5,7,3,1,1,2,0,None
307.2,3864,6100,1960,2184,1583,1,8,3,1,1,1,0,None
277,3484,4749,1961,1953,1404,1,7,3,1,1,1,1,None
347.2,4367,10050,1942,3104,1706,2,8,3,1,2,1,1,None
201,2528,4435,1900,2823,1637,2,7,4,1,1,1,0,None
353.5,4447,9747,1960,2100,1726,1,9,4,2,0,2,0,Old
423.4,5326,9730,1992,2776,2188,1,8,3,2,0,2,0,None
323.5,4069,6022,1961,3246,1679,1.5,7,3,1,1,1,0,None
576,7246,6864,2005,5122,3108,2,8,4,2,1,1,1,None
301.1,3787,6271,1961,1530,1360,1,8,4,2,0,1,1,None
374,4704,7550,1943,2623,1306,1.5,6,3,1,0,1,1,Recent
300,3774,5975,1955,2736,1469,1.5,7,3,1,1,1,0,None
348.8,4387,5999,1960,2556,1966,1,7,3,1,1,1,0,None
308.6,3882,5742,1960,2120,1320,2,7,3,1,1,1,0,None
320.9,4036,8088,1967,2240,1726,1,8,3,2,0,1,0,None
326.8,4111,4880,1960,2556,1354,1.5,6,3,2,0,1,1,Old
354.4,4458,6710,1925,3196,1786,2,7,3,2,0,1,0,Recent
265.3,3337,7045,1920,2697,1378,1.5,6,3,1,1,1,0,None
376.2,4732,2700,1990,2448,1536,2,8,3,2,1,1,1,None
296.9,3735,4659,1950,1984,1404,1,5,3,1,0,1,1,None
252.985,3182,7270,1920,2210,1326,2,7,3,1,1,1,0,None
339.1,4265,5273,1943,2769,1734,2,7,5,2,0,1,1,Recent
299.4,3766,4949,1960,2088,1726,1,6,3,2,0,1,0,Recent
323.5,4069,5204,1965,2508,1402,1.5,6,3,1,1,1,1,None
359.3,4519,5918,1988,2574,1930,1,8,4,2,0,2,0,None
361.7,4550,5376,1920,2156,1370,2,7,4,1,1,1,0,Recent
256.4,3225,2410,1950,2535,1632,2,7,3,2,0,1,0,None
236.7,2977,3248,1920,1620,1270,2,6,3,1,0,1,0,None
250.3,3148,4270,1920,2017,1232,2,6,3,1,0,1,0,None
340.7,4286,5941,1962,2712,1469,1.5,7,3,2,0,1,0,Recent
312.5,3931,5939,1957,3160,1609,1.5,7,3,1,1,1,0,None
287.4,3615,6100,1960,2076,1701,1,7,3,1,1,1,0,None
320.8,4035,6000,1967,2425,1151,1,7,3,1,1,1,1,None
329.4,4143,6043,1957,2628,1536,1.5,7,4,1,0,1,1,None
307.4,3867,10067,1960,2238,1726,1,8,4,1,1,1,0,None
327,4113,10030,1950,2344,1275,1.5,6,3,1,0,1,1,None
406.9,5118,6756,1996,2604,1680,2,7,3,2,0,1,1,None
270.4,3401,5246,1940,2568,1360,1.5,6,3,2,0,1,1,None
278.6,3504,6076,1940,2264,1320,2,6,3,1,1,1,1,None
392,4931,5671,1958,3412,2010,2,9,4,2,0,1,1,Old
310.7,3908,4407,1960,1968,1404,1,6,3,1,1,1,0,None
283,3560,4514,1959,2140,1404,1,5,3,1,1,1,1,None
353.5,4447,5885,1988,2418,1930,1,9,4,2,0,2,0,None
302.3,3802,6043,1964,2244,1641,1,8,3,2,0,1,0,None
424.9,5345,5518,2003,2500,1560,2,6,3,1,1,1,0,None
348.3,4381,5441,1960,2416,1726,1,8,4,2,0,1,1,Recent
354.3,4457,9351,1960,2296,1247,1,7,4,1,1,1,0,None
297.9,3747,5151,1962,2652,1469,1.5,7,3,2,0,1,0,None
327.2,4116,6042,1954,2840,1550,1.5,7,3,1,0,1,1,None
306.1,3850,6877,1963,2240,1808,1,6,3,1,1,1,0,None
428.2,5386,5965,1963,2998,1637,1.5,8,3,3,0,1,1,Old
366.3,4608,5662,1961,2805,1750,2,7,4,2,0,1,1,Recent
263.1,3309,5273,1950,2448,1306,1.5,6,2,1,0,1,1,None
388.7,4889,5775,1988,2906,1469,1.5,8,3,3,0,1,0,None
313.6,3945,5715,1960,2540,1940,2,6,3,1,1,1,1,None
263,3308,4473,1960,1961,1404,1,7,4,1,1,1,0,None
241.3,3035,4410,1961,1964,1404,1,7,3,1,1,1,0,None
326,4101,6194,1950,2816,1311,1,5,2,1,0,1,1,None
301,3786,6200,1963,2067,1726,1,6,3,2,0,1,0,Old
272.6,3429,5246,1945,2488,1306,1.5,7,4,2,0,1,1,None
301.6,3794,6000,1967,2166,1726,1,6,3,1,1,1,0,None
366.8,4614,7128,1960,2156,1726,1,6,2,2,0,1,0,None
311,3912,5981,1960,2364,1320,2,6,3,1,1,1,0,None
282.5,3553,6000,1960,2116,1726,1,5,3,1,1,1,0,None
301.2,3789,5658,1964,2640,1464,1.5,7,3,1,1,1,0,None
298.8,3758,5963,1963,2592,1469,1.5,6,3,2,0,1,1,None
317.8,3997,6197,1963,2294,2059,1,6,3,1,0,1,1,None
371.9,4678,5695,1988,2712,1469,1.5,6,2,2,1,1,0,None
275.9,3470,7548,1943,2552,1075,1,6,2,1,0,1,1,None
297.7,3745,5700,1960,2936,1641,1.5,6,2,2,0,1,0,None
332.4,4181,7889,1960,3588,1939,1.5,8,4,2,0,1,1,None
297.1,3737,7917,1960,2016,1487,1,7,3,1,1,1,0,None
323.5,4069,7912,1960,2842,1469,1.5,7,3,2,0,1,0,None
306.4,3854,5273,1950,2451,1075,1,6,2,1,1,1,1,Old
306.3,3853,5914,1964,2120,1726,1,8,4,2,0,1,0,None
280.6,3529,4410,1959,1944,1404,1,6,3,1,1,1,0,None
292.4,3678,4463,1958,2298,1404,1,6,3,1,0,1,0,None
307.2,3864,6691,1967,2400,1863,1,6,3,1,1,2,0,None
275.5,3465,4800,1960,2392,1109,1,6,3,1,0,1,1,None
259.1,3259,5273,1945,2796,1155,1,6,2,1,0,1,1,None
267.3,3362,4298,1950,2623,1128,1,7,3,1,1,1,1,None
334.9,4213,4860,1910,3314,1792,2,7,3,1,1,1,0,None
300.1,3775,5608,1963,2311,1125,1,5,3,1,0,1,0,None
332.4,4181,9820,1943,2600,1306,1.5,6,2,1,0,1,1,Recent
278.1,3498,11541,1920,3508,1779,1.5,5,2,1,0,1,0,None
350.3,4406,4654,1890,3256,1755,1.5,9,4,2,0,1,0,None
353.3,4444,6203,1960,2160,1870,1,8,3,1,1,1,0,None
213.4,2684,1696,1904,2496,1518,2,7,4,1,0,1,0,None
297.9,3747,5759,1950,2624,1306,1.5,7,4,1,1,1,0,Recent
316.7,3984,6004,1960,2845,1726,1,7,3,1,1,1,0,Recent
339,4264,10370,1960,2836,1435,1.5,7,3,2,0,1,0,None
340.1,4278,5712,1940,3336,2036,2,7,3,1,1,1,1,None
264.5,3327,5963,1963,2041,1008,1,7,3,1,0,1,0,None
281.9,3546,5739,1960,2100,1726,1,7,3,1,1,1,0,None
312.7,3933,5633,1960,2732,1469,1.5,6,2,2,0,1,1,None
290,3648,7280,1958,2160,1487,1,5,3,1,1,1,0,None
267,3358,3138,1920,2468,1520,2,6,3,1,1,1,0,None
289.8,3645,4253,1920,2792,1428,1.5,7,3,1,0,1,1,None
295.5,3717,6298,1967,2218,1726,1,6,3,1,1,1,0,None
298.1,3750,6506,1960,2160,1966,1,8,3,1,1,1,0,None
288.2,3625,4159,1960,2356,1306,1.5,6,2,1,0,1,1,None
281.9,3546,8318,1942,2376,1075,1,6,3,1,0,1,1,None
276.3,3475,7439,1943,2459,1075,1,6,3,1,0,1,1,None
329.7,4147,19466,1940,2563,1075,1,7,3,1,1,1,1,None
286.5,3604,4272,1965,3084,1512,1,8,3,1,1,1,1,None
348,4377,10493,1966,2204,1320,2,7,3,1,1,1,0,None
289.4,3640,5211,1956,2085,984,1,6,2,1,0,1,1,None
325.5,4094,6083,1957,2422,1472,2,7,3,1,1,1,0,Old
306,3849,6031,1960,2116,1966,1,8,3,1,1,2,0,None
309.2,3889,6000,1960,2424,1870,1,9,4,1,1,1,0,None
293.2,3688,7035,1955,2032,978,1,5,3,1,0,1,1,None
295.7,3719,5836,1960,2736,1469,1.5,7,3,2,0,1,0,None
282.6,3555,5963,1963,2136,1008,1,7,3,1,1,1,0,None
342.5,4308,3500,1910,2520,1536,1.5,5,2,2,0,1,0,Recent
204.1,2567,3854,1920,2022,962,2,6,3,1,1,1,0,None
346.5,4358,7680,1956,2581,1354,1.5,6,2,1,1,1,1,None
290.3,3651,4047,1920,2328,1440,2,7,4,2,0,1,1,None
273.1,3435,5356,1960,1968,941,1,5,2,1,0,1,1,None
298.7,3757,4310,1930,2640,1428,1.5,6,2,1,1,1,1,None
325.7,4097,6895,1960,2066,1966,1,7,3,1,1,1,0,None
338.3,4255,6406,1960,2066,1726,1,8,4,2,0,1,0,Recent
265.9,3345,6946,1950,2339,1075,1,6,3,1,0,1,1,None
198.4,2495,3228,1920,1755,1006,1.5,6,3,1,0,1,0,None
298.6,3756,6935,1965,2628,1469,1.5,6,2,2,0,1,0,None
326.8,4111,6690,1957,2900,1308,1,7,3,1,1,1,1,None
350,4403,6900,1960,2904,1961,1,6,3,3,0,1,1,None
319.2,4015,6315,1960,2220,1726,1,7,3,2,0,2,0,None
398.2,5009,10044,1960,2180,1726,1,6,3,1,1,1,0,Recent
273.4,3439,7931,1938,2376,1075,1,6,3,1,0,1,1,Recent
288.4,3628,6000,1960,2512,1487,1,5,2,1,0,1,0,None
304.9,3835,6858,1925,1808,1133,2,7,3,1,0,1,0,None
313.4,3942,6031,1960,2484,1993,1,9,3,1,1,2,0,None
269.82,3394,10947,1920,2384,1237,1.5,6,3,1,1,1,0,None
203.7,2562,2174,1920,2952,1382,1,7,3,1,0,1,0,None
288.2,3625,4050,1935,3224,1456,1,6,3,1,0,1,1,Old
262.4,3300,4911,1960,2084,1020,1,5,3,1,0,1,1,None
331.4,4169,10294,1943,2944,1346,1.5,6,3,1,0,1,1,None
284,3572,6035,1960,2106,1320,2,7,3,1,1,1,0,None
282.7,3556,4565,1904,2416,1220,2,6,3,1,0,1,0,None
246.8,3104,5963,1963,2160,1008,1,5,3,1,0,1,0,None
290.3,3651,6364,1960,2136,1726,1,6,3,1,1,1,0,None
301.8,3796,5090,1955,2525,1120,1,7,4,1,1,1,0,None
311.2,3914,9551,1943,2508,1306,1.5,6,2,1,1,1,1,Old
299.1,3762,4772,1900,2652,1584,2,6,3,1,0,1,0,None
353.8,4450,19264,1943,2634,1306,1.5,6,3,1,1,1,1,None
290,3648,4050,1960,2548,1176,1,5,4,1,1,1,1,None
289.2,3638,4501,1960,2520,1313,1.5,6,3,2,0,1,1,None
293.9,3697,6008,1960,3041,1557,1.5,6,2,1,1,1,0,None
346.6,4360,4500,1940,1920,960,1,7,4,2,0,1,1,None
314.2,3952,6998,1943,2494,1536,2,7,3,3,0,1,1,Recent
280.7,3531,6077,1965,2097,1726,1,6,3,1,1,1,0,None
298.6,3756,6000,1960,2280,1682,1,6,3,1,1,1,0,None
327.9,4124,10759,1967,2756,1469,1.5,6,2,1,1,1,0,None
442.2,5562,4459,2007,2418,1469,2,7,3,2,1,1,1,None
232.5,2924,2426,1904,2398,1233,1.5,6,3,1,0,1,0,None
302.2,3801,4283,1960,1769,1104,2,5,3,1,1,1,0,None
298.2,3751,4251,1953,2384,1320,1.5,6,3,2,0,1,1,Old
317,3987,5963,1963,2184,1008,1,7,3,1,1,1,0,None
304.8,3834,6035,1960,2160,1726,1,8,3,1,1,1,2,None
281.7,3543,4272,1962,1669,1104,2,5,3,1,1,1,0,None
216.2,2719,3337,1920,2358,1223,1.5,6,3,1,0,1,0,None
302.2,3801,13149,1955,2352,1134,1,5,2,1,0,1,1,None
356.8,4488,17604,1969,3136,1714,1.5,5,3,2,0,1,1,None
317.8,3997,11250,1954,2566,1244,1,6,3,1,1,1,1,None
295.7,3719,4220,1953,2392,1056,1,6,3,1,0,1,1,None
249.2,3134,7103,1940,2544,1075,1,6,3,1,0,1,1,None
314.8,3960,6077,1965,2232,1726,1,7,3,1,1,2,1,None
220.4,2772,2644,1920,1730,1063,2,6,3,1,1,1,0,None
251,3157,2961,1910,1633,882,1.5,4,2,1,0,1,0,Recent
280.8,3532,3158,1964,2175,1868,1,8,3,1,1,1,0,None
329.9,4150,8858,1960,2436,1726,1,7,3,1,1,1,2,None
345.6,4347,6000,1960,2328,1487,1,7,4,2,0,1,0,Recent
244.2,3072,1358,1904,2576,1598,2,8,1,2,0,1,0,None
261.1,3284,3958,1960,2518,1161,1,5,2,1,0,1,1,None
314.1,3951,10641,1965,2136,1008,1,6,3,1,1,2,0,None
288.4,3628,4000,1960,2899,1352,1,7,2,1,1,1,0,None
258.5,3251,4000,1963,2622,1260,1,6,3,1,1,1,0,None
269.1,3385,4351,1960,1889,912,1,6,3,1,1,1,0,None
395.2,4971,4203,2001,2336,1448,2,7,3,2,1,1,1,None
333.8,4199,11844,1960,2160,1726,1,6,3,1,1,1,0,None
290.2,3650,5963,1963,2164,1008,1,7,3,1,1,1,1,None
276.7,3480,6035,1960,2160,1247,1,7,4,1,1,1,0,None
362,4553,4072,1942,3241,1591,1.5,7,4,2,0,1,0,Recent
301.2,3789,3200,1964,2264,1859,1,5,3,1,0,1,0,None
285.2,3587,8245,1943,2569,1306,1.5,7,3,2,0,1,1,Recent
352.7,4436,7649,1965,2730,1280,1,7,4,1,1,2,1,Old
325.2,4091,6014,1960,2832,1728,2,7,3,2,0,1,1,None
437.9,5508,8861,1798,5356,2953,2,11,4,2,0,1,0,Old
313.3,3941,6077,1960,2172,1726,1,7,3,1,1,1,0,None
338.7,4260,8815,1965,2256,1726,1,7,3,2,0,2,0,None
276.9,3483,4254,1962,2100,1404,1,5,3,1,1,1,0,Old
280.3,3526,2845,1920,3100,1761,1.5,8,5,2,0,1,0,Recent
275.7,3468,6000,1965,2080,1487,1,6,3,1,1,1,0,None
281.7,3543,4204,1956,2232,1042,1,6,2,1,0,1,1,None
283.1,3561,4910,1973,2520,1440,2,5,3,1,1,1,0,None
277.6,3492,6750,1949,2592,936,1,4,1,1,0,1,0,None
307.1,3863,7532,1960,2898,1726,1,6,2,2,0,1,0,None
307.8,3872,4117,1960,2641,1537,2,7,4,1,1,1,1,None
295.6,3718,1237,1990,3039,1908,2,7,4,1,2,1,1,None
370.5,4660,11617,1960,2868,2343,1,6,3,1,1,1,0,None
316.2,3977,5401,1963,2478,1488,2,7,3,1,1,1,0,None
300.4,3779,6044,1960,2093,1870,1,5,3,1,0,1,0,None
285.3,3589,4803,1920,3280,2196,2,8,3,2,0,1,0,None
290.2,3650,9387,1943,2490,1306,1.5,7,3,1,1,1,1,Old
296.7,3732,5935,1960,2013,1320,2,6,3,1,1,1,0,None
312.3,3928,6035,1960,2160,1726,1,10,3,1,1,1,0,None
366.8,4614,9359,1965,2848,2390,1,10,5,1,1,1,1,Old
362.3,4557,5726,1964,2706,1883,1.5,8,4,1,2,1,1,None
246,3094,6202,1959,1964,982,1,5,3,1,0,1,1,None
360.8,4538,7285,1965,2224,2168,1,6,3,2,1,2,1,None
315.4,3967,4342,1964,2916,1596,2,7,4,1,1,1,1,None
286.3,3601,5877,1964,2052,1726,1,5,3,2,0,1,0,None
286.8,3607,4032,1960,2586,1190,1,8,4,1,0,1,0,None
314.3,3953,4162,1950,2556,1354,1.5,6,3,2,0,1,1,None
276.7,3480,4548,1930,2287,1367,2,6,3,1,1,1,1,Old
322.3,4054,7999,1965,2016,1008,1,9,4,1,1,2,0,None
433.1,5448,6102,1994,2308,2135,1,6,3,1,1,1,1,None
270.7,3405,4858,1965,2177,1008,1,7,3,1,1,1,2,None
393.1,4945,6000,1967,2600,1908,1,8,3,2,0,1,1,Recent
287,3610,4000,1964,2406,1188,1,5,3,1,0,1,1,None
324.1,4077,5099,1933,2597,1577,2,7,4,2,1,1,0,None
316.2,3977,6750,1964,3541,1528,1,7,3,1,1,1,1,None
284.6,3580,6071,1960,2136,1487,1,6,2,1,0,1,2,None
292.1,3674,7444,1965,2268,1487,1,5,3,1,0,1,0,Recent
316.2,3977,10566,1960,2252,1726,1,5,3,1,1,1,0,None
335.6,4221,18670,1940,3010,1474,1.5,7,3,2,0,1,1,None
299.1,3762,5950,1960,2096,1966,1,9,3,1,1,1,2,None
463.9,5835,4478,2008,3864,2138,2.5,7,4,2,1,1,0,None
350.9,4414,5857,1963,2740,1849,1.5,8,3,1,2,1,1,None
326.3,4104,6035,1960,2040,1692,1,6,3,1,1,1,0,Old
355.8,4475,8526,1965,2068,1726,1,9,3,2,0,2,0,None
273.9,3445,4207,1960,2480,1123,1,5,3,1,0,1,1,None
312.5,3931,3718,1960,2379,1560,2,7,4,1,1,1,1,None
360.6,4536,6761,1965,2258,1836,1,7,3,1,1,1,0,None
380.6,4787,6505,1994,2356,1670,1,7,3,2,0,1,2,None
377.5,4748,5494,1929,2750,1820,2,8,4,2,0,1,0,Old
284.3,3576,6000,1960,2136,1726,1,6,3,1,1,1,0,None
250.2,3147,3630,1935,2564,1081,1,6,2,1,0,1,0,None
315.3,3966,4434,1988,2156,1350,2,8,3,1,1,1,0,None
310,3899,6000,1960,2088,1521,1,7,3,1,1,1,0,None
297.9,3747,4000,1980,2352,1104,1,8,4,2,0,1,0,None
176.9,2225,1037,1920,2520,1680,2,6,3,1,0,1,0,None
326.7,4109,12568,1950,3230,1747,1.5,11,4,1,1,1,2,None
370.3,4658,6091,1960,2868,1589,1.5,7,4,2,1,1,0,None
316.6,3982,6012,1967,2244,1320,2,6,3,1,1,1,0,None
324.9,4087,5668,1960,2124,1487,1,7,4,2,0,2,0,None
325.9,4099,5992,1964,2904,1566,1.5,8,3,2,1,1,1,None
288,3623,3417,1960,2520,1306,1.5,6,3,1,1,1,1,None
257.7,3241,4252,1960,2451,1123,1,6,3,1,0,1,1,None
309.6,3894,6380,1965,2266,1726,1,7,3,1,1,2,0,None
321.8,4048,5264,1958,2664,1481,1.5,8,3,1,1,1,1,Old
343.1,4316,6000,1960,2196,2048,1,8,4,2,0,2,2,Recent
270.3,3400,3166,1960,2647,1128,1,6,3,1,0,1,1,None
309.9,3898,9861,1967,2048,1350,1,6,2,1,1,1,0,None
274.2,3449,10539,1960,2528,1170,1,6,2,1,1,1,2,None
314.2,3952,4331,1960,2438,1110,1,6,3,1,1,1,1,Recent
333.5,4195,6104,1960,2328,1268,1.5,8,4,2,0,1,0,Recent
262.3,3299,9358,1920,2244,1432,2,7,3,1,0,1,1,None
397.2,4996,7998,1994,2229,1726,1,6,3,1,1,1,1,None
315.6,3970,7038,1968,2563,1726,1,5,3,1,1,1,0,None
289.2,3638,6000,1960,2096,1247,1,7,3,1,0,1,0,None
329.8,4148,4477,1960,2040,1368,2,7,4,1,1,2,1,None
412,5182,8919,1991,3190,2509,1.5,7,4,1,1,1,1,None
288.3,3626,6000,1969,2088,1692,1,8,3,1,1,1,0,None
309.5,3893,5554,1960,2432,1354,1.5,7,3,2,0,1,0,None
265.3,3337,4297,1960,2496,1354,1.5,6,3,1,0,1,1,None
275.3,3463,4905,1963,2926,1469,1.5,6,2,1,1,1,0,None
283,3560,3108,1960,2616,1109,1,6,3,2,0,1,1,Recent
328.4,4131,11081,1967,2272,1726,1,6,3,1,0,2,0,Old
313.4,3942,6000,1960,2196,1726,1,6,3,1,1,1,0,None
282.1,3548,6212,1960,2720,1469,1.5,4,1,1,0,1,0,None
336.3,4230,6131,1965,2585,1479,1.5,7,3,2,0,1,1,None
171.8,2161,2313,1912,1862,754,1,5,2,1,0,1,0,None
231.1,2907,5657,1972,2160,1080,1,5,3,1,0,1,1,None
301.2,3789,3200,1914,3128,1506,1.5,7,3,1,1,1,0,None
420.7,5292,8501,1995,2664,1620,2,7,3,2,1,