Apache Spark on Databricks for Data Scientists (Scala)(Scala)

Apache Spark on Databricks for Data Scientists

Welcome to Databricks!

This notebook intended to be the second step in your process to learn more about how to best use Apache Spark and Databricks together. We'll be walking through the core concepts, the fundamental abstractions, and some machine learning tools from the perspective of as data scientist! As a data scientist you're likely querying data from a variety of sources, joining together various tables and leveraging that information to build out statistical models. Databricks and Apache Spark make this process simple by allowing you to connect to a variety of sources and work with the data in one unified environment, then deploy your work to production quickly. Additionally because Databricks and Apache Spark support multiple languages, it's straightforward to do a lot of the analysis using the languages you know and the tools that you're likely already familiar with.

First, it's worth defining Databricks. Databricks is a managed platform for running Apache Spark - that means that you do not have to learn complex cluster management concepts nor perform tedious maintenance tasks to take advantage of Apache Spark. Databricks also provides a host of features to help its users be more productive with Spark. It’s a point and click platform for those that prefer a user interface like data scientists or data analysts. This UI is accompanied by a sophisticated API for those that want to automate jobs and aspects of their data workloads. To meet the needs of enterprises, Databricks also includes features such as role-based access control and other intelligent optimizations that not only improve usability for users but also reduce costs and complexity for administrators.

The Gentle Introduction Series

This notebook is a part of a series of notebooks aimed to get you up to speed with the basics of Spark quickly. This notebook is best suited for those that have very little or no experience with Spark. The series also serves as a strong review for those that have some experience with Apache Spark but aren't as familiar with some of the more sophisticated tools like UDF creation and machine learning pipelines. The other notebooks in this series are:

Tutorial Overview

This tutorial centers around a core idea that we hope to explore:

The number of farmer's markets in a given zip code can be predicted from the income and taxes paid in a given area.

It seems plausible that areas with higher income have more farmer's markets simply because there is more of a market for those goods. Of course there are many potential holes in this idea, but that's part of the desire to test it :). This tutorial will explore our process for discovering whether or not we can accurately predict the number of farmer's markets! It is worth mentioning that this notebook is not intended to be a academically rigorous, but simply a good example of the work a data scientist might be performing using Apache Spark and Databricks.

The Data

img

The first of the two datasets that we will be working with is the Farmers Markets Directory and Geographic Data. This dataset contains information on the longitude and latitude, state, address, name, and zip code of Farmers Markets in the United States. The raw data is published by the Department of Agriculture. The version on the data that is found in Databricks (and is used in this tutorial) was updated by the Department of Agriculture on Dec 01, 2015.

img

The second we will be working with is the SOI Tax Stats - Individual Income Tax Statistics - ZIP Code Data (SOI). This study provides detailed tabulations of individual income tax return data at the state and ZIP code level and is provided by the IRS. This repository only has a sample of the data: 2013 and includes "AGI". The ZIP Code data show selected income and tax items classified by State, ZIP Code, and size of adjusted gross income. Data are based on individual income tax returns filed with the IRS and are available for Tax Years 1998, 2001, 2004 through 2013. The data include items, such as:

  • Number of returns, which approximates the number of households
  • Number of personal exemptions, which approximates the population
  • Adjusted gross income
  • Wages and salaries
  • Dividends before exclusion
  • Interest received

You can learn more about the two datasets on data.gov:

Getting the Data

As a data scientist, your data is likely going to be living in a place like S3 or Redshift. Apache Spark provides simple and easy connectors to these data sources and Databricks provides simple demonstrations of how to use them. Just search in the Databricks guide (use the ? at the top left) to see if your data source is available. For the purposes of this tutorial, our files are already available on S3 via dbfs or the Databricks file system. While you're free to upload the csvs made available on data.gov as a table you can also (more easily) access this data via the /databricks-datasets directory which is a repository of public, Databricks-hosted datasets that is available on all Databricks accounts.

First things first! We've got to read in our data. This data is located in in csv files so we'll use the spark-csv package to do this. In Databricks, it's as simple as specifying the format of the csv file and loading it in as a DataFrame. In Apache Spark 2.0, you do not need to use the spark-csv package and can just read the data in directly.

As a data scientist, you've likely come across DataFrames either in R, or python and pandas. Apache Spark DataFrames do not stray too much from this abstraction except that they are distributed across a cluster of machines instead of existing on one machine (as is typically the case with R or pandas). If you're not quite familiar with this, it might be worth reading through a Gentle Introduction to Apache Spark on Databricks.

val taxes2013 = sqlContext
  .read.format("com.databricks.spark.csv")
  .option("header", "true")
  .load("dbfs:/databricks-datasets/data.gov/irs_zip_code_data/data-001/2013_soi_zipcode_agi.csv")
taxes2013: org.apache.spark.sql.DataFrame = [STATEFIPS: string, STATE: string ... 112 more fields]
// // in Apache Spark 2.0
// val taxes2013 = spark.read
//   .option("header", "true")
//   .csv("dbfs:/databricks-datasets/data.gov/irs_zip_code_data/data-001/2013_soi_zipcode_agi.csv")
taxes2013: org.apache.spark.sql.DataFrame = [STATEFIPS: string, STATE: string ... 112 more fields]
val markets = sqlContext
  .read.format("com.databricks.spark.csv")
  .option("header", "true")
  .load("dbfs:/databricks-datasets/data.gov/farmers_markets_geographic_data/data-001/market_data.csv")
markets: org.apache.spark.sql.DataFrame = [FMID: string, MarketName: string ... 57 more fields]
// // in Apache Spark 2.0
// val markets = spark.read
//   .option("header", "true")
//   .csv("dbfs:/databricks-datasets/data.gov/farmers_markets_geographic_data/data-001/market_data.csv")
markets: org.apache.spark.sql.DataFrame = [FMID: string, MarketName: string ... 57 more fields]

Now that we've loaded in the data - let's go ahead and register the DataFrames as SparkSQL tables.

While this might seem unnecessary, what it's going to allow you as a data scientist to do is to leverage your SQL skills immediately to manipulate the data. Some people prefer working directly with DataFrames while others prefer working in SparkSQL directly. Whatever the case, they take advantage of the same tungsten optimizations under the hood.

taxes2013.registerTempTable("taxes2013")
markets.registerTempTable("markets")
<console>:34: warning: method registerTempTable in class Dataset is deprecated: Use createOrReplaceTempView(viewName) instead. taxes2013.registerTempTable("taxes2013") ^ <console>:37: warning: method registerTempTable in class Dataset is deprecated: Use createOrReplaceTempView(viewName) instead. markets.registerTempTable("markets") ^
// // for spark 2.X
// taxes2013.createOrReplaceTempView("taxes2013")
// markets.createOrReplaceTempView("markets")

You can see that we are using the registerTempTable/createOrReplaceTempView method call to create this table. The lifetime of this temporary table is tied to the Spark/SparkSQL Context that was used to create this DataFrame. This means when you shutdown the SQLContext that is associated with a cluster (like when you shutdown the cluster) then the temporary table will disappear as well. In Databricks, Spark and SparkSQL Contexts are associated 1 to 1 with clusters.

Running SQL Commands

As we progress through the notebook, you'll notice that all SQL cells are prefaced with %sql. This tells the Databricks environment that you'd like to execute a SQL command. You can do the same with python and R as you will see in other tutorials and parts of the documentation.

In order to list the tables, we can show them very easily by simply executing show tables. You'll see that this also provides information about their lifetime (and whether or not they are temporary or not).

%sql show tables
cleaned_taxesfalse
lakehuronfalse
marketstrue
taxes2013true

Now that we've loaded in the data, let's take a quick look at it. The display command makes it easy to quickly display a subset of the table that we have. This operates directly on our DataFrame.

display(taxes2013)
01AL000001870380.0000488030.0000122290.0000247000.0000500770.00001452580.0000571240.000011255896.000870380.000011444868.000700700.00008889326.0000103290.000077952.000046870.000075071.000040890.000047416.000015650.00006538.0000146240.0000824487.000037970.000023583.000038400.0000221790.0000111060.00001066291.00008800.000049720.0000187559.000035370.000062791.00008980.000010323.0000155190.0000186574.00003300.0000747.0000140.0000487.00008950.000033584.00002540.00006212.000020760.000017533.00005900.000016956.000030.00002.000057090.0000794815.0000884758.000023440.000022991.000025940.000020686.000029140.000025144.000054970.000084317.000027140.0000151005.000042500.0000111909.0000338560.00001874627.0000333040.0000196535.00000.00000.0000108740.000037220.00002400.000056.00008850.00002899.000033010.000016969.000032080.00005457.000033530.000010160.00002650.0000677.0000117420.0000152943.0000807980.00002277816.0000399710.00001174659.0000371280.00001057938.0000258200.0000327115.000080350.000076412.0000255750.0000159189.0000371450.0000318777.00000.00000.00000.00000.000059580.000044367.0000767170.00002005593.0000
01AL000002490960.0000195840.0000155230.0000125280.0000286130.00001027850.0000383240.000017632481.000490960.000017810952.000427730.000014501798.00097400.000081216.000042440.000092536.000037100.000061479.000058830.000029891.000061400.0000252768.000032710.000054639.000034860.0000320115.0000101580.00001764445.00008890.000023590.000084183.000087130.0000542763.000010690.000049672.000095190.0000177106.000012310.00002968.0000240.0000975.00006870.000031725.00006350.000020932.000036070.000036540.00002360.00005915.000060.000035.0000115520.00001717953.00004390768.000083910.0000140609.000025240.000032077.000077400.000061241.0000113360.0000262971.000072830.0000405101.000094310.0000341396.0000470370.00008602452.0000468160.00001038975.00000.00000.0000217760.0000194669.00006030.0000262.000028850.000016248.000046050.000047721.000065150.000012104.0000124900.0000110801.000012820.00004944.000037210.000077948.0000480870.00002041535.0000132780.0000259313.0000112050.0000223466.0000104610.0000156274.000037270.000034254.0000367070.0000844185.0000386570.0000935430.00000.00000.00000.00000.000065850.000094281.0000418070.00001192755.0000
01AL000003258810.000072710.0000146880.000032860.0000157670.0000594910.0000189340.000015916085.000258810.000016070153.000223860.000012289284.00086850.000080627.000040800.0000118256.000036250.000081316.000068480.000042607.000039840.0000259836.000032420.000084137.000027970.0000348231.000072490.00001727323.00007940.000011640.000045125.000059580.0000849865.000010940.000094229.000068820.0000151722.00009550.00002369.0000190.00001100.00004800.000024606.00005070.000020023.000026750.000026173.00002290.00005165.0000110.0000171.0000105460.00001797725.00006537061.000085350.0000216962.000016720.000025271.000085670.000078046.0000104930.0000347945.000079910.0000498801.000090350.0000396144.0000257690.000010164831.000257080.00001401115.0000100.000058.0000115430.0000170908.00007860.0000542.000018540.00009741.000025080.000031702.000013300.00002074.000077900.0000118242.000010740.00004167.000026610.000065373.0000255340.00001749879.0000310.000025.0000520.000047.000010470.000013259.000018980.000017402.0000245810.00001229923.0000249040.00001310745.00000.00000.00000.00000.000058810.0000125566.0000194360.0000552938.0000
01AL000004163290.000024860.0000126480.00009790.000098920.0000424160.0000134370.000014161207.000163290.000014288572.000143290.000010773848.00072130.000071086.000036370.0000120329.000032710.000084330.000062060.000044250.000027380.0000214668.000028960.0000105947.000021820.0000357541.000052290.00001537085.00006240.00006550.000025907.000039400.0000752960.000010280.0000117239.000048480.0000123525.00009130.00002478.0000270.00002241.00003310.000018757.00003780.000017325.000017920.000020191.0000830.00001736.0000170.0000303.000086180.00001662813.00007527384.000073820.0000256947.000010260.000018251.000077040.000080626.000086010.0000382943.000071440.0000505429.000077170.0000399008.0000163020.00009939247.0000162740.00001438828.0000290.0000307.000077550.0000131562.00007760.0000804.000015740.00008662.000018370.000023848.00000.00000.000055010.000090930.00007420.00002594.000018720.000051158.0000161800.00001658126.00000.00000.00000.00000.0000720.0000836.000013430.000012398.0000161590.00001306838.0000162050.00001374682.00000.00000.00000.00000.000041950.0000113997.0000116830.0000385953.0000
01AL000005192050.000016930.0000168170.00005450.0000115290.0000538120.0000177800.000025777351.000192050.000026053920.000172590.000019141939.000110480.0000149150.000066710.0000312926.000061630.0000231997.0000106370.0000103407.000036380.0000567439.000056050.0000404166.000029250.0000738685.000065310.00002456580.00008240.00005360.000022840.000041900.0000921766.000023860.0000666191.000067940.0000263329.000012390.00003262.00001230.000017607.00007140.000050624.00005400.000029276.000019320.000019218.00004750.000010113.0000710.00002710.0000141460.00003323093.000019436460.000128960.0000697624.000010410.000023707.0000132970.0000193679.0000141390.0000969162.0000121320.00001019585.0000131150.0000869141.0000191870.000019721991.000191690.00003440302.00002270.00004948.000089410.0000123786.000017830.00004900.000019680.000010767.000021860.000030646.00000.00000.000044870.000061114.00009410.00002972.000027160.0000110673.0000190480.00003584131.00000.00000.00000.00000.000080.0000100.000020040.000019089.0000191280.00003312046.0000191470.00003460632.0000650.0000146.0000240.000063.000073380.0000358812.0000110760.0000441951.0000
01AL00000646890.00003530.000042190.0000860.000036250.0000137410.000048270.000020346741.00046890.000020752068.00041230.000010178838.00037970.0000271416.000029970.0000663873.000028610.0000523865.000024150.000085076.000012670.0000822565.000028660.00001569967.00007930.0000366219.000013000.0000714100.00002320.0000530.00002434.00009680.0000245327.000021220.00004533514.000020970.0000392075.00001000.0000251.00002730.000085219.00007980.000082472.00001090.000010402.00000.00000.00000.00000.00001600.000054845.000044170.00002375957.000019397505.00042340.0000767152.00001390.00004611.000042210.0000158794.000044160.0000956260.000034080.0000452100.000042110.0000831896.000046860.000017547726.00046850.00004781679.000014810.000073078.000019880.000088589.000013400.000049046.00002920.00001601.00000.00000.00000.00000.00000.00000.00001470.0000486.000013920.0000120102.000046350.00004697703.00000.00000.00000.00000.00000.00000.00000.00000.000046820.00004674681.000046840.00004918876.000017990.000031038.000022940.000072351.000025160.0000707320.000014840.0000252825.0000
01AL3500411530.0000950.0000260.0000300.0000800.00002250.0000710.000019524.00001530.000019851.00001180.000014383.0000230.0000183.000090.0000128.000080.000082.000040.000012.0000220.00001657.000060.00004.0000110.0000806.0000240.00002129.00000.000050.0000238.0000100.0000170.000020.000038.0000260.0000327.00000.00000.00000.00000.000030.000085.00000.00000.000040.000031.000030.000062.00000.00000.0000140.00001848.00002063.000050.000049.000080.000058.000080.000043.0000140.0000167.000080.0000503.0000100.0000194.0000670.00003894.0000660.0000411.00000.00000.0000190.000058.00000.00000.00000.00000.000050.000027.000060.000010.000050.000014.00000.00000.0000200.0000292.00001390.00003275.0000560.00001479.0000510.00001287.0000350.0000409.0000100.000087.0000530.0000353.0000720.0000662.00000.00000.00000.00000.0000120.0000119.00001310.00002734.0000
01AL3500421330.0000590.0000410.0000270.0000680.00002600.0000860.000048895.00001330.000049338.00001190.000041998.0000240.0000172.0000100.0000155.000080.0000102.0000230.0000106.0000160.0000788.000070.000054.000090.0000839.0000230.00003602.00000.000060.0000226.0000200.00001331.000020.00006.0000280.0000442.000040.00009.00000.00000.000040.0000189.000030.000082.0000130.0000126.00000.00000.00000.00000.0000400.00005354.000015571.0000330.0000642.000060.000067.0000300.0000165.0000400.0000931.0000310.00001770.0000310.0000812.00001280.000025292.00001280.00003109.00000.00000.0000560.0000536.00000.00000.0000110.000058.0000120.0000132.0000170.000027.0000330.0000308.000050.000010.0000100.0000197.00001310.00005652.0000320.0000569.0000260.0000487.0000240.0000342.000080.000074.00001050.00002574.00001100.00002819.00000.00000.00000.00000.0000170.0000188.00001140.00002998.0000
01AL350043910.0000290.0000490.0000110.0000450.00002020.0000620.000055761.0000910.000056170.0000840.000047285.0000250.0000185.0000120.0000380.0000100.0000283.0000310.0000178.0000120.0000584.000080.0000139.000070.0000820.0000190.00003420.00000.000040.0000152.0000150.00002058.000030.0000492.0000260.0000409.000040.000010.00000.00000.00000.00000.00000.00000.0000140.0000138.00000.00000.00000.00000.0000430.00006464.000026501.0000390.00001022.000040.000060.0000370.0000231.0000430.00001396.0000360.00002265.0000350.00001137.0000910.000036244.0000900.00005051.00000.00000.0000410.0000629.000040.00002.000090.000047.000080.000098.000060.00008.0000300.0000448.000030.00009.000070.0000124.0000890.00006261.00000.00000.00000.00000.000040.000035.000060.000052.0000870.00004422.0000880.00004583.00000.00000.00000.00000.0000180.0000327.0000720.00001974.0000
01AL350044610.000090.0000490.000040.0000300.00001630.0000530.000052579.0000610.000052977.0000580.000046211.0000220.000089.0000110.0000119.000090.000070.0000290.0000181.000060.0000339.000070.0000173.000060.0000757.0000150.00002905.00000.000040.0000151.000090.00001765.000020.0000171.0000190.0000397.000040.000010.00000.00000.00000.00000.000030.0000114.0000120.0000132.000030.000055.00000.00000.0000370.00006600.000032150.0000340.00001242.000040.000086.0000340.0000233.0000370.00001607.0000330.00002280.0000320.00001365.0000610.000036815.0000610.00005344.00000.00000.0000310.0000566.00000.00000.0000110.000066.000070.000082.00000.00000.0000250.0000398.000030.00006.000040.000098.0000600.00006210.00000.00000.00000.00000.00000.00000.000050.000043.0000600.00004777.0000610.00004920.00000.00000.00000.00000.0000110.0000262.0000500.00001561.0000
01AL350045510.000040.0000460.00000.0000260.00001420.0000450.000063848.0000510.000064329.0000490.000054334.0000250.0000205.0000140.0000234.0000130.0000162.0000310.0000259.000080.00001720.0000110.0000709.000060.00001313.0000130.00003274.00000.00000.00000.000080.00001715.000050.00005331.0000200.0000913.000020.00006.00000.00000.00000.00000.00000.00000.0000110.0000106.00000.00000.00000.00000.0000400.00008461.000050811.0000380.00001976.00000.00000.0000380.0000323.0000400.00002447.0000370.00002727.0000380.00002165.0000510.000048545.0000510.00008186.00000.00000.0000260.0000374.000040.00001.0000100.000053.000050.000068.00000.00000.0000150.0000213.000030.000010.000060.0000248.0000500.00008581.00000.00000.00000.00000.00000.00000.000040.000039.0000510.00007817.0000510.00008090.00000.00000.00000.00000.0000180.0000654.0000340.00001355.0000
01AL35004640.00000.000040.00000.000040.0000110.000030.000014927.000040.000015359.000040.00007682.000030.0000130.00000.00000.00000.00000.000020.000055.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000040.00001498.000014514.000040.0000480.00000.00000.000040.000053.000040.0000550.000030.0000237.000040.0000592.000040.000013069.000040.00003407.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000040.00003452.00000.00000.00000.00000.00000.00000.00000.00000.000040.00003397.000040.00003561.00000.00000.00000.00000.000020.0000379.00000.00000.0000
01AL3500511390.0000800.0000190.0000380.0000810.00002290.0000860.000018686.00001390.000019011.00001110.000014624.0000140.0000135.000060.000051.000050.000022.000050.000025.0000250.0000840.000040.0000-1.000080.0000458.0000220.00002270.00000.000080.0000346.000080.0000136.00000.00000.0000230.0000325.00000.00000.00000.00000.000020.000070.00000.00000.000030.000028.00000.00000.00000.00000.0000130.00001801.00002170.000050.000049.000040.000038.000080.000055.0000130.0000185.000080.0000426.0000110.0000288.0000570.00003269.0000570.0000344.00000.00000.0000190.000067.00000.00000.00000.00000.000060.000031.000070.000011.000050.000017.00000.00000.0000170.0000228.00001330.00003720.0000640.00001893.0000600.00001694.0000390.0000483.0000120.0000110.0000440.0000276.0000620.0000513.00000.00000.00000.00000.000080.000054.00001270.00003259.0000
01AL3500521030.0000360.0000300.0000350.0000580.00002170.0000850.000036725.00001030.000036996.0000910.000031147.0000160.000087.000070.0000122.000060.000084.0000190.000093.0000110.0000-193.000040.000042.000090.0000690.0000210.00003543.00000.000030.0000139.0000190.00001136.00000.00000.0000170.0000271.000040.00009.00000.00000.00000.00000.000040.0000138.000080.000070.00000.00000.00000.00000.0000290.00004029.000011041.0000230.0000396.000040.000041.0000210.0000158.0000290.0000709.0000210.00001003.0000270.00001008.0000990.000017582.0000990.00002120.00000.00000.0000510.0000478.00000.00000.0000100.000055.0000120.0000133.0000160.000031.0000280.0000246.000060.000022.000040.000075.00001020.00004253.0000310.0000554.0000270.0000486.0000240.0000329.0000110.000096.0000760.00001641.0000790.00001745.00000.00000.00000.00000.0000120.0000129.0000900.00002627.0000
01AL350053470.0000140.0000230.0000100.0000290.00001040.0000340.000028531.0000470.000028664.0000440.000023743.0000110.000095.000050.0000118.000040.0000106.0000150.000092.000050.0000233.000020.000022.000040.0000543.0000110.00002237.00000.000030.000087.0000100.00001267.000050.0000918.0000100.0000132.000030.00007.00000.00000.00000.00000.00000.00000.000050.000039.00000.00000.00000.00000.0000250.00004129.000014931.0000210.0000542.000040.000076.0000210.0000151.0000250.0000848.0000200.00001121.0000220.00001073.0000470.000017954.0000470.00002472.00000.00000.0000190.0000286.00000.00000.000030.000019.000040.000060.000030.00003.0000130.0000185.000030.000019.000040.000071.0000470.00003081.00000.00000.00000.00000.00000.00000.000040.000035.0000450.00002186.0000460.00002283.00000.00000.00000.00000.0000110.0000210.0000360.00001002.0000
01AL350054230.000050.0000170.000030.0000140.0000600.0000200.000019493.0000230.000019583.0000220.000017170.000060.000038.000030.000036.000020.000014.0000100.000065.000030.0000-48.000020.000062.000020.0000404.000060.0000979.00000.00000.00000.000040.0000718.00000.00000.000040.000090.00000.00000.00000.00000.00000.00000.00000.00000.000020.000024.00000.00000.00000.00000.0000110.00002083.00009825.0000100.0000366.00000.00000.0000100.000078.0000110.0000524.0000100.0000502.0000110.0000636.0000230.000013715.0000230.00001988.00000.00000.0000110.0000181.00000.00000.000040.000018.000030.000043.00000.00000.000080.0000117.000020.000012.000020.000038.0000230.00002349.00000.00000.00000.00000.00000.00000.000030.000025.0000230.00001807.0000230.00001822.00000.00000.00000.00000.000040.000082.0000190.0000605.0000
01AL350055180.00000.0000160.00000.0000110.0000510.0000170.000024952.0000180.000025136.0000170.000018478.000080.000067.000040.000055.000030.000026.000090.000077.000020.000084.000020.000048.000030.0000700.000060.00001634.00000.00000.00000.000030.0000635.00000.00000.000060.0000184.00000.00000.00000.00000.00000.00000.00000.00000.000030.000031.00000.00000.00000.00000.0000130.00002921.000018587.0000100.0000568.00000.00000.0000120.0000134.0000130.0000844.0000110.0000671.0000120.0000869.0000180.000018240.0000180.00003224.00000.00000.000070.0000106.00000.00000.00000.00000.000030.000040.00000.00000.000040.000051.00000.00000.00000.00000.0000180.00003194.00000.00000.00000.00000.00000.00000.000020.000026.0000180.00003118.0000180.00003202.00000.00000.00000.00000.000070.0000337.0000110.0000410.0000
01AL3500560.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.0000
01AL350061440.0000250.0000110.000070.0000270.0000700.0000200.00005410.0000440.00005515.0000330.00003600.000060.000026.00000.00000.00000.00000.00000.00000.000070.0000543.00000.00000.000020.0000148.000090.0000920.00000.000030.0000155.000030.000052.00000.00000.000070.000097.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000030.000033.00000.00000.00000.00000.00000.00000.00000.00000.0000160.0000924.0000160.000097.00000.00000.000040.000012.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000060.000083.0000410.0000935.0000180.0000422.0000160.0000363.000090.0000107.00000.00000.0000140.000085.0000190.0000169.00000.00000.00000.00000.000030.000022.0000390.0000784.0000
01AL350062330.0000110.0000150.000070.0000230.0000710.0000230.000011857.0000330.000011906.0000270.00009029.000060.000032.000050.000051.000040.000019.000040.000013.000030.0000188.00000.00000.000040.0000448.0000100.00001638.00000.000020.0000125.000080.0000479.00000.00000.000040.000049.00000.00000.00000.00000.00000.00000.00000.00000.000030.000028.00000.00000.00000.00000.000070.0000909.00002115.000040.000058.00000.00000.000040.000025.000070.0000137.000040.0000154.000050.0000182.0000320.00005702.0000320.0000680.00000.00000.0000140.0000115.00000.00000.00000.00000.000030.000030.000070.000015.0000110.000089.00000.00000.000020.000035.0000330.00001400.000090.0000188.000070.0000153.000060.000083.000040.000030.0000260.0000564.0000280.0000612.00000.00000.00000.00000.000040.000042.0000290.0000829.0000
01AL350063190.000040.0000130.000030.0000130.0000480.0000160.000011806.0000190.000011854.0000180.00009733.000050.000017.00000.00000.00000.00000.000040.000022.000020.000049.000050.00006.00000.00000.000050.00001204.00000.000020.000089.000040.0000611.00000.00000.000040.000048.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000050.0000790.00003008.000040.0000106.00000.00000.000040.000026.000050.0000158.000040.0000174.000040.0000154.0000190.00007581.0000190.00001051.00000.00000.000090.0000130.00000.00000.000040.000017.00000.00000.00000.00000.000070.0000113.00000.00000.000030.000026.0000190.00001406.00000.00000.00000.00000.00000.00000.00000.00000.0000190.0000921.0000190.0000947.00000.00000.00000.00000.000050.000080.0000170.0000497.0000
01AL350064130.000020.0000110.00000.0000100.0000360.0000130.000010887.0000130.000010911.0000120.00009302.000040.00006.000030.000017.000030.000011.000040.000024.000040.0000-33.00000.00000.000030.0000800.000040.0000824.00000.00000.00000.000020.0000364.00000.00000.000020.000025.00000.00000.00000.00000.00000.00000.00000.00000.000020.000017.00000.00000.00000.00000.000040.0000776.00003656.000040.0000134.00000.00000.000040.000032.000040.0000188.000040.0000218.000040.0000130.0000130.00007725.0000130.00001109.00000.00000.000050.0000102.00000.00000.00000.00000.000030.000034.00000.00000.000040.000080.00000.00000.00000.00000.0000130.00001370.00000.00000.00000.00000.00000.00000.000030.000022.0000120.00001008.0000130.00001037.00000.00000.00000.00000.00000.00000.0000100.0000369.0000
01AL350065140.00000.0000130.00000.0000100.0000410.0000140.000018342.0000140.000018399.0000130.000014855.000060.000014.00000.00000.00000.00000.000080.000057.00000.00000.00000.00000.00000.00000.000040.00001462.00000.00000.00000.000030.0000561.00000.00000.000030.000029.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000090.00001624.000012085.000090.0000424.00000.00000.000080.000083.000090.0000560.000080.0000528.000090.0000423.0000140.000014409.0000140.00002444.00000.00000.000070.000098.00000.00000.00000.00000.00000.00000.00000.00000.000040.000073.00000.00000.00000.00000.0000140.00002598.00000.00000.00000.00000.00000.00000.00000.00000.0000140.00002346.0000140.00002406.00000.00000.00000.00000.000050.0000144.000090.0000327.0000
01AL3500660.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.0000
01AL3500714300.00002720.0000620.0000870.00001820.00006400.00002360.000051595.00004300.000052779.00003370.000040128.0000460.0000260.0000260.0000374.0000220.0000229.0000120.000057.0000810.00005331.0000200.000018.0000200.00001445.0000430.00003740.00000.0000140.0000705.0000170.0000295.000070.0000253.0000880.00001184.00000.00000.00000.00000.000080.0000274.00000.00000.0000150.0000130.000050.0000151.00000.00000.0000400.00005547.00005883.0000170.0000168.0000180.0000130.0000220.0000227.0000380.0000618.0000250.00001415.0000300.0000673.00001730.00009714.00001710.00001026.00000.00000.0000460.0000167.00000.00000.000040.000013.0000140.000080.0000140.000020.0000140.000051.00000.00000.0000660.0000910.00003890.00008540.00001390.00003694.00001240.00003185.00001030.00001303.0000270.0000257.00001400.0000858.00002010.00001809.00000.00000.00000.00000.0000450.0000334.00003590.00007113.0000
01AL3500722680.00001150.0000830.0000590.00001190.00005600.00002100.000097580.00002680.000098951.00002360.000080819.0000520.0000306.0000250.0000362.0000220.0000244.0000430.0000206.0000410.00003335.0000190.0000218.0000240.00002420.0000470.00007516.00000.000080.0000296.0000420.00002870.000080.0000143.0000670.00001371.000090.000021.00000.00000.000070.0000317.000060.0000173.0000290.0000306.000020.000052.00000.00000.0000820.000011699.000031484.0000630.00001037.0000160.0000201.0000610.0000533.0000810.00001925.0000620.00003650.0000650.00002136.00002540.000048205.00002530.00005901.00000.00000.00001150.00001082.000030.00001.0000150.000087.0000250.0000256.0000330.000058.0000690.0000652.000070.000026.0000280.0000718.00002610.000010926.0000610.00001214.0000500.00001015.0000570.0000881.0000190.0000177.00002000.00004820.00002150.00005615.00000.00000.00000.00000.0000380.0000673.00002260.00005955.0000
01AL3500731870.0000530.00001050.0000230.0000930.00004540.00001610.0000115627.00001870.0000116810.00001710.000095755.0000540.0000261.0000300.0000503.0000250.0000314.0000680.0000392.0000300.00002197.0000200.0000382.0000190.00002539.0000390.00007924.000030.000070.0000278.0000320.00004889.000080.00001584.0000580.00001183.000080.000017.00000.00000.000040.0000251.000050.0000147.0000260.0000252.000030.000090.00000.00000.0000940.000015209.000058356.0000810.00002029.0000120.0000179.0000820.0000731.0000940.00003162.0000790.00004971.0000810.00003087.00001870.000072990.00001860.000010096.00000.00000.0000950.00001528.000040.00003.0000200.0000109.0000210.0000256.000090.000015.0000700.00001085.000080.000025.0000210.0000503.00001850.000012167.00000.00000.00000.00000.0000120.0000152.0000150.0000133.00001760.00008568.00001790.00009172.00000.00000.00000.00000.0000420.0000823.00001430.00003773.0000
01AL3500741390.0000150.00001130.000090.0000680.00003920.00001390.0000121145.00001390.0000122214.00001310.0000101010.0000480.0000271.0000260.0000491.0000230.0000275.0000650.0000409.0000240.00002268.0000180.0000454.0000150.00003158.0000320.00007240.00000.000050.0000166.0000240.00004585.000090.00001409.0000500.00001070.000080.000019.00000.00000.000030.0000210.000040.0000149.0000230.0000239.00000.00000.00000.00000.0000840.000015531.000073436.0000760.00002700.000070.0000115.0000780.0000735.0000840.00003798.0000780.00005436.0000770.00003441.00001390.000083752.00001390.000012005.00000.00000.0000780.00001451.000050.00003.0000220.0000120.0000190.0000273.00000.00000.0000590.0000989.000080.000026.0000180.0000460.00001380.000013520.00000.00000.00000.00000.00000.00000.0000140.0000140.00001380.000010555.00001380.000011107.00000.00000.00000.00000.0000360.0000969.00001020.00003332.0000
01AL3500751550.0000110.00001400.000050.0000780.00004690.00001740.0000200673.00001550.0000202491.00001490.0000167948.0000730.0000681.0000430.00001070.0000390.0000796.00001010.0000919.0000280.00005080.0000300.0000850.0000190.00005339.0000390.000011083.00000.000030.0000108.0000230.00004957.0000140.00003740.0000540.00001818.0000120.000029.00000.00000.000060.0000495.000050.0000270.0000200.0000197.000040.000077.00000.00000.00001250.000026892.0000164242.00001190.00006258.000060.0000123.00001190.00001401.00001250.00008238.00001150.00008842.00001180.00006627.00001550.0000151809.00001550.000025913.00000.00000.0000780.00001181.000080.00005.0000220.0000123.0000220.0000311.00000.00000.0000460.0000668.000090.000028.0000190.0000745.00001540.000026969.00000.00000.00000.00000.00000.00000.0000200.0000197.00001540.000024733.00001540.000025748.00000.00000.00000.00000.0000580.00002322.0000940.00003348.0000
01AL350076200.00000.0000180.00000.0000130.0000600.0000220.000057088.0000200.000058105.0000190.000036511.0000140.0000169.0000100.0000366.000090.0000252.0000140.0000254.000050.00002606.000080.00002849.000030.00001365.000060.00003724.00000.00000.00000.000040.0000795.000050.00008562.000070.00001017.00000.00000.00000.00000.000020.0000239.00000.00000.00000.00000.00000.00000.00000.00000.0000190.00006583.000054010.0000180.00002011.00000.00000.0000180.0000354.0000190.00002475.0000160.00001689.0000180.00002140.0000200.000048408.0000200.000011553.000070.0000141.000060.000070.000020.00004.000020.000012.00000.00000.00000.00000.00000.00000.00000.00000.000040.0000268.0000200.000010386.00000.00000.00000.00000.00000.00000.00000.00000.0000200.000011446.0000200.000011981.000060.000039.000060.000033.0000110.00002371.000080.0000684.0000
01AL3501014090.00002040.0000560.00001450.00002090.00007440.00003280.000054617.00004090.000055178.00003470.000045463.0000410.0000394.0000180.0000359.0000160.0000211.000080.000029.0000480.00001962.0000150.000025.0000200.00001093.0000540.00004359.00000.0000300.0000960.0000160.0000260.000030.0000228.0000500.0000561.00000.00000.00000.00000.000040.0000120.00000.00000.000080.000072.000040.000093.00000.00000.0000220.00003201.00003442.000090.000077.0000110.0000104.0000110.000073.0000220.0000284.0000110.0000620.0000180.0000432.00001540.00008158.00001520.0000852.00000.00000.0000550.0000166.00000.00000.000080.000025.0000100.000045.0000180.000030.0000220.000062.00000.00000.0000370.0000430.00003870.000011610.00002000.00005911.00001890.00005575.00001440.00001882.0000290.0000296.00001110.0000685.00001490.00001139.00000.00000.00000.00000.0000200.0000119.00003710.000010596.0000
01AL3501022130.0000660.0000650.0000770.00001190.00005050.00002280.000074134.00002130.000074726.00001900.000061661.0000350.0000313.0000150.0000277.0000140.0000164.0000180.000094.0000220.00001202.0000130.0000178.0000140.00001223.0000440.00006505.000040.0000160.0000523.0000380.00002210.000030.000059.0000330.0000592.000050.000012.00000.00000.000030.0000140.000050.0000158.0000110.0000102.00000.00000.00000.00000.0000330.00004940.000012354.0000230.0000350.000090.000097.0000240.0000148.0000320.0000743.0000220.00001152.0000270.00001046.00001980.000033485.00001970.00003991.00000.00000.00001010.0000856.000030.00002.0000170.0000113.0000130.0000146.0000310.000061.0000640.0000503.000070.000022.0000150.0000287.00002100.00009102.0000620.00001208.0000520.00001037.0000610.00001160.0000120.0000111.00001440.00003135.00001530.00003502.00000.00000.00000.00000.0000260.0000343.00001850.00005894.0000
01AL350103900.0000210.0000560.0000120.0000540.00002130.0000680.000055571.0000900.000056040.0000780.000041035.0000280.0000359.0000130.0000462.0000120.0000288.0000220.0000122.0000130.00001335.0000110.0000339.0000130.00001742.0000260.00005765.000020.000050.0000241.0000270.00004089.000040.0000112.0000240.0000469.000030.00008.00000.00000.000020.0000104.000040.0000144.000090.000091.00000.00000.00000.00000.0000320.00005450.000019731.0000250.0000591.000060.000086.0000260.0000185.0000310.0000926.0000230.00001438.0000270.00001311.0000900.000035364.0000900.00004802.00000.00000.0000410.0000603.000030.00001.0000100.000060.000070.000080.000060.00008.0000280.0000425.000040.000010.0000100.0000260.0000890.00005866.00000.00000.00000.00000.000030.000025.000060.000047.0000870.00004199.0000880.00004527.00000.00000.00000.00000.0000230.0000520.0000650.00001803.0000
01AL350104530.000050.0000460.000030.0000330.00001420.0000450.000045396.0000530.000045809.0000440.000032427.0000230.0000288.0000130.0000649.0000120.0000435.0000160.0000124.0000100.00001371.0000110.0000795.0000110.00001559.0000190.00005128.000020.000030.0000149.0000150.00003041.000030.0000620.0000160.0000413.000040.000012.00000.00000.000020.0000102.00000.00000.000060.000049.00000.00000.00000.00000.0000250.00004923.000021633.0000200.0000656.000050.000065.0000230.0000214.0000250.0000990.0000200.00001507.0000230.00001355.0000520.000031724.0000520.00004407.00000.00000.0000260.0000464.000050.000017.000060.000041.000070.000091.00000.00000.0000170.0000289.000020.00008.000070.0000258.0000520.00005023.00000.00000.00000.00000.00000.00000.000050.000042.0000520.00003943.0000520.00004264.00000.00000.00000.00000.0000140.0000424.0000360.00001133.0000
01AL350105520.000040.0000480.00000.0000360.00001420.0000430.000067688.0000520.000068277.0000440.000045094.0000280.0000661.0000180.00001320.0000170.0000985.0000250.0000265.0000120.00001635.0000170.00001683.0000110.00002889.0000190.00007854.000030.000020.000073.0000160.00003836.000090.00001595.0000180.0000589.000040.000012.00000.00000.000020.0000138.000020.0000120.000040.000036.00000.00000.00000.00000.0000370.00008797.000048922.0000320.00001637.000060.0000134.0000350.0000491.0000370.00002324.0000300.00002670.0000350.00002310.0000520.000051432.0000520.00008593.00000.00000.0000240.0000313.000060.000012.000060.000044.000060.000090.00000.00000.0000110.0000152.000020.00007.000090.0000273.0000520.00008789.00000.00000.00000.00000.00000.00000.000060.000060.0000520.00008280.0000520.00008637.00000.00000.00000.00000.0000230.0000979.0000260.0000989.0000
01AL350106150.00000.0000140.00000.0000130.0000400.0000110.000081091.0000150.000082076.0000130.000031697.0000110.00002230.0000100.00004260.0000100.00003404.000080.0000242.000050.00004607.0000110.00006124.000040.00002706.000050.00003133.00000.00000.00000.000050.00001134.000070.000010805.000070.0000986.00000.00000.00000.00000.000030.0000336.00000.00000.00000.00000.00000.00000.00000.00000.0000150.00007983.000071472.0000130.00002043.00000.00000.0000140.0000653.0000150.00002794.0000120.00002057.0000140.00002243.0000150.000066351.0000150.000018510.000050.0000484.000070.0000162.000040.000028.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000050.0000333.0000150.000022616.00000.00000.00000.00000.00000.00000.00000.00000.0000150.000018791.0000150.000019574.000050.0000114.000070.0000566.000080.00002574.000040.0000854.0000
01AL350141680.0000310.000090.0000280.0000420.00001160.0000470.00009152.0000680.00009279.0000560.00007285.000090.000060.000030.000021.000040.000013.00000.00000.0000120.0000614.000020.0000-8.000030.0000176.000090.0000941.000030.000050.0000184.000020.000035.00000.00000.0000120.0000127.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000060.0000655.0000971.000030.000042.00000.00000.000030.000018.000060.000089.000030.0000162.000050.0000128.0000260.00001352.0000260.0000141.00000.00000.0000100.000031.00000.00000.00000.00000.000030.00009.000030.00006.000040.000013.00000.00000.000090.0000111.0000640.00001970.0000360.00001070.0000340.0000975.0000220.0000246.000090.0000107.0000180.0000110.0000270.0000225.00000.00000.00000.00000.000040.000025.0000620.00001770.0000
01AL350142480.0000140.0000120.0000210.0000280.00001000.0000400.000017141.0000480.000017279.0000440.000014834.000070.000038.000030.000044.00000.00000.0000100.000064.000040.000067.000030.000027.000030.0000300.000090.00001387.00000.000040.0000101.000080.0000446.00000.00000.000080.0000137.000030.00007.00000.00000.00000.00000.000040.0000132.000040.000029.00000.00000.00000.00000.0000150.00002440.00005574.0000130.0000191.000050.000050.0000100.000048.0000150.0000285.000080.0000433.0000130.0000463.0000470.00007871.0000470.0000940.00000.00000.0000240.0000228.00000.00000.000050.000028.000060.000072.000090.000018.0000150.0000133.00000.00000.000040.000079.0000480.00001962.0000160.0000291.0000140.0000256.0000110.0000130.000030.000033.0000350.0000712.0000370.0000785.00000.00000.00000.00000.000060.000076.0000420.00001247.0000
01AL350143200.000050.000090.000080.0000130.0000470.0000170.000012162.0000200.000012248.0000180.000010252.000060.000025.00000.00000.000030.000068.000070.000042.000030.000052.00000.00000.000030.0000578.000050.00001169.00000.000020.000068.000040.0000512.00000.00000.000040.000085.00000.00000.00000.00000.00000.00000.00000.00000.000030.000024.00000.00000.00000.00000.000090.00001746.00005271.000080.0000170.00000.00000.000060.000031.000090.0000235.000060.0000384.000080.0000393.0000200.00007402.0000200.00001011.00000.00000.0000100.0000130.00000.00000.000030.000013.00000.00000.00000.00000.000060.000085.000050.000015.00000.00000.0000200.00001373.00000.00000.00000.00000.00000.00000.000040.000036.0000190.0000880.0000190.0000926.00000.00000.00000.00000.000040.000087.0000160.0000531.0000
01AL350144140.000020.0000110.00000.0000100.0000340.0000100.000011998.0000140.000012077.0000120.00008965.000070.000067.000020.000059.00000.00000.000050.000033.000030.0000125.00000.00000.00000.00000.000050.00001484.000020.00000.00000.000040.0000719.000040.00001192.000030.000079.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000060.00001340.00005356.000060.0000193.00000.00000.000060.000033.000060.0000247.000060.0000392.000050.0000273.0000140.00008404.0000140.00001204.00000.00000.000060.000087.00000.00000.00000.00000.000020.000036.00000.00000.000060.000087.00000.00000.000020.000045.0000140.00001467.00000.00000.00000.00000.00000.00000.00000.00000.0000140.00001117.0000140.00001165.00000.00000.00000.00000.000030.000092.0000100.0000390.0000
01AL350145110.00000.0000100.00000.000090.0000300.000080.000016752.0000110.000017002.0000100.000011028.000080.000041.000040.0000145.000030.000078.000060.000063.00000.00000.000030.000083.000020.0000827.000040.00001387.00000.00000.00000.000030.0000716.00000.00000.000030.0000140.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000080.00001918.000012546.000070.0000435.00000.00000.000070.000091.000080.0000562.000060.0000490.000070.0000568.0000110.000013248.0000110.00002601.00000.00000.000030.000053.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.0000110.00002576.00000.00000.00000.00000.00000.00000.00000.00000.0000110.00002548.0000110.00002656.00000.00000.00000.00000.000050.0000303.000060.0000249.0000
01AL3501460.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.0000
01AL3501612920.00001690.0000650.0000530.00001770.00004510.00001380.000035345.00002920.000036162.00002190.000024808.0000450.0000338.0000150.0000171.0000130.000086.000060.000026.0000540.00004172.0000130.000070.0000190.00001174.0000440.00004568.000040.0000170.0000591.0000130.0000207.000030.0000119.0000570.0000817.00000.00000.00000.00000.000070.0000307.00000.00000.000060.000044.000030.000050.00000.00000.0000160.00002216.00002374.000050.000051.000090.000065.000090.000055.0000160.0000200.000070.0000379.0000110.0000283.00001060.00005941.00001040.0000623.00000.00000.0000280.000081.00000.00000.00000.00000.000060.000031.0000130.000021.000080.000023.00000.00000.0000480.0000681.00002670.00006335.00001210.00002967.00001070.00002488.0000660.0000794.0000160.0000126.0000880.0000541.00001350.00001264.00000.00000.00000.00000.0000250.0000195.00002500.00005221.0000
01AL3501621670.0000600.0000780.0000240.00001130.00003540.00001090.000060777.00001670.000061426.00001380.000045976.0000430.0000397.0000170.0000288.0000150.0000179.0000200.000093.0000230.00001703.0000130.0000262.0000170.00001385.0000430.00008828.000050.0000110.0000406.0000400.00002190.000050.0000317.0000330.0000649.000040.00009.00000.00000.000040.0000194.000050.0000155.000090.000077.00000.00000.00000.00000.0000320.00004640.000012116.0000220.0000351.000080.000086.0000250.0000144.0000310.0000646.0000230.00001268.0000250.0000718.00001590.000029472.00001580.00003537.00000.00000.0000690.0000564.000030.00001.0000100.000042.0000110.0000108.0000250.000047.0000390.0000352.000060.000016.0000170.0000358.00001640.00006934.0000440.0000854.0000350.0000711.0000320.0000456.0000100.000084.00001300.00002973.00001390.00003394.00000.00000.00000.00000.0000240.0000351.00001410.00003857.0000
01AL3501631040.0000210.0000720.000090.0000730.00002490.0000740.000064317.00001040.000064796.0000860.000046822.0000410.0000431.0000170.0000438.0000160.0000283.0000250.0000139.0000170.00001352.0000150.0000413.0000140.00001373.0000340.000010270.000060.000060.0000168.0000270.00003570.000050.0000285.0000260.0000479.000040.000010.00000.00000.000050.0000201.00000.00000.000090.000086.00000.00000.00000.00000.0000350.00005614.000022138.0000280.0000660.000070.000092.0000320.0000193.0000350.00001017.0000280.00001531.0000300.00001120.00001030.000041124.00001030.00005541.00000.00000.0000490.0000694.000030.00001.000090.000038.0000100.0000116.000080.000013.0000320.0000480.000070.000018.0000110.0000299.00001030.00007014.00000.00000.00000.00000.000050.000051.000080.000072.0000980.00004847.00001000.00005218.00000.00000.00000.00000.0000210.0000445.0000810.00002220.0000
01AL350164670.000070.0000570.000040.0000470.00001780.0000540.000057604.0000670.000058080.0000550.000042772.0000300.0000252.0000130.0000275.0000120.0000142.0000240.0000171.0000130.0000972.0000120.0000537.0000100.00001752.0000220.00008360.000050.000050.0000160.0000170.00003019.000040.0000605.0000200.0000476.000050.000012.00000.00000.00000.00000.000030.0000184.000070.000067.00000.00000.00000.00000.0000300.00005490.000025576.0000240.0000880.000050.000074.0000270.0000199.0000300.00001233.0000240.00001536.0000260.00001483.0000670.000040634.0000670.00005750.00000.00000.0000340.0000539.000030.00002.000070.000029.000090.0000117.00000.00000.0000230.0000370.000040.000010.000090.0000263.0000660.00006814.00000.00000.00000.00000.00000.00000.000080.000067.0000660.00005211.0000670.00005536.00000.00000.00000.00000.0000150.0000431.0000500.00001679.0000
01AL350165620.000040.0000560.00000.0000420.00001820.0000640.000080279.0000620.000080902.0000560.000062197.0000350.0000312.0000180.0000420.0000170.0000259.0000350.0000347.0000140.00002055.0000160.0000814.0000110.00002743.0000230.00009312.000060.00000.00000.0000130.00002717.000050.00001162.0000220.0000623.000080.000021.00000.00000.000030.0000205.00000.00000.000050.000037.000020.000043.00000.00000.0000430.00009572.000057288.0000390.00001968.000050.000092.0000420.0000452.0000430.00002621.0000380.00002915.0000410.00002809.0000620.000061294.0000620.000010445.00000.00000.0000310.0000403.000070.00003.000060.000029.0000100.0000138.00000.00000.0000160.0000211.000040.00008.0000110.0000633.0000620.000011284.00000.00000.00000.00000.00000.00000.000090.000084.0000620.000010042.0000620.000010513.00000.00000.00000.00000.0000210.0000846.0000400.00001545.0000
01AL350166110.00000.0000100.00000.000080.0000330.0000120.000031139.0000110.000031860.0000100.000019706.000090.0000315.000060.0000331.000060.0000187.000070.0000120.000030.00003092.000060.00001342.00000.00000.000030.00001824.000020.00000.00000.000030.0000563.000030.00003359.000040.0000721.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000090.00003485.000027726.000090.0000927.00000.00000.000090.0000228.000090.00001198.000070.0000851.000090.00001193.0000110.000026409.0000110.00006287.000040.000080.000030.000013.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.0000110.00006309.00000.00000.00000.00000.00000.00000.00000.00000.0000110.00006274.0000110.00006633.000050.000039.000040.000073.000050.0000914.000050.0000346.0000
01AL350191420.0000220.0000120.000070.0000300.0000750.0000260.00005195.0000420.00005334.0000310.00003547.000070.000068.000020.000020.000020.000014.000030.000012.0000100.0000802.000020.000035.00000.00000.000060.0000671.000020.000030.000082.00000.00000.00000.00000.0000100.0000139.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000030.0000453.0000434.000030.000033.000020.000015.000030.000016.000030.000025.000040.0000205.000040.000081.0000150.0000753.0000140.000076.00000.00000.000030.00009.00000.00000.00000.00000.000020.000014.00000.00000.00000.00000.00000.00000.000090.0000143.0000380.00001035.0000190.0000540.0000170.0000432.0000120.0000152.000020.000018.0000120.000067.0000200.0000217.00000.00000.00000.00000.000030.000031.0000360.0000847.0000
01AL350192260.000080.0000140.000050.0000180.0000610.0000220.00008858.0000260.00008933.0000230.00007647.000060.000030.000030.000043.000020.000037.00000.00000.000050.0000263.000030.00009.000050.0000299.000040.0000666.000040.000030.000095.000070.0000419.000030.0000293.000050.000075.000020.00005.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000030.0000395.0000938.00000.00000.00000.00000.00000.00000.000030.000042.00000.00000.00000.00000.0000250.00003818.0000250.0000439.00000.00000.0000120.000095.00000.00000.000020.000012.00000.00000.000070.000016.000080.000063.00000.00000.000030.000046.0000250.00001118.000090.0000180.000080.0000141.000070.0000114.00000.00000.0000180.0000343.0000200.0000393.00000.00000.00000.00000.000020.000029.0000230.0000745.0000
01AL350193130.000030.000090.00000.000090.0000330.0000110.00007851.0000130.00007919.0000120.00006524.000060.000010.000030.000045.000030.000043.000020.000017.00000.00000.00000.00000.00000.00000.000030.0000710.00000.00000.00000.00000.00000.00000.00000.000030.000068.00000.00000.00000.00000.00000.00000.00000.00000.000040.000029.00000.00000.00000.00000.000030.0000507.00001999.000030.000065.00000.00000.000030.000014.000030.000088.000020.0000164.000030.000072.0000130.00004982.0000130.0000667.00000.00000.000070.0000100.00000.00000.00000.00000.000030.000039.00000.00000.000050.000076.00000.00000.000030.000094.0000130.0000912.00000.00000.00000.00000.00000.00000.000030.000024.0000120.0000567.0000120.0000629.00000.00000.00000.00000.000040.000078.0000100.0000321.0000
01AL35019460.00000.000050.00000.000040.0000160.000060.00004958.000060.00005015.000060.00004222.00000.00000.00000.00000.00000.00000.000020.000015.000020.0000163.000020.000075.00000.00000.000040.0000965.000030.00000.00000.000020.0000378.00000.00000.000020.000057.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000030.0000607.00002490.000020.000080.00000.00000.000030.000014.000030.0000113.000030.0000201.000030.0000127.000060.00003357.000060.0000468.00000.00000.000050.000094.00000.00000.00000.00000.00000.00000.00000.00000.000030.000053.00000.00000.00000.00000.000060.0000566.00000.00000.00000.00000.00000.00000.00000.00000.000060.0000412.000060.0000431.00000.00000.00000.00000.00000.00000.000040.0000168.0000
01AL35019560.00000.000050.00000.000040.0000150.000040.00008047.000060.00008191.000050.00006275.000040.0000187.00000.00000.00000.00000.000030.000028.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000030.0000143.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000040.0000929.00005131.000030.0000176.00000.00000.000030.000039.000040.0000275.000030.0000261.000030.0000258.000060.00006242.000060.00001111.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000060.00001211.00000.00000.00000.00000.00000.00000.00000.00000.000060.00001073.000060.00001147.00000.00000.00000.00000.000020.0000106.000030.0000114.0000
01AL3501960.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.0000
01AL3502016310.00002800.0000380.00003060.00004180.000012820.00006470.000085377.00006310.000086277.00005500.000073707.0000240.000092.000080.000068.000060.000032.0000130.000058.00001000.00003848.000040.000049.0000130.0000720.0000600.00005537.00000.0000390.00001478.0000150.0000286.00000.00000.0000890.0000899.000030.00006.00000.00000.00000.00000.000020.000051.000080.000080.000030.000075.00000.00000.0000320.00003637.00005316.0000180.0000175.000090.000096.0000150.000094.0000310.0000463.0000150.0000636.0000280.0000871.00001950.00009821.00001940.00001030.00000.00000.0000840.0000289.00000.00000.000090.000031.0000210.0000110.0000240.000045.0000310.000090.000040.000011.0000720.0000916.00006110.000022757.00004170.000014214.00004040.000013364.00002770.00003526.0000810.0000821.00001260.0000741.00002020.00001697.00000.00000.00000.00000.0000260.0000143.00005940.000021271.0000
01AL3502022570.0000910.0000400.00001220.00001550.00005640.00002680.000089370.00002570.000089983.00002360.000078860.0000230.0000187.000080.0000151.000060.0000122.0000350.0000165.0000260.0000-459.000050.0000106.0000100.00001006.0000470.00007349.00000.000080.0000337.0000330.00001957.000050.0000362.0000350.0000613.000050.000012.00000.00000.000050.0000186.000040.0000117.0000140.0000157.00000.00000.00000.00000.0000690.00009866.000025639.0000570.0000935.000080.0000123.0000400.0000286.0000680.00001582.0000350.00001555.0000630.00002920.00002480.000041467.00002470.00004985.00000.00000.00001320.00001236.00000.00000.0000230.0000146.0000280.0000321.0000390.000062.0000760.0000653.0000110.000052.0000100.0000186.00002530.000010493.0000910.00001726.0000800.00001505.0000670.0000946.0000260.0000256.00001800.00003749.00001870.00003980.00000.00000.00000.00000.0000290.0000450.00002270.00006974.0000
01AL350203680.0000250.0000210.0000210.0000420.00001400.0000520.000040900.0000680.000041247.0000620.000032802.0000140.0000201.000050.0000119.000040.000091.0000210.0000122.0000100.0000547.000050.000069.000050.0000562.0000210.00004470.00000.000030.0000138.0000140.00001864.00000.00000.0000140.0000347.000020.00006.00000.00000.00000.00000.000030.000086.000050.000051.00000.00000.00000.00000.0000340.00005830.000020357.0000290.0000735.000060.000091.0000240.0000176.0000330.00001086.0000220.00001125.0000310.00001796.0000680.000026409.0000680.00003754.00000.00000.0000270.0000391.00000.00000.000040.000027.000070.0000104.000020.00003.0000160.0000230.000050.000023.000050.0000124.0000670.00004670.00000.00000.00000.00000.00000.00000.000060.000063.0000660.00003362.0000660.00003530.00000.00000.00000.00000.0000150.0000346.0000530.00001492.0000
01AL350204240.000050.0000140.000060.0000150.0000560.0000180.000020335.0000240.000020544.0000220.000016355.000070.000028.000030.000052.000020.000038.0000100.000094.000040.00004.00000.00000.000020.0000368.000090.00002225.00000.00000.00000.000050.00001002.000030.00001092.000050.0000209.000020.00005.00000.00000.00000.00000.00000.00000.000030.000033.00000.00000.00000.00000.0000130.00002542.000011208.0000120.0000433.00000.00000.0000110.0000109.0000130.0000627.0000100.0000518.0000130.0000811.0000240.000014404.0000240.00002188.00000.00000.0000100.0000150.00000.00000.000030.000019.000030.000046.00000.00000.000060.000081.000040.000020.000030.0000119.0000240.00002682.00000.00000.00000.00000.00000.00000.000050.000041.0000240.00002037.0000240.00002127.00000.00000.00000.00000.000070.0000192.0000170.0000742.0000
01AL350205170.000020.0000130.00000.0000120.0000450.0000150.000024259.0000170.000024424.0000160.000015604.000070.000051.000040.000035.000030.000027.000090.000084.000020.0000201.000030.0000324.000020.0000715.000060.00002659.00000.00000.00000.000050.00001138.00000.00000.000040.0000156.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.0000120.00002788.000018012.0000110.0000572.00000.00000.0000110.0000161.0000120.0000830.0000100.0000696.0000110.0000946.0000170.000018867.0000170.00003502.00000.00000.000060.000098.00000.00000.00000.00000.000020.000026.00000.00000.000030.000049.00000.00000.00000.00000.0000170.00003230.00000.00000.00000.00000.00000.00000.00000.00000.0000170.00003393.0000170.00003501.00000.00000.00000.00000.000060.0000746.0000100.0000458.0000
01AL3502060.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.0000
01AL3502213280.00001970.0000430.0000830.00001900.00005080.00001860.000041781.00003280.000042500.00002570.000032293.0000450.0000275.0000210.0000348.0000180.0000221.000090.000039.0000570.00002160.0000140.0000-61.0000200.00001256.0000490.00005000.000020.0000150.0000708.0000220.0000388.000030.000053.0000550.0000719.00000.00000.00000.00000.000050.0000188.00000.00000.000080.000062.000030.000093.00000.00000.0000370.00005036.00005733.0000150.0000180.0000180.0000168.0000250.0000259.0000360.0000672.0000230.00001356.0000300.0000801.00001290.00007117.00001270.0000747.00000.00000.0000400.0000144.00000.00000.000050.000017.0000130.000067.0000120.000021.0000110.000035.00000.00000.0000430.0000569.00002990.00007849.00001350.00003927.00001240.00003593.0000840.00001064.0000310.0000296.0000990.0000603.00001400.00001213.00000.00000.00000.00000.0000300.0000249.00002800.00006923.0000
01AL3502222290.0000970.0000580.0000630.00001250.00004440.00001570.000084149.00002290.000085238.00001960.000068889.0000450.0000327.0000200.0000225.0000160.0000146.0000460.0000251.0000340.00001081.0000120.000069.0000190.00002124.0000510.00008849.00000.000080.0000293.0000430.00002886.000050.0000337.0000530.00001089.0000100.000025.00000.00000.000040.0000200.000060.0000184.0000220.0000218.000020.000053.00000.00000.0000870.000013299.000033806.0000660.00001210.0000170.0000253.0000640.0000704.0000870.00002440.0000640.00003968.0000770.00002961.00002200.000041498.00002190.00005103.00000.00000.0000950.0000926.000030.00001.0000160.000094.0000250.0000290.0000250.000043.0000520.0000461.000090.000036.0000190.0000478.00002240.00009330.0000530.0000964.0000450.0000807.0000410.0000556.0000190.0000192.00001780.00004177.00001880.00004731.00000.00000.00000.00000.0000340.0000585.00001930.00005185.0000
01AL3502231470.0000500.0000630.0000290.0000830.00003030.0000930.000090659.00001470.000091454.00001290.000070219.0000440.0000366.0000230.0000589.0000200.0000415.0000580.0000422.0000220.0000771.0000160.0000195.0000160.00002213.0000440.000010695.00000.000060.0000233.0000350.00005053.000050.0000367.0000420.0000795.000070.000018.00000.00000.000030.0000178.000030.0000106.0000180.0000166.000030.000079.00000.00000.0000890.000016104.000055113.0000750.00001996.0000110.0000179.0000760.00001249.0000890.00003751.0000730.00005154.0000810.00003663.00001460.000056973.00001460.00007986.00000.00000.0000600.0000870.000040.00002.0000130.000068.0000150.0000197.000060.00009.0000390.0000535.000070.000036.0000130.0000319.00001450.000010113.00000.00000.00000.00000.000060.000071.0000110.0000106.00001400.00007117.00001420.00007533.00000.00000.00000.00000.0000340.0000780.00001110.00003260.0000
01AL350224990.0000190.0000670.0000120.0000560.00002420.0000760.000085678.0000990.000086327.0000900.000068306.0000370.0000261.0000200.0000603.0000170.0000372.0000520.0000407.0000190.0000913.0000140.0000388.0000130.00002466.0000310.00007892.000020.000030.0000147.0000220.00004244.000050.0000571.0000290.0000649.000050.000012.00000.00000.00000.00000.000030.0000100.0000140.0000158.00000.00000.00000.00000.0000710.000014908.000061444.0000640.00002252.000060.0000114.0000640.0000811.0000710.00003447.0000630.00005033.0000650.00003549.0000990.000058025.0000990.00008509.00000.00000.0000440.0000729.000030.00002.0000110.000062.0000110.0000144.00000.00000.0000320.0000473.000060.000041.0000110.0000258.0000980.00009737.00000.00000.00000.00000.00000.00000.000070.000063.0000980.00007780.0000980.00008138.00000.00000.00000.00000.0000260.0000725.0000720.00002313.0000
01AL3502251310.0000120.00001140.000050.0000750.00003560.00001110.0000170872.00001310.0000172554.00001230.0000139642.0000650.0000533.0000350.0000944.0000320.0000551.0000880.0000878.0000280.00002536.0000250.00001065.0000160.00004615.0000390.000012658.00000.000050.0000186.0000220.00004581.0000120.00003844.0000480.00001681.0000100.000026.00000.00000.000050.0000306.000030.0000206.0000170.0000189.000030.000061.00000.00000.00001100.000027146.0000145820.00001040.00005586.000070.0000192.00001050.00001625.00001100.00007845.00001020.00009200.00001040.00007000.00001310.0000127418.00001310.000021933.00000.00000.0000570.0000822.000090.0000134.0000210.0000124.0000130.0000174.00000.00000.0000320.0000412.000070.000035.0000180.0000643.00001300.000023218.00000.00000.00000.00000.00000.00000.0000120.0000110.00001310.000021111.00001310.000021964.00000.00000.00000.00000.0000450.00001953.0000840.00003118.0000
01AL350226150.00000.0000140.00000.0000120.0000410.0000120.000043190.0000150.000043466.0000140.000029422.0000100.0000137.000070.0000375.000060.0000236.0000100.0000238.000030.00001371.000070.00002404.000030.00001813.000050.00002687.00000.00000.00000.000040.0000805.000040.00003250.000050.0000276.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.0000140.00005263.000040062.0000130.00001478.00000.00000.0000130.0000289.0000140.00001892.0000120.00001422.0000130.00001397.0000150.000036572.0000150.00008681.000060.000092.000040.0000285.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000030.0000126.0000150.00008144.00000.00000.00000.00000.00000.00000.00000.00000.0000150.00008396.0000150.00008665.000050.000045.000050.000054.000090.00001440.000050.0000232.0000
01AL3502313770.00002220.0000600.0000890.00002250.00005870.00001990.000049444.00003770.000050349.00002840.000036144.0000550.0000463.0000200.0000257.0000170.0000146.000080.000029.0000560.00002763.0000120.000014.0000300.00001703.0000740.00007205.00000.0000190.0000831.0000280.0000478.000030.000092.0000620.0000905.00000.00000.00000.00000.000050.0000231.00000.00000.0000100.000085.000020.000059.00000.00000.0000330.00004463.00005325.0000120.0000123.0000170.0000152.0000180.0000155.0000320.0000495.0000180.0000983.0000270.0000735.00001610.00008682.00001600.0000906.00000.00000.0000490.0000163.000020.00001.000080.000025.0000140.000067.0000160.000028.0000130.000038.00000.00000.0000420.0000577.00003470.00008811.00001480.00004183.00001360.00003757.0000910.00001125.0000290.0000257.00001250.0000743.00001680.00001346.00000.00000.00000.00000.0000250.0000178.00003310.00007638.0000
01AL3502322920.00001160.0000920.0000750.00001780.00005920.00002100.0000105697.00002920.0000106684.00002500.000084654.0000600.0000632.0000230.0000300.0000200.0000230.0000460.0000211.0000330.00001333.0000140.0000243.0000250.00002519.0000700.000011949.00000.0000120.0000423.0000600.00003954.000050.0000134.0000530.0000987.000080.000018.00000.00000.000040.0000199.000060.0000197.0000200.0000194.000030.000069.00000.00000.0000800.000011289.000030429.0000610.00001043.0000160.0000249.0000550.0000451.0000800.00002009.0000510.00002585.0000720.00002581.00002820.000052316.00002810.00006321.00000.00000.00001270.00001188.00000.00000.0000240.0000129.0000260.0000265.0000410.000068.0000750.0000681.0000100.000045.0000190.0000410.00002870.000011981.0000760.00001404.0000620.00001173.0000540.0000733.0000220.0000205.00002270.00005133.00002390.00005642.00000.00000.00000.00000.0000370.0000488.00002520.00006807.0000
01AL3502331570.0000390.0000890.0000240.00001010.00003610.00001160.000096099.00001570.000096695.00001370.000074608.0000460.0000367.0000160.0000357.0000140.0000271.0000470.0000275.0000210.00001049.0000110.0000338.0000180.00002336.0000450.000010538.000030.000060.0000242.0000390.00005845.000050.0000564.0000350.0000596.000040.00009.00000.00000.000030.0000170.000040.0000173.0000140.0000138.00000.00000.00000.00000.0000690.000011213.000042849.0000590.00001493.000090.0000146.0000600.0000549.0000690.00002410.0000570.00003296.0000640.00002698.00001560.000061256.00001560.00008407.00000.00000.0000690.00001041.000050.00003.0000130.000069.0000150.0000190.000070.000011.0000490.0000724.000070.000026.0000140.0000308.00001550.000010652.00000.00000.00000.00000.000070.000086.0000120.0000107.00001490.00007366.00001510.00007759.00000.00000.00000.00000.0000320.0000616.00001220.00003449.0000
01AL350234980.0000120.0000790.000060.0000660.00002640.0000870.000084651.0000980.000085148.0000890.000067241.0000370.0000240.0000140.0000209.0000130.0000140.0000410.0000258.0000140.00001223.000090.0000298.0000130.00002356.0000300.00007942.00000.000050.0000189.0000230.00004606.000040.0000482.0000220.0000497.000060.000014.00000.00000.00000.00000.00000.00000.000080.000079.00000.00000.00000.00000.0000520.00009496.000045412.0000460.00001637.000050.000099.0000470.0000475.0000520.00002435.0000440.00002814.0000490.00002533.0000980.000059384.0000980.00008563.00000.00000.0000470.0000823.00000.00000.000080.000042.0000140.0000182.00000.00000.0000340.0000543.000040.000017.0000100.0000245.0000980.000010160.00000.00000.00000.00000.00000.00000.0000110.0000102.0000970.00007740.0000970.00008071.00000.00000.00000.00000.0000220.0000534.0000750.00002535.0000
01AL350235910.000060.0000820.000040.0000630.00002520.0000790.0000115427.0000910.0000116039.0000870.000093042.0000450.0000639.0000200.0000401.0000190.0000293.0000550.0000468.0000130.00001280.0000130.0000770.0000140.00004826.0000310.00008975.00000.000020.0000131.0000230.00004892.000050.00001111.0000250.0000612.000060.000017.00000.00000.000030.0000236.000020.0000153.000090.000077.000030.000054.00000.00000.0000650.000014159.000083977.0000620.00003247.000030.000065.0000630.0000795.0000650.00004418.0000580.00004228.0000630.00003942.0000910.000088301.0000910.000015018.00000.00000.0000380.0000579.000040.00007.000080.000042.000090.0000137.00000.00000.0000230.0000314.000040.000025.000090.0000274.0000910.000016056.00000.00000.00000.00000.00000.00000.000090.000087.0000910.000014451.0000910.000014889.00000.00000.00000.00000.0000300.00001286.0000600.00002308.0000
01AL35023680.00000.000070.00000.000060.0000200.000050.000025114.000080.000025543.000080.000013883.000060.0000399.000030.0000140.000030.000064.000040.0000108.00000.00000.000030.0000737.00000.00000.000020.00001678.00000.00000.00000.00000.00000.000030.00006332.000030.0000429.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000070.00002552.000021532.000070.0000799.00000.00000.000060.0000125.000070.0000957.000060.0000433.000060.00001032.000080.000021829.000080.00005719.000040.000085.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000080.00004305.00000.00000.00000.00000.00000.00000.00000.00000.000080.00005685.000080.00005866.000020.000018.000040.000029.000040.00001964.000030.0000317.0000
01AL3503111380.0000670.0000400.0000260.0000920.00002620.00001000.000017719.00001380.000018019.00001050.000013134.0000180.0000214.000050.000057.000040.000023.00000.00000.0000290.00002312.000040.000054.000060.0000347.0000180.00001566.000070.000090.0000328.000040.000091.00000.00000.0000320.0000300.00000.00000.00000.00000.00000.00000.00000.00000.000030.000019.00000.00000.00000.00000.000070.0000987.00001122.000030.000024.000040.000021.000040.000027.000070.000081.000050.0000298.000050.0000131.0000470.00002552.0000460.0000268.00000.00000.0000120.000031.00000.00000.00000.00000.000020.00008.000050.00007.000050.000015.00000.00000.0000270.0000365.00001280.00003394.0000610.00001683.0000540.00001408.0000420.0000555.000050.000039.0000390.0000237.0000650.0000607.00000.00000.00000.00000.0000100.000087.00001210.00002880.0000
01AL350312830.0000230.0000430.0000150.0000600.00002120.0000860.000029673.0000830.000029919.0000740.000025312.0000150.0000157.000050.0000119.000040.000086.000070.000039.0000110.0000968.000050.000024.000050.0000555.0000140.00002121.000070.000040.000096.0000140.0000767.000050.0000284.0000150.0000246.000030.00006.00000.00000.000050.0000220.00000.00000.000030.000031.00000.00000.00000.00000.0000120.00001722.00004456.000080.0000157.000050.000062.000090.000048.0000120.0000260.000070.0000408.000090.0000264.0000780.000012762.0000770.00001500.00000.00000.0000410.0000309.00000.00000.00000.00000.000050.000044.0000150.000033.0000270.0000215.00000.00000.0000100.0000216.0000820.00003787.0000260.0000560.0000220.0000460.0000240.0000469.000040.000025.0000570.00001191.0000620.00001439.00000.00000.00000.00000.000090.0000138.0000730.00002469.0000
01AL350313390.000060.0000310.000030.0000290.00001070.0000380.000023569.0000390.000023769.0000340.000018765.0000120.0000211.000040.0000117.000040.000084.000080.000051.000070.0000486.000040.000050.000040.0000381.0000110.00002331.000060.000040.0000124.000080.00001230.00000.00000.000090.0000200.00000.00000.00000.00000.00000.00000.00000.00000.000030.000021.00000.00000.00000.00000.0000110.00001953.00006737.000090.0000269.00000.00000.000090.000050.0000110.0000362.000080.0000450.000080.0000330.0000380.000014304.0000380.00001871.00000.00000.0000190.0000291.00000.00000.000040.000021.000020.000026.000030.00005.0000150.0000238.000060.000017.000050.0000112.0000380.00002452.00000.00000.00000.00000.000030.000047.000030.000029.0000360.00001580.0000370.00001703.00000.00000.00000.00000.000080.0000158.0000290.0000884.0000
01AL350314230.000020.0000210.00000.0000160.0000660.0000220.000019716.0000230.000019829.0000210.000016527.000090.0000118.000040.000099.000030.000054.000090.000067.000040.0000110.000030.000067.000040.0000509.000070.00001746.000040.00000.00000.000060.00001219.00000.00000.000070.0000113.000030.00009.00000.00000.00000.00000.00000.00000.000030.000031.00000.00000.00000.00000.0000100.00001863.00008111.000090.0000314.00000.00000.000090.000056.0000100.0000403.000080.0000539.000080.0000447.0000230.000013636.0000230.00001881.00000.00000.0000120.0000221.00000.00000.000030.000012.000020.000031.00000.00000.0000100.0000168.00000.00000.000040.000045.0000230.00002298.00000.00000.00000.00000.00000.00000.00000.00000.0000230.00001660.0000230.00001717.00000.00000.00000.00000.000050.000095.0000180.0000651.0000
01AL350315140.00000.0000130.00000.0000110.0000400.0000140.000020290.0000140.000020616.0000130.000014702.000070.000039.000030.000044.000030.000023.000080.000080.000030.0000431.000020.000016.00000.00000.000040.00001814.000030.00000.00000.00000.00000.000020.0000710.000060.0000326.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000090.00002174.000014631.000090.0000560.00000.00000.000090.000097.000090.0000689.000080.0000601.000080.0000567.0000140.000016021.0000140.00003049.00000.00000.000060.000080.00000.00000.00000.00000.000020.000031.00000.00000.000030.000043.00000.00000.000020.0000103.0000140.00002976.00000.00000.00000.00000.00000.00000.000020.000020.0000140.00002967.0000140.00003110.00000.00000.00000.00000.000060.0000526.000080.0000320.0000
01AL3503160.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.0000
01AL350331510.0000260.0000160.000080.0000340.0000830.0000230.00006449.0000510.00006616.0000370.00004435.000090.000055.000040.000047.000040.000027.00000.00000.000090.0000742.000030.0000-11.000030.0000210.000080.0000830.000040.000030.000091.000030.000077.00000.00000.0000110.0000167.00000.00000.00000.00000.000030.0000180.00000.00000.00000.00000.00000.00000.00000.00000.000030.0000346.0000415.00000.00000.000020.000017.00000.00000.000030.000036.00000.00000.00000.00000.0000190.00001121.0000190.0000118.00000.00000.000050.000014.00000.00000.00000.00000.000030.000020.000020.00003.00000.00000.00000.00000.000090.0000129.0000460.00001107.0000200.0000501.0000170.0000419.0000110.0000130.00000.00000.0000160.0000103.0000250.0000233.00000.00000.00000.00000.000050.000041.0000430.0000908.0000
01AL350332340.0000120.0000180.000050.0000230.0000770.0000250.000012275.0000340.000012423.0000300.00009899.000080.000056.000020.000028.000040.000047.000040.000017.000050.0000286.000020.000054.000040.0000398.000070.00001271.00000.000020.000058.000060.0000318.000030.000048.000070.0000148.000030.00006.00000.00000.00000.00000.00000.00000.000040.000024.00000.00000.00000.00000.000040.0000573.00001517.000050.000065.00000.00000.000040.000023.000040.000081.000040.0000207.000050.0000116.0000330.00005763.0000320.0000683.00000.00000.0000140.0000117.00000.00000.00000.00000.00000.00000.000070.000012.0000100.000088.00000.00000.000060.0000140.0000340.00001533.0000110.0000237.000090.0000201.000090.0000126.000040.000032.0000260.0000566.0000270.0000661.00000.00000.00000.00000.000040.000064.0000300.0000931.0000
01AL350333210.000050.0000160.00000.0000160.0000550.0000180.000013133.0000210.000013193.0000190.000010650.000080.000032.000040.000046.00000.00000.000050.000032.000050.0000442.000030.00004.00000.00000.000050.00001189.000020.000020.000081.000040.0000692.00000.00000.000040.000060.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000070.00001156.00004134.000060.0000148.000020.000027.000050.000027.000070.0000197.000050.0000378.000050.0000193.0000210.00008153.0000210.00001090.00000.00000.0000110.0000158.00000.00000.000040.000021.000020.000020.00000.00000.000080.0000129.000030.00008.00000.00000.0000210.00001421.00000.00000.00000.00000.00000.00000.00000.00000.0000200.0000932.0000200.00001005.00000.00000.00000.00000.000040.000092.0000170.0000506.0000
01AL350334140.00000.0000130.00000.0000100.0000390.0000120.000011810.0000140.000011856.0000130.00009796.000060.000020.00000.00000.000030.000071.000040.000026.00000.00000.00000.00000.000030.0000787.000040.00001044.000040.00000.00000.000030.0000585.00000.00000.000030.000046.00000.00000.00000.00000.00000.00000.00000.00000.000020.000020.00000.00000.00000.00000.000050.0000961.00004654.000050.0000146.00000.00000.000050.000031.000050.0000208.000040.0000328.000050.0000199.0000140.00008311.0000140.00001162.00000.00000.000060.0000125.00000.00000.00000.00000.000030.000044.00000.00000.000060.000089.00000.00000.000030.000037.0000140.00001388.00000.00000.00000.00000.00000.00000.000030.000027.0000140.00001037.0000140.00001085.00000.00000.00000.00000.000030.000087.0000110.0000387.0000
01AL350335140.00000.0000130.00000.0000100.0000400.0000130.000023035.0000140.000023349.0000130.000015960.000060.000045.000020.000077.00000.00000.000070.000063.000030.0000-36.000030.0000359.00000.00000.000040.00001285.00000.00000.00000.000030.0000616.000020.00003448.000050.0000314.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.0000100.00002682.000018150.000090.0000694.00000.00000.0000100.0000114.0000100.00001005.0000100.0000963.000090.0000546.0000140.000018418.0000140.00003838.00000.00000.000060.000074.00000.00000.00000.00000.00000.00000.00000.00000.000030.000036.00000.00000.00000.00000.0000140.00003987.00000.00000.00000.00000.00000.00000.00000.00000.0000140.00003759.0000140.00003858.00000.00000.00000.00000.000050.0000406.000090.0000363.0000
01AL3503360.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.0000
01AL350341730.0000300.000090.0000340.0000380.00001410.0000640.00009726.0000730.00009803.0000620.00008244.000060.000067.000030.000028.00000.00000.00000.00000.0000100.0000477.00000.00000.000040.0000209.000070.0000633.00000.000050.0000191.00000.00000.00000.00000.000090.000078.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000030.0000369.0000469.00000.00000.00000.00000.00000.00000.000020.000030.00000.00000.000020.000056.0000260.00001169.0000250.0000121.00000.00000.000080.000024.00000.00000.00000.00000.00000.00000.00000.00000.000040.000011.00000.00000.000070.000091.0000680.00002412.0000450.00001467.0000430.00001383.0000290.0000347.000060.000058.0000190.000096.0000260.0000196.00000.00000.00000.00000.000030.000019.0000670.00002232.0000
01AL350342410.0000130.0000110.0000150.0000210.0000900.0000390.000014394.0000410.000014473.0000360.000012331.000070.000044.00000.00000.000040.000027.000060.000029.000050.0000146.000040.0000105.00000.00000.000070.00001109.00000.000030.0000108.000070.0000319.000020.00001234.000050.000079.000030.00007.00000.00000.00000.00000.00000.00000.000030.000026.00000.00000.00000.00000.000080.00001245.00003102.000090.0000112.00000.00000.000070.000025.000080.0000147.000070.0000271.000070.0000269.0000390.00006714.0000390.0000795.00000.00000.0000200.0000174.00000.00000.000030.000013.000050.000045.000090.000016.0000130.0000108.000030.00006.000030.000054.0000400.00001742.0000150.0000305.0000130.0000261.0000100.0000139.000050.000048.0000290.0000621.0000310.0000680.00000.00000.00000.00000.000040.000069.0000360.00001131.0000
01AL350343150.000050.000080.000050.000090.0000370.0000140.00009437.0000150.00009543.0000130.00006847.000040.000029.000020.000017.00000.00000.000040.000025.000030.0000231.00000.00000.000030.0000329.000040.0000983.000040.00000.00000.000040.0000500.00000.00000.000040.0000106.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000060.00001013.00003587.000040.0000112.000040.000050.000040.000020.000060.0000169.000040.0000211.000050.0000304.0000150.00005974.0000150.0000815.00000.00000.000070.000094.00000.00000.000030.000011.000020.000029.00000.00000.000050.000067.00000.00000.000040.0000108.0000150.00001115.00000.00000.00000.00000.00000.00000.00000.00000.0000150.0000721.0000150.0000809.00000.00000.00000.00000.000050.0000102.0000110.0000363.0000
01AL35034480.00000.000060.00000.000060.0000210.000070.00007013.000080.00007046.000070.00004809.000040.000040.00000.00000.00000.00000.000020.000015.000030.0000238.000030.0000447.00000.00000.000030.0000742.00000.00000.00000.000050.0000870.00000.00000.000020.000034.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000030.0000546.00002924.000020.000078.00000.00000.000030.000014.000030.0000113.000030.0000145.000030.0000154.000080.00005038.000080.0000737.00000.00000.000040.000053.00000.00000.00000.00000.00000.00000.00000.00000.000040.000061.00000.00000.00000.00000.000080.0000866.00000.00000.00000.00000.00000.00000.00000.00000.000080.0000684.000080.0000691.00000.00000.00000.00000.00000.00000.000060.0000244.0000
01AL35034570.00000.000060.00000.000050.0000190.000060.000011088.000070.000011165.000060.00006286.000050.000096.000020.0000134.000020.000069.000030.000025.00000.00000.00000.00000.00000.00000.000020.0000892.00000.00000.00000.00000.00000.00000.00000.000020.000078.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000050.00001179.00008389.000050.0000270.00000.00000.000050.000043.000050.0000332.000030.0000203.000050.0000428.000070.00008937.000070.00001742.00000.00000.000030.000039.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000070.00001480.00000.00000.00000.00000.00000.00000.00000.00000.000070.00001703.000070.00001789.00000.00000.00000.00000.000030.0000533.000040.0000184.0000
01AL3503460.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.0000
01AL350351240.0000130.000050.000060.0000140.0000430.0000160.00002919.0000240.00002966.0000180.00002156.000050.000012.00000.00000.000020.00008.00000.00000.000050.0000345.000020.00005.000020.0000106.000030.0000262.00000.000020.000057.00000.00000.00000.00000.000050.000047.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000020.000029.00000.00000.000020.000011.00000.00000.000020.0000100.00000.00000.000080.0000367.000080.000038.00000.00000.000030.00008.00000.00000.00000.00000.00000.00000.000020.00005.00000.00000.00000.00000.000050.000074.0000210.0000592.0000110.0000329.0000100.0000298.000070.000084.000030.000026.000060.000030.0000100.000082.00000.00000.00000.00000.000040.000034.0000200.0000529.0000
01AL350352130.000050.000060.000030.000090.0000290.0000100.00004876.0000130.00004932.0000110.00004020.00000.00000.000030.000016.00000.00000.00000.00000.000020.000085.00000.00000.00000.00000.000020.0000412.000030.00000.00000.000040.0000361.00000.00000.000020.000029.00000.00000.00000.00000.00000.00000.00000.00000.000020.000019.00000.00000.00000.00000.000040.0000682.00001287.00000.00000.00000.00000.00000.00000.000040.000063.00000.00000.000040.0000138.0000130.00002387.0000130.0000287.00000.00000.000060.000055.00000.00000.00000.00000.000030.000030.00000.00000.000040.000034.00000.00000.00000.00000.0000130.0000567.000040.000079.000030.000071.000030.000042.00000.00000.000090.0000232.0000100.0000259.00000.00000.00000.00000.00000.00000.0000110.0000330.0000
01AL35035380.000030.000050.00000.000050.0000200.000070.00005034.000080.00005070.000070.00004138.000030.000018.00000.00000.00000.00000.000040.000025.000020.000080.00000.00000.000020.0000444.000020.0000395.00000.00000.00000.00000.00000.00000.00000.000030.000045.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000030.0000566.00001587.000040.0000108.00000.00000.000030.000029.000030.000094.000030.0000186.000040.0000240.000080.00003106.000080.0000418.00000.00000.000050.000075.00000.00000.00000.00000.00000.00000.00000.00000.000020.000032.00000.00000.000020.000016.000080.0000558.00000.00000.00000.00000.00000.00000.00000.00000.000080.0000371.000080.0000397.00000.00000.00000.00000.000020.000027.000070.0000194.0000
01AL35035440.00000.000030.00000.000040.0000100.000030.00003553.000040.00003593.000040.00002613.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000030.00001115.00000.00000.00000.000030.0000589.000030.00005406.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000020.0000386.00001750.00000.00000.00000.00000.00000.00000.000020.000070.00000.00000.00000.00000.000040.00002551.000040.0000384.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000020.000043.00000.00000.00000.00000.000040.0000458.00000.00000.00000.00000.00000.00000.00000.00000.000040.0000357.000040.0000379.00000.00000.00000.00000.00000.00000.000030.000088.0000
01AL35035560.00000.000060.00000.000050.0000180.000060.000014512.000060.000014981.000060.00006922.000030.000058.000030.000074.000030.000036.000030.000050.00000.00000.000020.000087.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000030.0000469.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000040.00001539.000012305.000040.0000389.00000.00000.000040.000047.000040.0000454.000040.0000337.000040.0000586.000060.000012296.000060.00003173.00000.00000.000020.000032.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000060.00001283.00000.00000.00000.00000.00000.00000.00000.00000.000060.00003140.000060.00003181.00000.00000.00000.00000.000030.00001515.000030.0000123.0000
01AL3503560.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.0000
01AL3504012320.00001380.0000350.0000550.00001130.00003710.00001330.000030027.00002320.000030584.00001880.000023705.0000230.0000193.0000110.0000187.000090.0000140.000080.000035.0000430.00002415.000080.000031.0000120.0000747.0000290.00002496.00000.0000110.0000465.0000100.0000178.000030.0000245.0000480.0000557.00000.00000.00000.00000.000040.0000124.00000.00000.000090.000083.00000.00000.00000.00000.0000220.00002907.00003579.0000100.000080.0000100.000067.0000120.0000119.0000210.0000323.0000130.0000785.0000160.0000365.0000970.00005690.0000950.0000606.00000.00000.0000280.0000103.00000.00000.000030.000010.000090.000054.000090.000015.000080.000024.00000.00000.0000340.0000460.00002140.00005464.0000950.00002620.0000860.00002319.0000630.0000777.0000170.0000152.0000760.0000502.00001090.0000983.00000.00000.00000.00000.0000190.0000151.00002020.00004665.0000
01AL3504022050.0000850.0000580.0000520.0000980.00004140.00001520.000076171.00002050.000077085.00001880.000067449.0000310.0000155.0000130.0000219.0000120.0000146.0000450.0000201.0000240.00001177.000090.0000130.0000120.00001305.0000300.00004211.00000.000070.0000293.0000240.00001542.000050.0000353.0000540.0000914.0000110.000026.00000.00000.000030.0000110.000040.0000111.0000290.0000307.000060.0000145.00000.00000.0000730.00009328.000028459.0000620.00001136.000080.000086.0000570.0000439.0000720.00001825.0000590.00003393.0000590.00001604.00002000.000039017.00001990.00004798.00000.00000.0000990.0000985.00000.00000.0000190.0000112.0000240.0000254.0000270.000042.0000600.0000548.000060.000022.0000150.0000322.00002010.00008768.0000550.0000981.0000470.0000848.0000440.0000596.0000180.0000166.00001540.00003813.00001640.00004199.00000.00000.00000.00000.0000250.0000363.00001780.00004913.0000
01AL3504031300.0000360.0000730.0000170.0000630.00003080.00001050.000079626.00001300.000080393.00001240.000071027.0000280.0000300.0000130.0000185.0000110.0000111.0000480.0000252.0000170.00001276.0000110.0000223.000080.00001254.0000210.00002973.000040.000050.0000230.0000150.00002112.000040.0000448.0000450.0000767.000060.000013.00000.00000.000030.0000141.000060.0000207.0000260.0000233.00000.00000.00000.00000.0000650.000010184.000039965.0000590.00001515.000060.000081.0000570.0000449.0000650.00002197.0000570.00003750.0000540.00001811.00001300.000050271.00001290.00006949.00000.00000.0000660.00001052.000060.00002.0000150.000077.0000140.0000191.000080.000010.0000500.0000738.000050.000017.0000120.0000237.00001280.00008625.00000.00000.00000.00000.000070.000079.000090.000088.00001230.00005897.00001240.00006204.00000.00000.00000.00000.0000240.0000540.00001050.00002931.0000
01AL350404740.000080.0000600.000050.0000370.00002090.0000740.000064333.0000740.000064823.0000710.000056264.0000210.0000273.000080.0000136.000070.000054.0000330.0000216.0000110.00001102.000070.0000133.000070.00001070.0000150.00003127.00000.000040.0000161.0000100.00001789.000030.0000487.0000280.0000490.000050.000012.00000.00000.00000.00000.00000.00000.0000150.0000160.000020.000046.00000.00000.0000430.00007949.000037744.0000410.00001422.000020.000038.0000400.0000362.0000430.00001964.0000400.00002786.0000380.00001664.0000740.000044570.0000740.00006403.00000.00000.0000410.0000804.00000.00000.0000140.000084.000090.0000106.00000.00000.0000360.0000577.000030.000015.000080.0000194.0000740.00007307.00000.00000.00000.00000.00000.00000.000060.000054.0000740.00005599.0000740.00005863.00000.00000.00000.00000.0000170.0000482.0000570.00001905.0000

Showing the first 894 rows.

A roughly equivalent operation would be to do a SELECT * on our recently created temp table above just like above. You'll see that this automatically gets limited to the first 1000 rows in order to avoid overflowing the browser.

%sql SELECT * FROM taxes2013
01AL000001870380.0000488030.0000122290.0000247000.0000500770.00001452580.0000571240.000011255896.000870380.000011444868.000700700.00008889326.0000103290.000077952.000046870.000075071.000040890.000047416.000015650.00006538.0000146240.0000824487.000037970.000023583.000038400.0000221790.0000111060.00001066291.00008800.000049720.0000187559.000035370.000062791.00008980.000010323.0000155190.0000186574.00003300.0000747.0000140.0000487.00008950.000033584.00002540.00006212.000020760.000017533.00005900.000016956.000030.00002.000057090.0000794815.0000884758.000023440.000022991.000025940.000020686.000029140.000025144.000054970.000084317.000027140.0000151005.000042500.0000111909.0000338560.00001874627.0000333040.0000196535.00000.00000.0000108740.000037220.00002400.000056.00008850.00002899.000033010.000016969.000032080.00005457.000033530.000010160.00002650.0000677.0000117420.0000152943.0000807980.00002277816.0000399710.00001174659.0000371280.00001057938.0000258200.0000327115.000080350.000076412.0000255750.0000159189.0000371450.0000318777.00000.00000.00000.00000.000059580.000044367.0000767170.00002005593.0000
01AL000002490960.0000195840.0000155230.0000125280.0000286130.00001027850.0000383240.000017632481.000490960.000017810952.000427730.000014501798.00097400.000081216.000042440.000092536.000037100.000061479.000058830.000029891.000061400.0000252768.000032710.000054639.000034860.0000320115.0000101580.00001764445.00008890.000023590.000084183.000087130.0000542763.000010690.000049672.000095190.0000177106.000012310.00002968.0000240.0000975.00006870.000031725.00006350.000020932.000036070.000036540.00002360.00005915.000060.000035.0000115520.00001717953.00004390768.000083910.0000140609.000025240.000032077.000077400.000061241.0000113360.0000262971.000072830.0000405101.000094310.0000341396.0000470370.00008602452.0000468160.00001038975.00000.00000.0000217760.0000194669.00006030.0000262.000028850.000016248.000046050.000047721.000065150.000012104.0000124900.0000110801.000012820.00004944.000037210.000077948.0000480870.00002041535.0000132780.0000259313.0000112050.0000223466.0000104610.0000156274.000037270.000034254.0000367070.0000844185.0000386570.0000935430.00000.00000.00000.00000.000065850.000094281.0000418070.00001192755.0000
01AL000003258810.000072710.0000146880.000032860.0000157670.0000594910.0000189340.000015916085.000258810.000016070153.000223860.000012289284.00086850.000080627.000040800.0000118256.000036250.000081316.000068480.000042607.000039840.0000259836.000032420.000084137.000027970.0000348231.000072490.00001727323.00007940.000011640.000045125.000059580.0000849865.000010940.000094229.000068820.0000151722.00009550.00002369.0000190.00001100.00004800.000024606.00005070.000020023.000026750.000026173.00002290.00005165.0000110.0000171.0000105460.00001797725.00006537061.000085350.0000216962.000016720.000025271.000085670.000078046.0000104930.0000347945.000079910.0000498801.000090350.0000396144.0000257690.000010164831.000257080.00001401115.0000100.000058.0000115430.0000170908.00007860.0000542.000018540.00009741.000025080.000031702.000013300.00002074.000077900.0000118242.000010740.00004167.000026610.000065373.0000255340.00001749879.0000310.000025.0000520.000047.000010470.000013259.000018980.000017402.0000245810.00001229923.0000249040.00001310745.00000.00000.00000.00000.000058810.0000125566.0000194360.0000552938.0000
01AL000004163290.000024860.0000126480.00009790.000098920.0000424160.0000134370.000014161207.000163290.000014288572.000143290.000010773848.00072130.000071086.000036370.0000120329.000032710.000084330.000062060.000044250.000027380.0000214668.000028960.0000105947.000021820.0000357541.000052290.00001537085.00006240.00006550.000025907.000039400.0000752960.000010280.0000117239.000048480.0000123525.00009130.00002478.0000270.00002241.00003310.000018757.00003780.000017325.000017920.000020191.0000830.00001736.0000170.0000303.000086180.00001662813.00007527384.000073820.0000256947.000010260.000018251.000077040.000080626.000086010.0000382943.000071440.0000505429.000077170.0000399008.0000163020.00009939247.0000162740.00001438828.0000290.0000307.000077550.0000131562.00007760.0000804.000015740.00008662.000018370.000023848.00000.00000.000055010.000090930.00007420.00002594.000018720.000051158.0000161800.00001658126.00000.00000.00000.00000.0000720.0000836.000013430.000012398.0000161590.00001306838.0000162050.00001374682.00000.00000.00000.00000.000041950.0000113997.0000116830.0000385953.0000
01AL000005192050.000016930.0000168170.00005450.0000115290.0000538120.0000177800.000025777351.000192050.000026053920.000172590.000019141939.000110480.0000149150.000066710.0000312926.000061630.0000231997.0000106370.0000103407.000036380.0000567439.000056050.0000404166.000029250.0000738685.000065310.00002456580.00008240.00005360.000022840.000041900.0000921766.000023860.0000666191.000067940.0000263329.000012390.00003262.00001230.000017607.00007140.000050624.00005400.000029276.000019320.000019218.00004750.000010113.0000710.00002710.0000141460.00003323093.000019436460.000128960.0000697624.000010410.000023707.0000132970.0000193679.0000141390.0000969162.0000121320.00001019585.0000131150.0000869141.0000191870.000019721991.000191690.00003440302.00002270.00004948.000089410.0000123786.000017830.00004900.000019680.000010767.000021860.000030646.00000.00000.000044870.000061114.00009410.00002972.000027160.0000110673.0000190480.00003584131.00000.00000.00000.00000.000080.0000100.000020040.000019089.0000191280.00003312046.0000191470.00003460632.0000650.0000146.0000240.000063.000073380.0000358812.0000110760.0000441951.0000
01AL00000646890.00003530.000042190.0000860.000036250.0000137410.000048270.000020346741.00046890.000020752068.00041230.000010178838.00037970.0000271416.000029970.0000663873.000028610.0000523865.000024150.000085076.000012670.0000822565.000028660.00001569967.00007930.0000366219.000013000.0000714100.00002320.0000530.00002434.00009680.0000245327.000021220.00004533514.000020970.0000392075.00001000.0000251.00002730.000085219.00007980.000082472.00001090.000010402.00000.00000.00000.00000.00001600.000054845.000044170.00002375957.000019397505.00042340.0000767152.00001390.00004611.000042210.0000158794.000044160.0000956260.000034080.0000452100.000042110.0000831896.000046860.000017547726.00046850.00004781679.000014810.000073078.000019880.000088589.000013400.000049046.00002920.00001601.00000.00000.00000.00000.00000.00000.00001470.0000486.000013920.0000120102.000046350.00004697703.00000.00000.00000.00000.00000.00000.00000.00000.000046820.00004674681.000046840.00004918876.000017990.000031038.000022940.000072351.000025160.0000707320.000014840.0000252825.0000
01AL3500411530.0000950.0000260.0000300.0000800.00002250.0000710.000019524.00001530.000019851.00001180.000014383.0000230.0000183.000090.0000128.000080.000082.000040.000012.0000220.00001657.000060.00004.0000110.0000806.0000240.00002129.00000.000050.0000238.0000100.0000170.000020.000038.0000260.0000327.00000.00000.00000.00000.000030.000085.00000.00000.000040.000031.000030.000062.00000.00000.0000140.00001848.00002063.000050.000049.000080.000058.000080.000043.0000140.0000167.000080.0000503.0000100.0000194.0000670.00003894.0000660.0000411.00000.00000.0000190.000058.00000.00000.00000.00000.000050.000027.000060.000010.000050.000014.00000.00000.0000200.0000292.00001390.00003275.0000560.00001479.0000510.00001287.0000350.0000409.0000100.000087.0000530.0000353.0000720.0000662.00000.00000.00000.00000.0000120.0000119.00001310.00002734.0000
01AL3500421330.0000590.0000410.0000270.0000680.00002600.0000860.000048895.00001330.000049338.00001190.000041998.0000240.0000172.0000100.0000155.000080.0000102.0000230.0000106.0000160.0000788.000070.000054.000090.0000839.0000230.00003602.00000.000060.0000226.0000200.00001331.000020.00006.0000280.0000442.000040.00009.00000.00000.000040.0000189.000030.000082.0000130.0000126.00000.00000.00000.00000.0000400.00005354.000015571.0000330.0000642.000060.000067.0000300.0000165.0000400.0000931.0000310.00001770.0000310.0000812.00001280.000025292.00001280.00003109.00000.00000.0000560.0000536.00000.00000.0000110.000058.0000120.0000132.0000170.000027.0000330.0000308.000050.000010.0000100.0000197.00001310.00005652.0000320.0000569.0000260.0000487.0000240.0000342.000080.000074.00001050.00002574.00001100.00002819.00000.00000.00000.00000.0000170.0000188.00001140.00002998.0000
01AL350043910.0000290.0000490.0000110.0000450.00002020.0000620.000055761.0000910.000056170.0000840.000047285.0000250.0000185.0000120.0000380.0000100.0000283.0000310.0000178.0000120.0000584.000080.0000139.000070.0000820.0000190.00003420.00000.000040.0000152.0000150.00002058.000030.0000492.0000260.0000409.000040.000010.00000.00000.00000.00000.00000.00000.0000140.0000138.00000.00000.00000.00000.0000430.00006464.000026501.0000390.00001022.000040.000060.0000370.0000231.0000430.00001396.0000360.00002265.0000350.00001137.0000910.000036244.0000900.00005051.00000.00000.0000410.0000629.000040.00002.000090.000047.000080.000098.000060.00008.0000300.0000448.000030.00009.000070.0000124.0000890.00006261.00000.00000.00000.00000.000040.000035.000060.000052.0000870.00004422.0000880.00004583.00000.00000.00000.00000.0000180.0000327.0000720.00001974.0000
01AL350044610.000090.0000490.000040.0000300.00001630.0000530.000052579.0000610.000052977.0000580.000046211.0000220.000089.0000110.0000119.000090.000070.0000290.0000181.000060.0000339.000070.0000173.000060.0000757.0000150.00002905.00000.000040.0000151.000090.00001765.000020.0000171.0000190.0000397.000040.000010.00000.00000.00000.00000.000030.0000114.0000120.0000132.000030.000055.00000.00000.0000370.00006600.000032150.0000340.00001242.000040.000086.0000340.0000233.0000370.00001607.0000330.00002280.0000320.00001365.0000610.000036815.0000610.00005344.00000.00000.0000310.0000566.00000.00000.0000110.000066.000070.000082.00000.00000.0000250.0000398.000030.00006.000040.000098.0000600.00006210.00000.00000.00000.00000.00000.00000.000050.000043.0000600.00004777.0000610.00004920.00000.00000.00000.00000.0000110.0000262.0000500.00001561.0000
01AL350045510.000040.0000460.00000.0000260.00001420.0000450.000063848.0000510.000064329.0000490.000054334.0000250.0000205.0000140.0000234.0000130.0000162.0000310.0000259.000080.00001720.0000110.0000709.000060.00001313.0000130.00003274.00000.00000.00000.000080.00001715.000050.00005331.0000200.0000913.000020.00006.00000.00000.00000.00000.00000.00000.0000110.0000106.00000.00000.00000.00000.0000400.00008461.000050811.0000380.00001976.00000.00000.0000380.0000323.0000400.00002447.0000370.00002727.0000380.00002165.0000510.000048545.0000510.00008186.00000.00000.0000260.0000374.000040.00001.0000100.000053.000050.000068.00000.00000.0000150.0000213.000030.000010.000060.0000248.0000500.00008581.00000.00000.00000.00000.00000.00000.000040.000039.0000510.00007817.0000510.00008090.00000.00000.00000.00000.0000180.0000654.0000340.00001355.0000
01AL35004640.00000.000040.00000.000040.0000110.000030.000014927.000040.000015359.000040.00007682.000030.0000130.00000.00000.00000.00000.000020.000055.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000040.00001498.000014514.000040.0000480.00000.00000.000040.000053.000040.0000550.000030.0000237.000040.0000592.000040.000013069.000040.00003407.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000040.00003452.00000.00000.00000.00000.00000.00000.00000.00000.000040.00003397.000040.00003561.00000.00000.00000.00000.000020.0000379.00000.00000.0000
01AL3500511390.0000800.0000190.0000380.0000810.00002290.0000860.000018686.00001390.000019011.00001110.000014624.0000140.0000135.000060.000051.000050.000022.000050.000025.0000250.0000840.000040.0000-1.000080.0000458.0000220.00002270.00000.000080.0000346.000080.0000136.00000.00000.0000230.0000325.00000.00000.00000.00000.000020.000070.00000.00000.000030.000028.00000.00000.00000.00000.0000130.00001801.00002170.000050.000049.000040.000038.000080.000055.0000130.0000185.000080.0000426.0000110.0000288.0000570.00003269.0000570.0000344.00000.00000.0000190.000067.00000.00000.00000.00000.000060.000031.000070.000011.000050.000017.00000.00000.0000170.0000228.00001330.00003720.0000640.00001893.0000600.00001694.0000390.0000483.0000120.0000110.0000440.0000276.0000620.0000513.00000.00000.00000.00000.000080.000054.00001270.00003259.0000
01AL3500521030.0000360.0000300.0000350.0000580.00002170.0000850.000036725.00001030.000036996.0000910.000031147.0000160.000087.000070.0000122.000060.000084.0000190.000093.0000110.0000-193.000040.000042.000090.0000690.0000210.00003543.00000.000030.0000139.0000190.00001136.00000.00000.0000170.0000271.000040.00009.00000.00000.00000.00000.000040.0000138.000080.000070.00000.00000.00000.00000.0000290.00004029.000011041.0000230.0000396.000040.000041.0000210.0000158.0000290.0000709.0000210.00001003.0000270.00001008.0000990.000017582.0000990.00002120.00000.00000.0000510.0000478.00000.00000.0000100.000055.0000120.0000133.0000160.000031.0000280.0000246.000060.000022.000040.000075.00001020.00004253.0000310.0000554.0000270.0000486.0000240.0000329.0000110.000096.0000760.00001641.0000790.00001745.00000.00000.00000.00000.0000120.0000129.0000900.00002627.0000
01AL350053470.0000140.0000230.0000100.0000290.00001040.0000340.000028531.0000470.000028664.0000440.000023743.0000110.000095.000050.0000118.000040.0000106.0000150.000092.000050.0000233.000020.000022.000040.0000543.0000110.00002237.00000.000030.000087.0000100.00001267.000050.0000918.0000100.0000132.000030.00007.00000.00000.00000.00000.00000.00000.000050.000039.00000.00000.00000.00000.0000250.00004129.000014931.0000210.0000542.000040.000076.0000210.0000151.0000250.0000848.0000200.00001121.0000220.00001073.0000470.000017954.0000470.00002472.00000.00000.0000190.0000286.00000.00000.000030.000019.000040.000060.000030.00003.0000130.0000185.000030.000019.000040.000071.0000470.00003081.00000.00000.00000.00000.00000.00000.000040.000035.0000450.00002186.0000460.00002283.00000.00000.00000.00000.0000110.0000210.0000360.00001002.0000
01AL350054230.000050.0000170.000030.0000140.0000600.0000200.000019493.0000230.000019583.0000220.000017170.000060.000038.000030.000036.000020.000014.0000100.000065.000030.0000-48.000020.000062.000020.0000404.000060.0000979.00000.00000.00000.000040.0000718.00000.00000.000040.000090.00000.00000.00000.00000.00000.00000.00000.00000.000020.000024.00000.00000.00000.00000.0000110.00002083.00009825.0000100.0000366.00000.00000.0000100.000078.0000110.0000524.0000100.0000502.0000110.0000636.0000230.000013715.0000230.00001988.00000.00000.0000110.0000181.00000.00000.000040.000018.000030.000043.00000.00000.000080.0000117.000020.000012.000020.000038.0000230.00002349.00000.00000.00000.00000.00000.00000.000030.000025.0000230.00001807.0000230.00001822.00000.00000.00000.00000.000040.000082.0000190.0000605.0000
01AL350055180.00000.0000160.00000.0000110.0000510.0000170.000024952.0000180.000025136.0000170.000018478.000080.000067.000040.000055.000030.000026.000090.000077.000020.000084.000020.000048.000030.0000700.000060.00001634.00000.00000.00000.000030.0000635.00000.00000.000060.0000184.00000.00000.00000.00000.00000.00000.00000.00000.000030.000031.00000.00000.00000.00000.0000130.00002921.000018587.0000100.0000568.00000.00000.0000120.0000134.0000130.0000844.0000110.0000671.0000120.0000869.0000180.000018240.0000180.00003224.00000.00000.000070.0000106.00000.00000.00000.00000.000030.000040.00000.00000.000040.000051.00000.00000.00000.00000.0000180.00003194.00000.00000.00000.00000.00000.00000.000020.000026.0000180.00003118.0000180.00003202.00000.00000.00000.00000.000070.0000337.0000110.0000410.0000
01AL3500560.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.0000
01AL350061440.0000250.0000110.000070.0000270.0000700.0000200.00005410.0000440.00005515.0000330.00003600.000060.000026.00000.00000.00000.00000.00000.00000.000070.0000543.00000.00000.000020.0000148.000090.0000920.00000.000030.0000155.000030.000052.00000.00000.000070.000097.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000030.000033.00000.00000.00000.00000.00000.00000.00000.00000.0000160.0000924.0000160.000097.00000.00000.000040.000012.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000060.000083.0000410.0000935.0000180.0000422.0000160.0000363.000090.0000107.00000.00000.0000140.000085.0000190.0000169.00000.00000.00000.00000.000030.000022.0000390.0000784.0000
01AL350062330.0000110.0000150.000070.0000230.0000710.0000230.000011857.0000330.000011906.0000270.00009029.000060.000032.000050.000051.000040.000019.000040.000013.000030.0000188.00000.00000.000040.0000448.0000100.00001638.00000.000020.0000125.000080.0000479.00000.00000.000040.000049.00000.00000.00000.00000.00000.00000.00000.00000.000030.000028.00000.00000.00000.00000.000070.0000909.00002115.000040.000058.00000.00000.000040.000025.000070.0000137.000040.0000154.000050.0000182.0000320.00005702.0000320.0000680.00000.00000.0000140.0000115.00000.00000.00000.00000.000030.000030.000070.000015.0000110.000089.00000.00000.000020.000035.0000330.00001400.000090.0000188.000070.0000153.000060.000083.000040.000030.0000260.0000564.0000280.0000612.00000.00000.00000.00000.000040.000042.0000290.0000829.0000
01AL350063190.000040.0000130.000030.0000130.0000480.0000160.000011806.0000190.000011854.0000180.00009733.000050.000017.00000.00000.00000.00000.000040.000022.000020.000049.000050.00006.00000.00000.000050.00001204.00000.000020.000089.000040.0000611.00000.00000.000040.000048.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000050.0000790.00003008.000040.0000106.00000.00000.000040.000026.000050.0000158.000040.0000174.000040.0000154.0000190.00007581.0000190.00001051.00000.00000.000090.0000130.00000.00000.000040.000017.00000.00000.00000.00000.000070.0000113.00000.00000.000030.000026.0000190.00001406.00000.00000.00000.00000.00000.00000.00000.00000.0000190.0000921.0000190.0000947.00000.00000.00000.00000.000050.000080.0000170.0000497.0000
01AL350064130.000020.0000110.00000.0000100.0000360.0000130.000010887.0000130.000010911.0000120.00009302.000040.00006.000030.000017.000030.000011.000040.000024.000040.0000-33.00000.00000.000030.0000800.000040.0000824.00000.00000.00000.000020.0000364.00000.00000.000020.000025.00000.00000.00000.00000.00000.00000.00000.00000.000020.000017.00000.00000.00000.00000.000040.0000776.00003656.000040.0000134.00000.00000.000040.000032.000040.0000188.000040.0000218.000040.0000130.0000130.00007725.0000130.00001109.00000.00000.000050.0000102.00000.00000.00000.00000.000030.000034.00000.00000.000040.000080.00000.00000.00000.00000.0000130.00001370.00000.00000.00000.00000.00000.00000.000030.000022.0000120.00001008.0000130.00001037.00000.00000.00000.00000.00000.00000.0000100.0000369.0000
01AL350065140.00000.0000130.00000.0000100.0000410.0000140.000018342.0000140.000018399.0000130.000014855.000060.000014.00000.00000.00000.00000.000080.000057.00000.00000.00000.00000.00000.00000.000040.00001462.00000.00000.00000.000030.0000561.00000.00000.000030.000029.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000090.00001624.000012085.000090.0000424.00000.00000.000080.000083.000090.0000560.000080.0000528.000090.0000423.0000140.000014409.0000140.00002444.00000.00000.000070.000098.00000.00000.00000.00000.00000.00000.00000.00000.000040.000073.00000.00000.00000.00000.0000140.00002598.00000.00000.00000.00000.00000.00000.00000.00000.0000140.00002346.0000140.00002406.00000.00000.00000.00000.000050.0000144.000090.0000327.0000
01AL3500660.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.0000
01AL3500714300.00002720.0000620.0000870.00001820.00006400.00002360.000051595.00004300.000052779.00003370.000040128.0000460.0000260.0000260.0000374.0000220.0000229.0000120.000057.0000810.00005331.0000200.000018.0000200.00001445.0000430.00003740.00000.0000140.0000705.0000170.0000295.000070.0000253.0000880.00001184.00000.00000.00000.00000.000080.0000274.00000.00000.0000150.0000130.000050.0000151.00000.00000.0000400.00005547.00005883.0000170.0000168.0000180.0000130.0000220.0000227.0000380.0000618.0000250.00001415.0000300.0000673.00001730.00009714.00001710.00001026.00000.00000.0000460.0000167.00000.00000.000040.000013.0000140.000080.0000140.000020.0000140.000051.00000.00000.0000660.0000910.00003890.00008540.00001390.00003694.00001240.00003185.00001030.00001303.0000270.0000257.00001400.0000858.00002010.00001809.00000.00000.00000.00000.0000450.0000334.00003590.00007113.0000
01AL3500722680.00001150.0000830.0000590.00001190.00005600.00002100.000097580.00002680.000098951.00002360.000080819.0000520.0000306.0000250.0000362.0000220.0000244.0000430.0000206.0000410.00003335.0000190.0000218.0000240.00002420.0000470.00007516.00000.000080.0000296.0000420.00002870.000080.0000143.0000670.00001371.000090.000021.00000.00000.000070.0000317.000060.0000173.0000290.0000306.000020.000052.00000.00000.0000820.000011699.000031484.0000630.00001037.0000160.0000201.0000610.0000533.0000810.00001925.0000620.00003650.0000650.00002136.00002540.000048205.00002530.00005901.00000.00000.00001150.00001082.000030.00001.0000150.000087.0000250.0000256.0000330.000058.0000690.0000652.000070.000026.0000280.0000718.00002610.000010926.0000610.00001214.0000500.00001015.0000570.0000881.0000190.0000177.00002000.00004820.00002150.00005615.00000.00000.00000.00000.0000380.0000673.00002260.00005955.0000
01AL3500731870.0000530.00001050.0000230.0000930.00004540.00001610.0000115627.00001870.0000116810.00001710.000095755.0000540.0000261.0000300.0000503.0000250.0000314.0000680.0000392.0000300.00002197.0000200.0000382.0000190.00002539.0000390.00007924.000030.000070.0000278.0000320.00004889.000080.00001584.0000580.00001183.000080.000017.00000.00000.000040.0000251.000050.0000147.0000260.0000252.000030.000090.00000.00000.0000940.000015209.000058356.0000810.00002029.0000120.0000179.0000820.0000731.0000940.00003162.0000790.00004971.0000810.00003087.00001870.000072990.00001860.000010096.00000.00000.0000950.00001528.000040.00003.0000200.0000109.0000210.0000256.000090.000015.0000700.00001085.000080.000025.0000210.0000503.00001850.000012167.00000.00000.00000.00000.0000120.0000152.0000150.0000133.00001760.00008568.00001790.00009172.00000.00000.00000.00000.0000420.0000823.00001430.00003773.0000
01AL3500741390.0000150.00001130.000090.0000680.00003920.00001390.0000121145.00001390.0000122214.00001310.0000101010.0000480.0000271.0000260.0000491.0000230.0000275.0000650.0000409.0000240.00002268.0000180.0000454.0000150.00003158.0000320.00007240.00000.000050.0000166.0000240.00004585.000090.00001409.0000500.00001070.000080.000019.00000.00000.000030.0000210.000040.0000149.0000230.0000239.00000.00000.00000.00000.0000840.000015531.000073436.0000760.00002700.000070.0000115.0000780.0000735.0000840.00003798.0000780.00005436.0000770.00003441.00001390.000083752.00001390.000012005.00000.00000.0000780.00001451.000050.00003.0000220.0000120.0000190.0000273.00000.00000.0000590.0000989.000080.000026.0000180.0000460.00001380.000013520.00000.00000.00000.00000.00000.00000.0000140.0000140.00001380.000010555.00001380.000011107.00000.00000.00000.00000.0000360.0000969.00001020.00003332.0000
01AL3500751550.0000110.00001400.000050.0000780.00004690.00001740.0000200673.00001550.0000202491.00001490.0000167948.0000730.0000681.0000430.00001070.0000390.0000796.00001010.0000919.0000280.00005080.0000300.0000850.0000190.00005339.0000390.000011083.00000.000030.0000108.0000230.00004957.0000140.00003740.0000540.00001818.0000120.000029.00000.00000.000060.0000495.000050.0000270.0000200.0000197.000040.000077.00000.00000.00001250.000026892.0000164242.00001190.00006258.000060.0000123.00001190.00001401.00001250.00008238.00001150.00008842.00001180.00006627.00001550.0000151809.00001550.000025913.00000.00000.0000780.00001181.000080.00005.0000220.0000123.0000220.0000311.00000.00000.0000460.0000668.000090.000028.0000190.0000745.00001540.000026969.00000.00000.00000.00000.00000.00000.0000200.0000197.00001540.000024733.00001540.000025748.00000.00000.00000.00000.0000580.00002322.0000940.00003348.0000
01AL350076200.00000.0000180.00000.0000130.0000600.0000220.000057088.0000200.000058105.0000190.000036511.0000140.0000169.0000100.0000366.000090.0000252.0000140.0000254.000050.00002606.000080.00002849.000030.00001365.000060.00003724.00000.00000.00000.000040.0000795.000050.00008562.000070.00001017.00000.00000.00000.00000.000020.0000239.00000.00000.00000.00000.00000.00000.00000.00000.0000190.00006583.000054010.0000180.00002011.00000.00000.0000180.0000354.0000190.00002475.0000160.00001689.0000180.00002140.0000200.000048408.0000200.000011553.000070.0000141.000060.000070.000020.00004.000020.000012.00000.00000.00000.00000.00000.00000.00000.00000.000040.0000268.0000200.000010386.00000.00000.00000.00000.00000.00000.00000.00000.0000200.000011446.0000200.000011981.000060.000039.000060.000033.0000110.00002371.000080.0000684.0000
01AL3501014090.00002040.0000560.00001450.00002090.00007440.00003280.000054617.00004090.000055178.00003470.000045463.0000410.0000394.0000180.0000359.0000160.0000211.000080.000029.0000480.00001962.0000150.000025.0000200.00001093.0000540.00004359.00000.0000300.0000960.0000160.0000260.000030.0000228.0000500.0000561.00000.00000.00000.00000.000040.0000120.00000.00000.000080.000072.000040.000093.00000.00000.0000220.00003201.00003442.000090.000077.0000110.0000104.0000110.000073.0000220.0000284.0000110.0000620.0000180.0000432.00001540.00008158.00001520.0000852.00000.00000.0000550.0000166.00000.00000.000080.000025.0000100.000045.0000180.000030.0000220.000062.00000.00000.0000370.0000430.00003870.000011610.00002000.00005911.00001890.00005575.00001440.00001882.0000290.0000296.00001110.0000685.00001490.00001139.00000.00000.00000.00000.0000200.0000119.00003710.000010596.0000
01AL3501022130.0000660.0000650.0000770.00001190.00005050.00002280.000074134.00002130.000074726.00001900.000061661.0000350.0000313.0000150.0000277.0000140.0000164.0000180.000094.0000220.00001202.0000130.0000178.0000140.00001223.0000440.00006505.000040.0000160.0000523.0000380.00002210.000030.000059.0000330.0000592.000050.000012.00000.00000.000030.0000140.000050.0000158.0000110.0000102.00000.00000.00000.00000.0000330.00004940.000012354.0000230.0000350.000090.000097.0000240.0000148.0000320.0000743.0000220.00001152.0000270.00001046.00001980.000033485.00001970.00003991.00000.00000.00001010.0000856.000030.00002.0000170.0000113.0000130.0000146.0000310.000061.0000640.0000503.000070.000022.0000150.0000287.00002100.00009102.0000620.00001208.0000520.00001037.0000610.00001160.0000120.0000111.00001440.00003135.00001530.00003502.00000.00000.00000.00000.0000260.0000343.00001850.00005894.0000
01AL350103900.0000210.0000560.0000120.0000540.00002130.0000680.000055571.0000900.000056040.0000780.000041035.0000280.0000359.0000130.0000462.0000120.0000288.0000220.0000122.0000130.00001335.0000110.0000339.0000130.00001742.0000260.00005765.000020.000050.0000241.0000270.00004089.000040.0000112.0000240.0000469.000030.00008.00000.00000.000020.0000104.000040.0000144.000090.000091.00000.00000.00000.00000.0000320.00005450.000019731.0000250.0000591.000060.000086.0000260.0000185.0000310.0000926.0000230.00001438.0000270.00001311.0000900.000035364.0000900.00004802.00000.00000.0000410.0000603.000030.00001.0000100.000060.000070.000080.000060.00008.0000280.0000425.000040.000010.0000100.0000260.0000890.00005866.00000.00000.00000.00000.000030.000025.000060.000047.0000870.00004199.0000880.00004527.00000.00000.00000.00000.0000230.0000520.0000650.00001803.0000
01AL350104530.000050.0000460.000030.0000330.00001420.0000450.000045396.0000530.000045809.0000440.000032427.0000230.0000288.0000130.0000649.0000120.0000435.0000160.0000124.0000100.00001371.0000110.0000795.0000110.00001559.0000190.00005128.000020.000030.0000149.0000150.00003041.000030.0000620.0000160.0000413.000040.000012.00000.00000.000020.0000102.00000.00000.000060.000049.00000.00000.00000.00000.0000250.00004923.000021633.0000200.0000656.000050.000065.0000230.0000214.0000250.0000990.0000200.00001507.0000230.00001355.0000520.000031724.0000520.00004407.00000.00000.0000260.0000464.000050.000017.000060.000041.000070.000091.00000.00000.0000170.0000289.000020.00008.000070.0000258.0000520.00005023.00000.00000.00000.00000.00000.00000.000050.000042.0000520.00003943.0000520.00004264.00000.00000.00000.00000.0000140.0000424.0000360.00001133.0000
01AL350105520.000040.0000480.00000.0000360.00001420.0000430.000067688.0000520.000068277.0000440.000045094.0000280.0000661.0000180.00001320.0000170.0000985.0000250.0000265.0000120.00001635.0000170.00001683.0000110.00002889.0000190.00007854.000030.000020.000073.0000160.00003836.000090.00001595.0000180.0000589.000040.000012.00000.00000.000020.0000138.000020.0000120.000040.000036.00000.00000.00000.00000.0000370.00008797.000048922.0000320.00001637.000060.0000134.0000350.0000491.0000370.00002324.0000300.00002670.0000350.00002310.0000520.000051432.0000520.00008593.00000.00000.0000240.0000313.000060.000012.000060.000044.000060.000090.00000.00000.0000110.0000152.000020.00007.000090.0000273.0000520.00008789.00000.00000.00000.00000.00000.00000.000060.000060.0000520.00008280.0000520.00008637.00000.00000.00000.00000.0000230.0000979.0000260.0000989.0000
01AL350106150.00000.0000140.00000.0000130.0000400.0000110.000081091.0000150.000082076.0000130.000031697.0000110.00002230.0000100.00004260.0000100.00003404.000080.0000242.000050.00004607.0000110.00006124.000040.00002706.000050.00003133.00000.00000.00000.000050.00001134.000070.000010805.000070.0000986.00000.00000.00000.00000.000030.0000336.00000.00000.00000.00000.00000.00000.00000.00000.0000150.00007983.000071472.0000130.00002043.00000.00000.0000140.0000653.0000150.00002794.0000120.00002057.0000140.00002243.0000150.000066351.0000150.000018510.000050.0000484.000070.0000162.000040.000028.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000050.0000333.0000150.000022616.00000.00000.00000.00000.00000.00000.00000.00000.0000150.000018791.0000150.000019574.000050.0000114.000070.0000566.000080.00002574.000040.0000854.0000
01AL350141680.0000310.000090.0000280.0000420.00001160.0000470.00009152.0000680.00009279.0000560.00007285.000090.000060.000030.000021.000040.000013.00000.00000.0000120.0000614.000020.0000-8.000030.0000176.000090.0000941.000030.000050.0000184.000020.000035.00000.00000.0000120.0000127.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000060.0000655.0000971.000030.000042.00000.00000.000030.000018.000060.000089.000030.0000162.000050.0000128.0000260.00001352.0000260.0000141.00000.00000.0000100.000031.00000.00000.00000.00000.000030.00009.000030.00006.000040.000013.00000.00000.000090.0000111.0000640.00001970.0000360.00001070.0000340.0000975.0000220.0000246.000090.0000107.0000180.0000110.0000270.0000225.00000.00000.00000.00000.000040.000025.0000620.00001770.0000
01AL350142480.0000140.0000120.0000210.0000280.00001000.0000400.000017141.0000480.000017279.0000440.000014834.000070.000038.000030.000044.00000.00000.0000100.000064.000040.000067.000030.000027.000030.0000300.000090.00001387.00000.000040.0000101.000080.0000446.00000.00000.000080.0000137.000030.00007.00000.00000.00000.00000.000040.0000132.000040.000029.00000.00000.00000.00000.0000150.00002440.00005574.0000130.0000191.000050.000050.0000100.000048.0000150.0000285.000080.0000433.0000130.0000463.0000470.00007871.0000470.0000940.00000.00000.0000240.0000228.00000.00000.000050.000028.000060.000072.000090.000018.0000150.0000133.00000.00000.000040.000079.0000480.00001962.0000160.0000291.0000140.0000256.0000110.0000130.000030.000033.0000350.0000712.0000370.0000785.00000.00000.00000.00000.000060.000076.0000420.00001247.0000
01AL350143200.000050.000090.000080.0000130.0000470.0000170.000012162.0000200.000012248.0000180.000010252.000060.000025.00000.00000.000030.000068.000070.000042.000030.000052.00000.00000.000030.0000578.000050.00001169.00000.000020.000068.000040.0000512.00000.00000.000040.000085.00000.00000.00000.00000.00000.00000.00000.00000.000030.000024.00000.00000.00000.00000.000090.00001746.00005271.000080.0000170.00000.00000.000060.000031.000090.0000235.000060.0000384.000080.0000393.0000200.00007402.0000200.00001011.00000.00000.0000100.0000130.00000.00000.000030.000013.00000.00000.00000.00000.000060.000085.000050.000015.00000.00000.0000200.00001373.00000.00000.00000.00000.00000.00000.000040.000036.0000190.0000880.0000190.0000926.00000.00000.00000.00000.000040.000087.0000160.0000531.0000
01AL350144140.000020.0000110.00000.0000100.0000340.0000100.000011998.0000140.000012077.0000120.00008965.000070.000067.000020.000059.00000.00000.000050.000033.000030.0000125.00000.00000.00000.00000.000050.00001484.000020.00000.00000.000040.0000719.000040.00001192.000030.000079.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000060.00001340.00005356.000060.0000193.00000.00000.000060.000033.000060.0000247.000060.0000392.000050.0000273.0000140.00008404.0000140.00001204.00000.00000.000060.000087.00000.00000.00000.00000.000020.000036.00000.00000.000060.000087.00000.00000.000020.000045.0000140.00001467.00000.00000.00000.00000.00000.00000.00000.00000.0000140.00001117.0000140.00001165.00000.00000.00000.00000.000030.000092.0000100.0000390.0000
01AL350145110.00000.0000100.00000.000090.0000300.000080.000016752.0000110.000017002.0000100.000011028.000080.000041.000040.0000145.000030.000078.000060.000063.00000.00000.000030.000083.000020.0000827.000040.00001387.00000.00000.00000.000030.0000716.00000.00000.000030.0000140.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000080.00001918.000012546.000070.0000435.00000.00000.000070.000091.000080.0000562.000060.0000490.000070.0000568.0000110.000013248.0000110.00002601.00000.00000.000030.000053.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.0000110.00002576.00000.00000.00000.00000.00000.00000.00000.00000.0000110.00002548.0000110.00002656.00000.00000.00000.00000.000050.0000303.000060.0000249.0000
01AL3501460.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.0000
01AL3501612920.00001690.0000650.0000530.00001770.00004510.00001380.000035345.00002920.000036162.00002190.000024808.0000450.0000338.0000150.0000171.0000130.000086.000060.000026.0000540.00004172.0000130.000070.0000190.00001174.0000440.00004568.000040.0000170.0000591.0000130.0000207.000030.0000119.0000570.0000817.00000.00000.00000.00000.000070.0000307.00000.00000.000060.000044.000030.000050.00000.00000.0000160.00002216.00002374.000050.000051.000090.000065.000090.000055.0000160.0000200.000070.0000379.0000110.0000283.00001060.00005941.00001040.0000623.00000.00000.0000280.000081.00000.00000.00000.00000.000060.000031.0000130.000021.000080.000023.00000.00000.0000480.0000681.00002670.00006335.00001210.00002967.00001070.00002488.0000660.0000794.0000160.0000126.0000880.0000541.00001350.00001264.00000.00000.00000.00000.0000250.0000195.00002500.00005221.0000
01AL3501621670.0000600.0000780.0000240.00001130.00003540.00001090.000060777.00001670.000061426.00001380.000045976.0000430.0000397.0000170.0000288.0000150.0000179.0000200.000093.0000230.00001703.0000130.0000262.0000170.00001385.0000430.00008828.000050.0000110.0000406.0000400.00002190.000050.0000317.0000330.0000649.000040.00009.00000.00000.000040.0000194.000050.0000155.000090.000077.00000.00000.00000.00000.0000320.00004640.000012116.0000220.0000351.000080.000086.0000250.0000144.0000310.0000646.0000230.00001268.0000250.0000718.00001590.000029472.00001580.00003537.00000.00000.0000690.0000564.000030.00001.0000100.000042.0000110.0000108.0000250.000047.0000390.0000352.000060.000016.0000170.0000358.00001640.00006934.0000440.0000854.0000350.0000711.0000320.0000456.0000100.000084.00001300.00002973.00001390.00003394.00000.00000.00000.00000.0000240.0000351.00001410.00003857.0000
01AL3501631040.0000210.0000720.000090.0000730.00002490.0000740.000064317.00001040.000064796.0000860.000046822.0000410.0000431.0000170.0000438.0000160.0000283.0000250.0000139.0000170.00001352.0000150.0000413.0000140.00001373.0000340.000010270.000060.000060.0000168.0000270.00003570.000050.0000285.0000260.0000479.000040.000010.00000.00000.000050.0000201.00000.00000.000090.000086.00000.00000.00000.00000.0000350.00005614.000022138.0000280.0000660.000070.000092.0000320.0000193.0000350.00001017.0000280.00001531.0000300.00001120.00001030.000041124.00001030.00005541.00000.00000.0000490.0000694.000030.00001.000090.000038.0000100.0000116.000080.000013.0000320.0000480.000070.000018.0000110.0000299.00001030.00007014.00000.00000.00000.00000.000050.000051.000080.000072.0000980.00004847.00001000.00005218.00000.00000.00000.00000.0000210.0000445.0000810.00002220.0000
01AL350164670.000070.0000570.000040.0000470.00001780.0000540.000057604.0000670.000058080.0000550.000042772.0000300.0000252.0000130.0000275.0000120.0000142.0000240.0000171.0000130.0000972.0000120.0000537.0000100.00001752.0000220.00008360.000050.000050.0000160.0000170.00003019.000040.0000605.0000200.0000476.000050.000012.00000.00000.00000.00000.000030.0000184.000070.000067.00000.00000.00000.00000.0000300.00005490.000025576.0000240.0000880.000050.000074.0000270.0000199.0000300.00001233.0000240.00001536.0000260.00001483.0000670.000040634.0000670.00005750.00000.00000.0000340.0000539.000030.00002.000070.000029.000090.0000117.00000.00000.0000230.0000370.000040.000010.000090.0000263.0000660.00006814.00000.00000.00000.00000.00000.00000.000080.000067.0000660.00005211.0000670.00005536.00000.00000.00000.00000.0000150.0000431.0000500.00001679.0000
01AL350165620.000040.0000560.00000.0000420.00001820.0000640.000080279.0000620.000080902.0000560.000062197.0000350.0000312.0000180.0000420.0000170.0000259.0000350.0000347.0000140.00002055.0000160.0000814.0000110.00002743.0000230.00009312.000060.00000.00000.0000130.00002717.000050.00001162.0000220.0000623.000080.000021.00000.00000.000030.0000205.00000.00000.000050.000037.000020.000043.00000.00000.0000430.00009572.000057288.0000390.00001968.000050.000092.0000420.0000452.0000430.00002621.0000380.00002915.0000410.00002809.0000620.000061294.0000620.000010445.00000.00000.0000310.0000403.000070.00003.000060.000029.0000100.0000138.00000.00000.0000160.0000211.000040.00008.0000110.0000633.0000620.000011284.00000.00000.00000.00000.00000.00000.000090.000084.0000620.000010042.0000620.000010513.00000.00000.00000.00000.0000210.0000846.0000400.00001545.0000
01AL350166110.00000.0000100.00000.000080.0000330.0000120.000031139.0000110.000031860.0000100.000019706.000090.0000315.000060.0000331.000060.0000187.000070.0000120.000030.00003092.000060.00001342.00000.00000.000030.00001824.000020.00000.00000.000030.0000563.000030.00003359.000040.0000721.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000090.00003485.000027726.000090.0000927.00000.00000.000090.0000228.000090.00001198.000070.0000851.000090.00001193.0000110.000026409.0000110.00006287.000040.000080.000030.000013.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.0000110.00006309.00000.00000.00000.00000.00000.00000.00000.00000.0000110.00006274.0000110.00006633.000050.000039.000040.000073.000050.0000914.000050.0000346.0000
01AL350191420.0000220.0000120.000070.0000300.0000750.0000260.00005195.0000420.00005334.0000310.00003547.000070.000068.000020.000020.000020.000014.000030.000012.0000100.0000802.000020.000035.00000.00000.000060.0000671.000020.000030.000082.00000.00000.00000.00000.0000100.0000139.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000030.0000453.0000434.000030.000033.000020.000015.000030.000016.000030.000025.000040.0000205.000040.000081.0000150.0000753.0000140.000076.00000.00000.000030.00009.00000.00000.00000.00000.000020.000014.00000.00000.00000.00000.00000.00000.000090.0000143.0000380.00001035.0000190.0000540.0000170.0000432.0000120.0000152.000020.000018.0000120.000067.0000200.0000217.00000.00000.00000.00000.000030.000031.0000360.0000847.0000
01AL350192260.000080.0000140.000050.0000180.0000610.0000220.00008858.0000260.00008933.0000230.00007647.000060.000030.000030.000043.000020.000037.00000.00000.000050.0000263.000030.00009.000050.0000299.000040.0000666.000040.000030.000095.000070.0000419.000030.0000293.000050.000075.000020.00005.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000030.0000395.0000938.00000.00000.00000.00000.00000.00000.000030.000042.00000.00000.00000.00000.0000250.00003818.0000250.0000439.00000.00000.0000120.000095.00000.00000.000020.000012.00000.00000.000070.000016.000080.000063.00000.00000.000030.000046.0000250.00001118.000090.0000180.000080.0000141.000070.0000114.00000.00000.0000180.0000343.0000200.0000393.00000.00000.00000.00000.000020.000029.0000230.0000745.0000
01AL350193130.000030.000090.00000.000090.0000330.0000110.00007851.0000130.00007919.0000120.00006524.000060.000010.000030.000045.000030.000043.000020.000017.00000.00000.00000.00000.00000.00000.000030.0000710.00000.00000.00000.00000.00000.00000.00000.000030.000068.00000.00000.00000.00000.00000.00000.00000.00000.000040.000029.00000.00000.00000.00000.000030.0000507.00001999.000030.000065.00000.00000.000030.000014.000030.000088.000020.0000164.000030.000072.0000130.00004982.0000130.0000667.00000.00000.000070.0000100.00000.00000.00000.00000.000030.000039.00000.00000.000050.000076.00000.00000.000030.000094.0000130.0000912.00000.00000.00000.00000.00000.00000.000030.000024.0000120.0000567.0000120.0000629.00000.00000.00000.00000.000040.000078.0000100.0000321.0000
01AL35019460.00000.000050.00000.000040.0000160.000060.00004958.000060.00005015.000060.00004222.00000.00000.00000.00000.00000.00000.000020.000015.000020.0000163.000020.000075.00000.00000.000040.0000965.000030.00000.00000.000020.0000378.00000.00000.000020.000057.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000030.0000607.00002490.000020.000080.00000.00000.000030.000014.000030.0000113.000030.0000201.000030.0000127.000060.00003357.000060.0000468.00000.00000.000050.000094.00000.00000.00000.00000.00000.00000.00000.00000.000030.000053.00000.00000.00000.00000.000060.0000566.00000.00000.00000.00000.00000.00000.00000.00000.000060.0000412.000060.0000431.00000.00000.00000.00000.00000.00000.000040.0000168.0000
01AL35019560.00000.000050.00000.000040.0000150.000040.00008047.000060.00008191.000050.00006275.000040.0000187.00000.00000.00000.00000.000030.000028.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000030.0000143.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000040.0000929.00005131.000030.0000176.00000.00000.000030.000039.000040.0000275.000030.0000261.000030.0000258.000060.00006242.000060.00001111.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000060.00001211.00000.00000.00000.00000.00000.00000.00000.00000.000060.00001073.000060.00001147.00000.00000.00000.00000.000020.0000106.000030.0000114.0000
01AL3501960.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.0000
01AL3502016310.00002800.0000380.00003060.00004180.000012820.00006470.000085377.00006310.000086277.00005500.000073707.0000240.000092.000080.000068.000060.000032.0000130.000058.00001000.00003848.000040.000049.0000130.0000720.0000600.00005537.00000.0000390.00001478.0000150.0000286.00000.00000.0000890.0000899.000030.00006.00000.00000.00000.00000.000020.000051.000080.000080.000030.000075.00000.00000.0000320.00003637.00005316.0000180.0000175.000090.000096.0000150.000094.0000310.0000463.0000150.0000636.0000280.0000871.00001950.00009821.00001940.00001030.00000.00000.0000840.0000289.00000.00000.000090.000031.0000210.0000110.0000240.000045.0000310.000090.000040.000011.0000720.0000916.00006110.000022757.00004170.000014214.00004040.000013364.00002770.00003526.0000810.0000821.00001260.0000741.00002020.00001697.00000.00000.00000.00000.0000260.0000143.00005940.000021271.0000
01AL3502022570.0000910.0000400.00001220.00001550.00005640.00002680.000089370.00002570.000089983.00002360.000078860.0000230.0000187.000080.0000151.000060.0000122.0000350.0000165.0000260.0000-459.000050.0000106.0000100.00001006.0000470.00007349.00000.000080.0000337.0000330.00001957.000050.0000362.0000350.0000613.000050.000012.00000.00000.000050.0000186.000040.0000117.0000140.0000157.00000.00000.00000.00000.0000690.00009866.000025639.0000570.0000935.000080.0000123.0000400.0000286.0000680.00001582.0000350.00001555.0000630.00002920.00002480.000041467.00002470.00004985.00000.00000.00001320.00001236.00000.00000.0000230.0000146.0000280.0000321.0000390.000062.0000760.0000653.0000110.000052.0000100.0000186.00002530.000010493.0000910.00001726.0000800.00001505.0000670.0000946.0000260.0000256.00001800.00003749.00001870.00003980.00000.00000.00000.00000.0000290.0000450.00002270.00006974.0000
01AL350203680.0000250.0000210.0000210.0000420.00001400.0000520.000040900.0000680.000041247.0000620.000032802.0000140.0000201.000050.0000119.000040.000091.0000210.0000122.0000100.0000547.000050.000069.000050.0000562.0000210.00004470.00000.000030.0000138.0000140.00001864.00000.00000.0000140.0000347.000020.00006.00000.00000.00000.00000.000030.000086.000050.000051.00000.00000.00000.00000.0000340.00005830.000020357.0000290.0000735.000060.000091.0000240.0000176.0000330.00001086.0000220.00001125.0000310.00001796.0000680.000026409.0000680.00003754.00000.00000.0000270.0000391.00000.00000.000040.000027.000070.0000104.000020.00003.0000160.0000230.000050.000023.000050.0000124.0000670.00004670.00000.00000.00000.00000.00000.00000.000060.000063.0000660.00003362.0000660.00003530.00000.00000.00000.00000.0000150.0000346.0000530.00001492.0000
01AL350204240.000050.0000140.000060.0000150.0000560.0000180.000020335.0000240.000020544.0000220.000016355.000070.000028.000030.000052.000020.000038.0000100.000094.000040.00004.00000.00000.000020.0000368.000090.00002225.00000.00000.00000.000050.00001002.000030.00001092.000050.0000209.000020.00005.00000.00000.00000.00000.00000.00000.000030.000033.00000.00000.00000.00000.0000130.00002542.000011208.0000120.0000433.00000.00000.0000110.0000109.0000130.0000627.0000100.0000518.0000130.0000811.0000240.000014404.0000240.00002188.00000.00000.0000100.0000150.00000.00000.000030.000019.000030.000046.00000.00000.000060.000081.000040.000020.000030.0000119.0000240.00002682.00000.00000.00000.00000.00000.00000.000050.000041.0000240.00002037.0000240.00002127.00000.00000.00000.00000.000070.0000192.0000170.0000742.0000
01AL350205170.000020.0000130.00000.0000120.0000450.0000150.000024259.0000170.000024424.0000160.000015604.000070.000051.000040.000035.000030.000027.000090.000084.000020.0000201.000030.0000324.000020.0000715.000060.00002659.00000.00000.00000.000050.00001138.00000.00000.000040.0000156.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.0000120.00002788.000018012.0000110.0000572.00000.00000.0000110.0000161.0000120.0000830.0000100.0000696.0000110.0000946.0000170.000018867.0000170.00003502.00000.00000.000060.000098.00000.00000.00000.00000.000020.000026.00000.00000.000030.000049.00000.00000.00000.00000.0000170.00003230.00000.00000.00000.00000.00000.00000.00000.00000.0000170.00003393.0000170.00003501.00000.00000.00000.00000.000060.0000746.0000100.0000458.0000
01AL3502060.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.0000
01AL3502213280.00001970.0000430.0000830.00001900.00005080.00001860.000041781.00003280.000042500.00002570.000032293.0000450.0000275.0000210.0000348.0000180.0000221.000090.000039.0000570.00002160.0000140.0000-61.0000200.00001256.0000490.00005000.000020.0000150.0000708.0000220.0000388.000030.000053.0000550.0000719.00000.00000.00000.00000.000050.0000188.00000.00000.000080.000062.000030.000093.00000.00000.0000370.00005036.00005733.0000150.0000180.0000180.0000168.0000250.0000259.0000360.0000672.0000230.00001356.0000300.0000801.00001290.00007117.00001270.0000747.00000.00000.0000400.0000144.00000.00000.000050.000017.0000130.000067.0000120.000021.0000110.000035.00000.00000.0000430.0000569.00002990.00007849.00001350.00003927.00001240.00003593.0000840.00001064.0000310.0000296.0000990.0000603.00001400.00001213.00000.00000.00000.00000.0000300.0000249.00002800.00006923.0000
01AL3502222290.0000970.0000580.0000630.00001250.00004440.00001570.000084149.00002290.000085238.00001960.000068889.0000450.0000327.0000200.0000225.0000160.0000146.0000460.0000251.0000340.00001081.0000120.000069.0000190.00002124.0000510.00008849.00000.000080.0000293.0000430.00002886.000050.0000337.0000530.00001089.0000100.000025.00000.00000.000040.0000200.000060.0000184.0000220.0000218.000020.000053.00000.00000.0000870.000013299.000033806.0000660.00001210.0000170.0000253.0000640.0000704.0000870.00002440.0000640.00003968.0000770.00002961.00002200.000041498.00002190.00005103.00000.00000.0000950.0000926.000030.00001.0000160.000094.0000250.0000290.0000250.000043.0000520.0000461.000090.000036.0000190.0000478.00002240.00009330.0000530.0000964.0000450.0000807.0000410.0000556.0000190.0000192.00001780.00004177.00001880.00004731.00000.00000.00000.00000.0000340.0000585.00001930.00005185.0000
01AL3502231470.0000500.0000630.0000290.0000830.00003030.0000930.000090659.00001470.000091454.00001290.000070219.0000440.0000366.0000230.0000589.0000200.0000415.0000580.0000422.0000220.0000771.0000160.0000195.0000160.00002213.0000440.000010695.00000.000060.0000233.0000350.00005053.000050.0000367.0000420.0000795.000070.000018.00000.00000.000030.0000178.000030.0000106.0000180.0000166.000030.000079.00000.00000.0000890.000016104.000055113.0000750.00001996.0000110.0000179.0000760.00001249.0000890.00003751.0000730.00005154.0000810.00003663.00001460.000056973.00001460.00007986.00000.00000.0000600.0000870.000040.00002.0000130.000068.0000150.0000197.000060.00009.0000390.0000535.000070.000036.0000130.0000319.00001450.000010113.00000.00000.00000.00000.000060.000071.0000110.0000106.00001400.00007117.00001420.00007533.00000.00000.00000.00000.0000340.0000780.00001110.00003260.0000
01AL350224990.0000190.0000670.0000120.0000560.00002420.0000760.000085678.0000990.000086327.0000900.000068306.0000370.0000261.0000200.0000603.0000170.0000372.0000520.0000407.0000190.0000913.0000140.0000388.0000130.00002466.0000310.00007892.000020.000030.0000147.0000220.00004244.000050.0000571.0000290.0000649.000050.000012.00000.00000.00000.00000.000030.0000100.0000140.0000158.00000.00000.00000.00000.0000710.000014908.000061444.0000640.00002252.000060.0000114.0000640.0000811.0000710.00003447.0000630.00005033.0000650.00003549.0000990.000058025.0000990.00008509.00000.00000.0000440.0000729.000030.00002.0000110.000062.0000110.0000144.00000.00000.0000320.0000473.000060.000041.0000110.0000258.0000980.00009737.00000.00000.00000.00000.00000.00000.000070.000063.0000980.00007780.0000980.00008138.00000.00000.00000.00000.0000260.0000725.0000720.00002313.0000
01AL3502251310.0000120.00001140.000050.0000750.00003560.00001110.0000170872.00001310.0000172554.00001230.0000139642.0000650.0000533.0000350.0000944.0000320.0000551.0000880.0000878.0000280.00002536.0000250.00001065.0000160.00004615.0000390.000012658.00000.000050.0000186.0000220.00004581.0000120.00003844.0000480.00001681.0000100.000026.00000.00000.000050.0000306.000030.0000206.0000170.0000189.000030.000061.00000.00000.00001100.000027146.0000145820.00001040.00005586.000070.0000192.00001050.00001625.00001100.00007845.00001020.00009200.00001040.00007000.00001310.0000127418.00001310.000021933.00000.00000.0000570.0000822.000090.0000134.0000210.0000124.0000130.0000174.00000.00000.0000320.0000412.000070.000035.0000180.0000643.00001300.000023218.00000.00000.00000.00000.00000.00000.0000120.0000110.00001310.000021111.00001310.000021964.00000.00000.00000.00000.0000450.00001953.0000840.00003118.0000
01AL350226150.00000.0000140.00000.0000120.0000410.0000120.000043190.0000150.000043466.0000140.000029422.0000100.0000137.000070.0000375.000060.0000236.0000100.0000238.000030.00001371.000070.00002404.000030.00001813.000050.00002687.00000.00000.00000.000040.0000805.000040.00003250.000050.0000276.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.0000140.00005263.000040062.0000130.00001478.00000.00000.0000130.0000289.0000140.00001892.0000120.00001422.0000130.00001397.0000150.000036572.0000150.00008681.000060.000092.000040.0000285.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000030.0000126.0000150.00008144.00000.00000.00000.00000.00000.00000.00000.00000.0000150.00008396.0000150.00008665.000050.000045.000050.000054.000090.00001440.000050.0000232.0000
01AL3502313770.00002220.0000600.0000890.00002250.00005870.00001990.000049444.00003770.000050349.00002840.000036144.0000550.0000463.0000200.0000257.0000170.0000146.000080.000029.0000560.00002763.0000120.000014.0000300.00001703.0000740.00007205.00000.0000190.0000831.0000280.0000478.000030.000092.0000620.0000905.00000.00000.00000.00000.000050.0000231.00000.00000.0000100.000085.000020.000059.00000.00000.0000330.00004463.00005325.0000120.0000123.0000170.0000152.0000180.0000155.0000320.0000495.0000180.0000983.0000270.0000735.00001610.00008682.00001600.0000906.00000.00000.0000490.0000163.000020.00001.000080.000025.0000140.000067.0000160.000028.0000130.000038.00000.00000.0000420.0000577.00003470.00008811.00001480.00004183.00001360.00003757.0000910.00001125.0000290.0000257.00001250.0000743.00001680.00001346.00000.00000.00000.00000.0000250.0000178.00003310.00007638.0000
01AL3502322920.00001160.0000920.0000750.00001780.00005920.00002100.0000105697.00002920.0000106684.00002500.000084654.0000600.0000632.0000230.0000300.0000200.0000230.0000460.0000211.0000330.00001333.0000140.0000243.0000250.00002519.0000700.000011949.00000.0000120.0000423.0000600.00003954.000050.0000134.0000530.0000987.000080.000018.00000.00000.000040.0000199.000060.0000197.0000200.0000194.000030.000069.00000.00000.0000800.000011289.000030429.0000610.00001043.0000160.0000249.0000550.0000451.0000800.00002009.0000510.00002585.0000720.00002581.00002820.000052316.00002810.00006321.00000.00000.00001270.00001188.00000.00000.0000240.0000129.0000260.0000265.0000410.000068.0000750.0000681.0000100.000045.0000190.0000410.00002870.000011981.0000760.00001404.0000620.00001173.0000540.0000733.0000220.0000205.00002270.00005133.00002390.00005642.00000.00000.00000.00000.0000370.0000488.00002520.00006807.0000
01AL3502331570.0000390.0000890.0000240.00001010.00003610.00001160.000096099.00001570.000096695.00001370.000074608.0000460.0000367.0000160.0000357.0000140.0000271.0000470.0000275.0000210.00001049.0000110.0000338.0000180.00002336.0000450.000010538.000030.000060.0000242.0000390.00005845.000050.0000564.0000350.0000596.000040.00009.00000.00000.000030.0000170.000040.0000173.0000140.0000138.00000.00000.00000.00000.0000690.000011213.000042849.0000590.00001493.000090.0000146.0000600.0000549.0000690.00002410.0000570.00003296.0000640.00002698.00001560.000061256.00001560.00008407.00000.00000.0000690.00001041.000050.00003.0000130.000069.0000150.0000190.000070.000011.0000490.0000724.000070.000026.0000140.0000308.00001550.000010652.00000.00000.00000.00000.000070.000086.0000120.0000107.00001490.00007366.00001510.00007759.00000.00000.00000.00000.0000320.0000616.00001220.00003449.0000
01AL350234980.0000120.0000790.000060.0000660.00002640.0000870.000084651.0000980.000085148.0000890.000067241.0000370.0000240.0000140.0000209.0000130.0000140.0000410.0000258.0000140.00001223.000090.0000298.0000130.00002356.0000300.00007942.00000.000050.0000189.0000230.00004606.000040.0000482.0000220.0000497.000060.000014.00000.00000.00000.00000.00000.00000.000080.000079.00000.00000.00000.00000.0000520.00009496.000045412.0000460.00001637.000050.000099.0000470.0000475.0000520.00002435.0000440.00002814.0000490.00002533.0000980.000059384.0000980.00008563.00000.00000.0000470.0000823.00000.00000.000080.000042.0000140.0000182.00000.00000.0000340.0000543.000040.000017.0000100.0000245.0000980.000010160.00000.00000.00000.00000.00000.00000.0000110.0000102.0000970.00007740.0000970.00008071.00000.00000.00000.00000.0000220.0000534.0000750.00002535.0000
01AL350235910.000060.0000820.000040.0000630.00002520.0000790.0000115427.0000910.0000116039.0000870.000093042.0000450.0000639.0000200.0000401.0000190.0000293.0000550.0000468.0000130.00001280.0000130.0000770.0000140.00004826.0000310.00008975.00000.000020.0000131.0000230.00004892.000050.00001111.0000250.0000612.000060.000017.00000.00000.000030.0000236.000020.0000153.000090.000077.000030.000054.00000.00000.0000650.000014159.000083977.0000620.00003247.000030.000065.0000630.0000795.0000650.00004418.0000580.00004228.0000630.00003942.0000910.000088301.0000910.000015018.00000.00000.0000380.0000579.000040.00007.000080.000042.000090.0000137.00000.00000.0000230.0000314.000040.000025.000090.0000274.0000910.000016056.00000.00000.00000.00000.00000.00000.000090.000087.0000910.000014451.0000910.000014889.00000.00000.00000.00000.0000300.00001286.0000600.00002308.0000
01AL35023680.00000.000070.00000.000060.0000200.000050.000025114.000080.000025543.000080.000013883.000060.0000399.000030.0000140.000030.000064.000040.0000108.00000.00000.000030.0000737.00000.00000.000020.00001678.00000.00000.00000.00000.00000.000030.00006332.000030.0000429.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000070.00002552.000021532.000070.0000799.00000.00000.000060.0000125.000070.0000957.000060.0000433.000060.00001032.000080.000021829.000080.00005719.000040.000085.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000080.00004305.00000.00000.00000.00000.00000.00000.00000.00000.000080.00005685.000080.00005866.000020.000018.000040.000029.000040.00001964.000030.0000317.0000
01AL3503111380.0000670.0000400.0000260.0000920.00002620.00001000.000017719.00001380.000018019.00001050.000013134.0000180.0000214.000050.000057.000040.000023.00000.00000.0000290.00002312.000040.000054.000060.0000347.0000180.00001566.000070.000090.0000328.000040.000091.00000.00000.0000320.0000300.00000.00000.00000.00000.00000.00000.00000.00000.000030.000019.00000.00000.00000.00000.000070.0000987.00001122.000030.000024.000040.000021.000040.000027.000070.000081.000050.0000298.000050.0000131.0000470.00002552.0000460.0000268.00000.00000.0000120.000031.00000.00000.00000.00000.000020.00008.000050.00007.000050.000015.00000.00000.0000270.0000365.00001280.00003394.0000610.00001683.0000540.00001408.0000420.0000555.000050.000039.0000390.0000237.0000650.0000607.00000.00000.00000.00000.0000100.000087.00001210.00002880.0000
01AL350312830.0000230.0000430.0000150.0000600.00002120.0000860.000029673.0000830.000029919.0000740.000025312.0000150.0000157.000050.0000119.000040.000086.000070.000039.0000110.0000968.000050.000024.000050.0000555.0000140.00002121.000070.000040.000096.0000140.0000767.000050.0000284.0000150.0000246.000030.00006.00000.00000.000050.0000220.00000.00000.000030.000031.00000.00000.00000.00000.0000120.00001722.00004456.000080.0000157.000050.000062.000090.000048.0000120.0000260.000070.0000408.000090.0000264.0000780.000012762.0000770.00001500.00000.00000.0000410.0000309.00000.00000.00000.00000.000050.000044.0000150.000033.0000270.0000215.00000.00000.0000100.0000216.0000820.00003787.0000260.0000560.0000220.0000460.0000240.0000469.000040.000025.0000570.00001191.0000620.00001439.00000.00000.00000.00000.000090.0000138.0000730.00002469.0000
01AL350313390.000060.0000310.000030.0000290.00001070.0000380.000023569.0000390.000023769.0000340.000018765.0000120.0000211.000040.0000117.000040.000084.000080.000051.000070.0000486.000040.000050.000040.0000381.0000110.00002331.000060.000040.0000124.000080.00001230.00000.00000.000090.0000200.00000.00000.00000.00000.00000.00000.00000.00000.000030.000021.00000.00000.00000.00000.0000110.00001953.00006737.000090.0000269.00000.00000.000090.000050.0000110.0000362.000080.0000450.000080.0000330.0000380.000014304.0000380.00001871.00000.00000.0000190.0000291.00000.00000.000040.000021.000020.000026.000030.00005.0000150.0000238.000060.000017.000050.0000112.0000380.00002452.00000.00000.00000.00000.000030.000047.000030.000029.0000360.00001580.0000370.00001703.00000.00000.00000.00000.000080.0000158.0000290.0000884.0000
01AL350314230.000020.0000210.00000.0000160.0000660.0000220.000019716.0000230.000019829.0000210.000016527.000090.0000118.000040.000099.000030.000054.000090.000067.000040.0000110.000030.000067.000040.0000509.000070.00001746.000040.00000.00000.000060.00001219.00000.00000.000070.0000113.000030.00009.00000.00000.00000.00000.00000.00000.000030.000031.00000.00000.00000.00000.0000100.00001863.00008111.000090.0000314.00000.00000.000090.000056.0000100.0000403.000080.0000539.000080.0000447.0000230.000013636.0000230.00001881.00000.00000.0000120.0000221.00000.00000.000030.000012.000020.000031.00000.00000.0000100.0000168.00000.00000.000040.000045.0000230.00002298.00000.00000.00000.00000.00000.00000.00000.00000.0000230.00001660.0000230.00001717.00000.00000.00000.00000.000050.000095.0000180.0000651.0000
01AL350315140.00000.0000130.00000.0000110.0000400.0000140.000020290.0000140.000020616.0000130.000014702.000070.000039.000030.000044.000030.000023.000080.000080.000030.0000431.000020.000016.00000.00000.000040.00001814.000030.00000.00000.00000.00000.000020.0000710.000060.0000326.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000090.00002174.000014631.000090.0000560.00000.00000.000090.000097.000090.0000689.000080.0000601.000080.0000567.0000140.000016021.0000140.00003049.00000.00000.000060.000080.00000.00000.00000.00000.000020.000031.00000.00000.000030.000043.00000.00000.000020.0000103.0000140.00002976.00000.00000.00000.00000.00000.00000.000020.000020.0000140.00002967.0000140.00003110.00000.00000.00000.00000.000060.0000526.000080.0000320.0000
01AL3503160.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.0000
01AL350331510.0000260.0000160.000080.0000340.0000830.0000230.00006449.0000510.00006616.0000370.00004435.000090.000055.000040.000047.000040.000027.00000.00000.000090.0000742.000030.0000-11.000030.0000210.000080.0000830.000040.000030.000091.000030.000077.00000.00000.0000110.0000167.00000.00000.00000.00000.000030.0000180.00000.00000.00000.00000.00000.00000.00000.00000.000030.0000346.0000415.00000.00000.000020.000017.00000.00000.000030.000036.00000.00000.00000.00000.0000190.00001121.0000190.0000118.00000.00000.000050.000014.00000.00000.00000.00000.000030.000020.000020.00003.00000.00000.00000.00000.000090.0000129.0000460.00001107.0000200.0000501.0000170.0000419.0000110.0000130.00000.00000.0000160.0000103.0000250.0000233.00000.00000.00000.00000.000050.000041.0000430.0000908.0000
01AL350332340.0000120.0000180.000050.0000230.0000770.0000250.000012275.0000340.000012423.0000300.00009899.000080.000056.000020.000028.000040.000047.000040.000017.000050.0000286.000020.000054.000040.0000398.000070.00001271.00000.000020.000058.000060.0000318.000030.000048.000070.0000148.000030.00006.00000.00000.00000.00000.00000.00000.000040.000024.00000.00000.00000.00000.000040.0000573.00001517.000050.000065.00000.00000.000040.000023.000040.000081.000040.0000207.000050.0000116.0000330.00005763.0000320.0000683.00000.00000.0000140.0000117.00000.00000.00000.00000.00000.00000.000070.000012.0000100.000088.00000.00000.000060.0000140.0000340.00001533.0000110.0000237.000090.0000201.000090.0000126.000040.000032.0000260.0000566.0000270.0000661.00000.00000.00000.00000.000040.000064.0000300.0000931.0000
01AL350333210.000050.0000160.00000.0000160.0000550.0000180.000013133.0000210.000013193.0000190.000010650.000080.000032.000040.000046.00000.00000.000050.000032.000050.0000442.000030.00004.00000.00000.000050.00001189.000020.000020.000081.000040.0000692.00000.00000.000040.000060.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000070.00001156.00004134.000060.0000148.000020.000027.000050.000027.000070.0000197.000050.0000378.000050.0000193.0000210.00008153.0000210.00001090.00000.00000.0000110.0000158.00000.00000.000040.000021.000020.000020.00000.00000.000080.0000129.000030.00008.00000.00000.0000210.00001421.00000.00000.00000.00000.00000.00000.00000.00000.0000200.0000932.0000200.00001005.00000.00000.00000.00000.000040.000092.0000170.0000506.0000
01AL350334140.00000.0000130.00000.0000100.0000390.0000120.000011810.0000140.000011856.0000130.00009796.000060.000020.00000.00000.000030.000071.000040.000026.00000.00000.00000.00000.000030.0000787.000040.00001044.000040.00000.00000.000030.0000585.00000.00000.000030.000046.00000.00000.00000.00000.00000.00000.00000.00000.000020.000020.00000.00000.00000.00000.000050.0000961.00004654.000050.0000146.00000.00000.000050.000031.000050.0000208.000040.0000328.000050.0000199.0000140.00008311.0000140.00001162.00000.00000.000060.0000125.00000.00000.00000.00000.000030.000044.00000.00000.000060.000089.00000.00000.000030.000037.0000140.00001388.00000.00000.00000.00000.00000.00000.000030.000027.0000140.00001037.0000140.00001085.00000.00000.00000.00000.000030.000087.0000110.0000387.0000
01AL350335140.00000.0000130.00000.0000100.0000400.0000130.000023035.0000140.000023349.0000130.000015960.000060.000045.000020.000077.00000.00000.000070.000063.000030.0000-36.000030.0000359.00000.00000.000040.00001285.00000.00000.00000.000030.0000616.000020.00003448.000050.0000314.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.0000100.00002682.000018150.000090.0000694.00000.00000.0000100.0000114.0000100.00001005.0000100.0000963.000090.0000546.0000140.000018418.0000140.00003838.00000.00000.000060.000074.00000.00000.00000.00000.00000.00000.00000.00000.000030.000036.00000.00000.00000.00000.0000140.00003987.00000.00000.00000.00000.00000.00000.00000.00000.0000140.00003759.0000140.00003858.00000.00000.00000.00000.000050.0000406.000090.0000363.0000
01AL3503360.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.0000
01AL350341730.0000300.000090.0000340.0000380.00001410.0000640.00009726.0000730.00009803.0000620.00008244.000060.000067.000030.000028.00000.00000.00000.00000.0000100.0000477.00000.00000.000040.0000209.000070.0000633.00000.000050.0000191.00000.00000.00000.00000.000090.000078.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000030.0000369.0000469.00000.00000.00000.00000.00000.00000.000020.000030.00000.00000.000020.000056.0000260.00001169.0000250.0000121.00000.00000.000080.000024.00000.00000.00000.00000.00000.00000.00000.00000.000040.000011.00000.00000.000070.000091.0000680.00002412.0000450.00001467.0000430.00001383.0000290.0000347.000060.000058.0000190.000096.0000260.0000196.00000.00000.00000.00000.000030.000019.0000670.00002232.0000
01AL350342410.0000130.0000110.0000150.0000210.0000900.0000390.000014394.0000410.000014473.0000360.000012331.000070.000044.00000.00000.000040.000027.000060.000029.000050.0000146.000040.0000105.00000.00000.000070.00001109.00000.000030.0000108.000070.0000319.000020.00001234.000050.000079.000030.00007.00000.00000.00000.00000.00000.00000.000030.000026.00000.00000.00000.00000.000080.00001245.00003102.000090.0000112.00000.00000.000070.000025.000080.0000147.000070.0000271.000070.0000269.0000390.00006714.0000390.0000795.00000.00000.0000200.0000174.00000.00000.000030.000013.000050.000045.000090.000016.0000130.0000108.000030.00006.000030.000054.0000400.00001742.0000150.0000305.0000130.0000261.0000100.0000139.000050.000048.0000290.0000621.0000310.0000680.00000.00000.00000.00000.000040.000069.0000360.00001131.0000
01AL350343150.000050.000080.000050.000090.0000370.0000140.00009437.0000150.00009543.0000130.00006847.000040.000029.000020.000017.00000.00000.000040.000025.000030.0000231.00000.00000.000030.0000329.000040.0000983.000040.00000.00000.000040.0000500.00000.00000.000040.0000106.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000060.00001013.00003587.000040.0000112.000040.000050.000040.000020.000060.0000169.000040.0000211.000050.0000304.0000150.00005974.0000150.0000815.00000.00000.000070.000094.00000.00000.000030.000011.000020.000029.00000.00000.000050.000067.00000.00000.000040.0000108.0000150.00001115.00000.00000.00000.00000.00000.00000.00000.00000.0000150.0000721.0000150.0000809.00000.00000.00000.00000.000050.0000102.0000110.0000363.0000
01AL35034480.00000.000060.00000.000060.0000210.000070.00007013.000080.00007046.000070.00004809.000040.000040.00000.00000.00000.00000.000020.000015.000030.0000238.000030.0000447.00000.00000.000030.0000742.00000.00000.00000.000050.0000870.00000.00000.000020.000034.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000030.0000546.00002924.000020.000078.00000.00000.000030.000014.000030.0000113.000030.0000145.000030.0000154.000080.00005038.000080.0000737.00000.00000.000040.000053.00000.00000.00000.00000.00000.00000.00000.00000.000040.000061.00000.00000.00000.00000.000080.0000866.00000.00000.00000.00000.00000.00000.00000.00000.000080.0000684.000080.0000691.00000.00000.00000.00000.00000.00000.000060.0000244.0000
01AL35034570.00000.000060.00000.000050.0000190.000060.000011088.000070.000011165.000060.00006286.000050.000096.000020.0000134.000020.000069.000030.000025.00000.00000.00000.00000.00000.00000.000020.0000892.00000.00000.00000.00000.00000.00000.00000.000020.000078.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000050.00001179.00008389.000050.0000270.00000.00000.000050.000043.000050.0000332.000030.0000203.000050.0000428.000070.00008937.000070.00001742.00000.00000.000030.000039.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000070.00001480.00000.00000.00000.00000.00000.00000.00000.00000.000070.00001703.000070.00001789.00000.00000.00000.00000.000030.0000533.000040.0000184.0000
01AL3503460.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.0000
01AL350351240.0000130.000050.000060.0000140.0000430.0000160.00002919.0000240.00002966.0000180.00002156.000050.000012.00000.00000.000020.00008.00000.00000.000050.0000345.000020.00005.000020.0000106.000030.0000262.00000.000020.000057.00000.00000.00000.00000.000050.000047.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000020.000029.00000.00000.000020.000011.00000.00000.000020.0000100.00000.00000.000080.0000367.000080.000038.00000.00000.000030.00008.00000.00000.00000.00000.00000.00000.000020.00005.00000.00000.00000.00000.000050.000074.0000210.0000592.0000110.0000329.0000100.0000298.000070.000084.000030.000026.000060.000030.0000100.000082.00000.00000.00000.00000.000040.000034.0000200.0000529.0000
01AL350352130.000050.000060.000030.000090.0000290.0000100.00004876.0000130.00004932.0000110.00004020.00000.00000.000030.000016.00000.00000.00000.00000.000020.000085.00000.00000.00000.00000.000020.0000412.000030.00000.00000.000040.0000361.00000.00000.000020.000029.00000.00000.00000.00000.00000.00000.00000.00000.000020.000019.00000.00000.00000.00000.000040.0000682.00001287.00000.00000.00000.00000.00000.00000.000040.000063.00000.00000.000040.0000138.0000130.00002387.0000130.0000287.00000.00000.000060.000055.00000.00000.00000.00000.000030.000030.00000.00000.000040.000034.00000.00000.00000.00000.0000130.0000567.000040.000079.000030.000071.000030.000042.00000.00000.000090.0000232.0000100.0000259.00000.00000.00000.00000.00000.00000.0000110.0000330.0000
01AL35035380.000030.000050.00000.000050.0000200.000070.00005034.000080.00005070.000070.00004138.000030.000018.00000.00000.00000.00000.000040.000025.000020.000080.00000.00000.000020.0000444.000020.0000395.00000.00000.00000.00000.00000.00000.00000.000030.000045.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000030.0000566.00001587.000040.0000108.00000.00000.000030.000029.000030.000094.000030.0000186.000040.0000240.000080.00003106.000080.0000418.00000.00000.000050.000075.00000.00000.00000.00000.00000.00000.00000.00000.000020.000032.00000.00000.000020.000016.000080.0000558.00000.00000.00000.00000.00000.00000.00000.00000.000080.0000371.000080.0000397.00000.00000.00000.00000.000020.000027.000070.0000194.0000
01AL35035440.00000.000030.00000.000040.0000100.000030.00003553.000040.00003593.000040.00002613.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000030.00001115.00000.00000.00000.000030.0000589.000030.00005406.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000020.0000386.00001750.00000.00000.00000.00000.00000.00000.000020.000070.00000.00000.00000.00000.000040.00002551.000040.0000384.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000020.000043.00000.00000.00000.00000.000040.0000458.00000.00000.00000.00000.00000.00000.00000.00000.000040.0000357.000040.0000379.00000.00000.00000.00000.00000.00000.000030.000088.0000
01AL35035560.00000.000060.00000.000050.0000180.000060.000014512.000060.000014981.000060.00006922.000030.000058.000030.000074.000030.000036.000030.000050.00000.00000.000020.000087.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000030.0000469.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000040.00001539.000012305.000040.0000389.00000.00000.000040.000047.000040.0000454.000040.0000337.000040.0000586.000060.000012296.000060.00003173.00000.00000.000020.000032.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.000060.00001283.00000.00000.00000.00000.00000.00000.00000.00000.000060.00003140.000060.00003181.00000.00000.00000.00000.000030.00001515.000030.0000123.0000
01AL3503560.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.00000.0000
01AL3504012320.00001380.0000350.0000550.00001130.00003710.00001330.000030027.00002320.000030584.00001880.000023705.0000230.0000193.0000110.0000187.000090.0000140.000080.000035.0000430.00002415.000080.000031.0000120.0000747.0000290.00002496.00000.0000110.0000465.0000100.0000178.000030.0000245.0000480.0000557.00000.00000.00000.00000.000040.0000124.00000.00000.000090.000083.00000.00000.00000.00000.0000220.00002907.00003579.0000100.000080.0000100.000067.0000120.0000119.0000210.0000323.0000130.0000785.0000160.0000365.0000970.00005690.0000950.0000606.00000.00000.0000280.0000103.00000.00000.000030.000010.000090.000054.000090.000015.000080.000024.00000.00000.0000340.0000460.00002140.00005464.0000950.00002620.0000860.00002319.0000630.0000777.0000170.0000152.0000760.0000502.00001090.0000983.00000.00000.00000.00000.0000190.0000151.00002020.00004665.0000
01AL3504022050.0000850.0000580.0000520.0000980.00004140.00001520.000076171.00002050.000077085.00001880.000067449.0000310.0000155.0000130.0000219.0000120.0000146.0000450.0000201.0000240.00001177.000090.0000130.0000120.00001305.0000300.00004211.00000.000070.0000293.0000240.00001542.000050.0000353.0000540.0000914.0000110.000026.00000.00000.000030.0000110.000040.0000111.0000290.0000307.000060.0000145.00000.00000.0000730.00009328.000028459.0000620.00001136.000080.000086.0000570.0000439.0000720.00001825.0000590.00003393.0000590.00001604.00002000.000039017.00001990.00004798.00000.00000.0000990.0000985.00000.00000.0000190.0000112.0000240.0000254.0000270.000042.0000600.0000548.000060.000022.0000150.0000322.00002010.00008768.0000550.0000981.0000470.0000848.0000440.0000596.0000180.0000166.00001540.00003813.00001640.00004199.00000.00000.00000.00000.0000250.0000363.00001780.00004913.0000
01AL3504031300.0000360.0000730.0000170.0000630.00003080.00001050.000079626.00001300.000080393.00001240.000071027.0000280.0000300.0000130.0000185.0000110.0000111.0000480.0000252.0000170.00001276.0000110.0000223.000080.00001254.0000210.00002973.000040.000050.0000230.0000150.00002112.000040.0000448.0000450.0000767.000060.000013.00000.00000.000030.0000141.000060.0000207.0000260.0000233.00000.00000.00000.00000.0000650.000010184.000039965.0000590.00001515.000060.000081.0000570.0000449.0000650.00002197.0000570.00003750.0000540.00001811.00001300.000050271.00001290.00006949.00000.00000.0000660.00001052.000060.00002.0000150.000077.0000140.0000191.000080.000010.0000500.0000738.000050.000017.0000120.0000237.00001280.00008625.00000.00000.00000.00000.000070.000079.000090.000088.00001230.00005897.00001240.00006204.00000.00000.00000.00000.0000240.0000540.00001050.00002931.0000
01AL350404740.000080.0000600.000050.0000370.00002090.0000740.000064333.0000740.000064823.0000710.000056264.0000210.0000273.000080.0000136.000070.000054.0000330.0000216.0000110.00001102.000070.0000133.000070.00001070.0000150.00003127.00000.000040.0000161.0000100.00001789.000030.0000487.0000280.0000490.000050.000012.00000.00000.00000.00000.00000.00000.0000150.0000160.000020.000046.00000.00000.0000430.00007949.000037744.0000410.00001422.000020.000038.0000400.0000362.0000430.00001964.0000400.00002786.0000380.00001664.0000740.000044570.0000740.00006403.00000.00000.0000410.0000804.00000.00000.0000140.000084.000090.0000106.00000.00000.0000360.0000577.000030.000015.000080.0000194.0000740.00007307.00000.00000.00000.00000.00000.00000.000060.000054.0000740.00005599.0000740.00005863.00000.00000.00000.00000.0000170.0000482.0000570.00001905.0000

Showing the first 894 rows.

We can see that we've got a variety of columns that you might want to look into further however for the purpose of this analysis I'm only going to look at a very small subset. I'm also going to perform two small manipulations to this data:

  1. I'm going to do some simple type conversions and rename the columns to something a bit more semantic so that it's easier to talk about them going forward.
  2. I'm also going to shorten each zip code to be four digits instead of 5. This will make it so that we look a bit more at the general location around a zip code as opposed to a very specific one. This is an imprecise overall process, but for the purpose of this example works just fine.
%sql 
DROP TABLE IF EXISTS cleaned_taxes;

CREATE TABLE cleaned_taxes AS
SELECT state, int(zipcode / 10) as zipcode, 
  int(mars1) as single_returns, 
  int(mars2) as joint_returns, 
  int(numdep) as numdep, 
  double(A02650) as total_income_amount,
  double(A00300) as taxable_interest_amount,
  double(a01000) as net_capital_gains,
  double(a00900) as biz_net_income
FROM taxes2013
OK

See how easy it is to create a derivative table to work with? Now that the data is cleaned up. I can start exploring the data. To do that I'm going to leverage the Databricks environment to create some nice plots.

First I'm going to explore the average total income per zip code per state. We can see here that on the whole there isn't anything drastic. New Jersey and California have higher average incomes per zip code.

%sql select * FROM cleaned_taxes
+N/A0-100000100000-200000200000-300000300000-400000

Another way that we could perform that same operation is through the DataFrame API as is shown below. This shows the true power of Apache Spark - a lot of the concepts and operations that you know readily transfer from other languages/DataFrame abstractions like pandas and R.