Files from the Web (requests.get ...)

  • Download files from a remote server


Objectives

  1. Apply packages to directly obtain a file from a remote server


Downloading files from websites

This section shows how to get files from a remote computer. In the previous example, we can avoid the tedious select-right-click-save target …. step. There are several ways to get files here we examine just one.

The most important part is you need the FQDN (URL) to the file.


A Method to get the actual file from a remote web server (unencrypted)

  • You know the FQDN to the file it will be in structure of “http://server-name/…/filename.ext

  • The server is running ordinary (unencrypted) web services, i.e. http://...

We will need a module to interface with the remote server. Here we will use requests , so first we load the module

You may need to install the module into your anaconda environment using the anaconda power shell, on my computer the commands are:

  • sudo -H /opt/jupyterhub/bin/python3 -m pip install requests

Or:

  • sudo -H /opt/conda/envs/python/bin/python -m pip install requests

You will have to do some reading, but with any luck something similar will work for you.

The example below will get a copy of a file named all_quads_gross_evaporation.csv that is stored on the class server, the FQDN/URL is http://54.243.252.9/engr-1330-webroot/4-Databases/all_quads_gross_evaporation.csv. Here we can observe that the website is unencrypted http instead of https. If we visit the URL we can confirm that the file exists (or get a 404 error, if there is no file).

First we will import the requests module.

import requests # Module to process http/https requests

Assuming the requests module loads, lets next clear any existing local (to our machine) copies of the file, in this example, we already have the name, so will just send a system command to delete the file. This step is mostly for the classroom demonstration - the script will happily clobber existing files.

The system command below may be different on windoze! What’s here works on MacOS and Linux.

import sys # Module to process commands to/from the OS using a shell-type syntax
! rm -rf all_quads_gross_evaporation.csv # delete file if it exists

Now we will generate a GET request to the remote http server. I chose to do so using a variable to store the remote URL so I can reuse code in future projects. The GET request (an http/https method) is generated with the requests method get and assigned to an object named rget – the name is arbitrary. Next we extract the file from the rget object and write it to a local file with the name of the remote file - esentially automating the download process.

remote_url="http://54.243.252.9/engr-1330-webroot/4-Databases/all_quads_gross_evaporation.csv"  # set the url
rget = requests.get(remote_url, allow_redirects=True)  # get the remote resource, follow imbedded links
localfile = open('all_quads_gross_evaporation.csv','wb') # open connection to a local file same name as remote
localfile.write(rget.content) # extract from the remote the contents,insert into the local file same name
localfile.close() # close connection to the local file
print(type(localfile)) # verify object is an I/O object
<class '_io.BufferedWriter'>
# verify file exists
! pwd # list absolute path to script directory
! ls -lah # list directory contents, owner, file sizes ...
/home/sensei/ce-5319-webroot/ce5319jb/lessons/lesson4.1
total 404K
drwxrwxr-x  3 sensei sensei 4.0K Nov 22 19:54 .
drwxrwxr-x 21 sensei sensei 4.0K Nov 15 20:33 ..
drwxrwxr-x  2 sensei sensei 4.0K Oct  9 02:12 .ipynb_checkpoints
-rw-rw-r--  1 sensei sensei  571 Oct  9 02:12 1filesystems.ipynb
-rw-rw-r--  1 sensei sensei  550 Oct  9 02:12 2readwritecore.ipynb
-rw-rw-r--  1 sensei sensei  19K Oct  9 02:12 3readwriteweb.ipynb
-rw-rw-r--  1 sensei sensei  120 Nov  3 22:35 A.txt
-rw-rw-r--  1 sensei sensei 355K Nov 22 19:54 all_quads_gross_evaporation.csv
-rw-rw-r--  1 sensei sensei  886 Oct  9 02:12 filetransfer.ipynb

Now we can list the file contents and check its structure, before proceeding.

! cat all_quads_gross_evaporation.csv
YYYY-MM,104,105,106,107,108,204,205,206,207,208,304,305,306,307,308,309,404,405,406,407,408,409,410,411,412,413,414,504,505,506,507,508,509,510,511,512,513,514,601,602,603,604,605,606,607,608,609,610,611,612,613,614,701,702,703,704,705,706,707,708,709,710,711,712,713,714,803,804,805,806,807,808,809,810,811,812,813,814,907,908,909,910,911,912,1008,1009,1010,1011,1108,1109,1110,1210
1954-01,1.8,1.8,2.02,2.24,2.24,2.34,1.89,1.8,1.99,2.02,2.67,2.46,2.11,1.83,1.59,1.17,2.09,2.5,2.22,1.83,1.77,1.62,1.23,1.23,1.27,1.27,1.27,2.98,2.8,2.36,2.16,1.96,1.63,1.52,1.52,1.41,1.38,1.33,2.42,2.54,3.01,2.96,2.81,2.57,2.49,2.22,1.72,1.73,1.66,1.6,1.45,1.45,2.42,2.43,2.45,2.54,2.46,2.29,2.52,2.17,1.78,2.19,2.08,1.87,1.37,1.39,2.45,2.25,2.05,2.3,2.41,2.02,1.94,2.45,1.85,1.53,1.27,1.26,1.93,1.9,2.37,1.91,1.42,1.3,2.5,2.42,1.94,1.29,2.59,2.49,2.22,2.27
1954-02,4.27,4.27,4.13,3.98,3.9,4.18,4.26,4.27,4.26,4.18,4.1,3.98,3.8,3.9,4.69,3.81,3.83,3.48,3.34,3.24,4.16,3.68,3.13,4.22,4.21,2.53,2.39,4.39,4.01,3.99,4.52,5.01,4.69,4.47,4.34,4.24,3.43,2.78,3.81,3.92,4.47,4.57,5.03,5.42,5.54,5.12,3.81,3.97,4.09,3.71,3.52,3.52,3.81,3.96,4.32,4.52,4.58,4.2,4.28,3.63,3.02,3.66,3.56,3.45,3.33,3.38,4.32,4.16,4,4.01,3.87,3.73,3.64,3.73,3.17,2.76,2.86,3.07,3.25,3.61,3.83,3.53,2.59,2.51,4.71,4.3,3.84,2.5,5.07,4.62,4.05,4.18
1954-03,4.98,4.98,4.62,4.25,4.2,5.01,4.98,4.98,4.68,4.77,5.45,4.93,4.75,4.36,4.91,3.92,5.2,4.7,4.33,3.83,4.73,4.3,4.56,4.94,4.82,3.07,2.93,6.31,5.58,4.82,5,5.77,5.46,5.36,5.02,4.96,3.92,3.24,6,6.08,6.26,6.28,6.37,5.68,5.47,5.83,4.59,4.35,4.54,4.15,3.83,3.83,6,5.87,5.54,5.77,5.7,5.17,5.39,4.7,3.96,4.05,4.02,4,3.81,3.83,5.54,5.21,4.88,5.85,5.94,4.87,4.42,4.1,3.7,3.36,3.26,3.49,5,4.81,4.78,4.32,3.21,3.21,6.21,6.06,5.02,3.21,6.32,6.2,5.68,5.7
1954-04,6.09,5.94,5.94,6.07,5.27,6.31,5.98,5.89,5.72,5.22,6.84,6.13,5.19,4.82,5.86,4.95,5.82,4.91,4.35,3.85,5.04,3.58,5.01,5.55,5.06,3.79,3.73,6.66,5.76,5.02,5.1,5.55,5.53,6.19,5.16,4.6,4.43,4.07,7.38,7.29,6.52,6.52,6.61,6.35,6.23,5.71,5.41,5.63,5.87,4.75,4.71,4.71,7.38,6.82,5.47,5.78,5.77,5.03,5.19,5.03,4.78,4.79,4.36,4.21,4.68,4.71,5.47,5.1,4.72,5.42,5.5,4.71,4.55,4.8,4.19,3.84,3.65,4.07,4.93,4.67,4.45,4.51,3.83,3.54,6.45,6.25,4.92,3.54,6.59,6.44,5.88,5.95
1954-05,5.41,5.09,5.14,4.4,3.61,5.57,4.56,4.47,4.18,3.63,6.17,5.16,3.94,3.51,4.15,3.4,6.29,3.93,3.35,2.88,3.71,3.54,3.22,4.06,4.19,3.06,2.96,6.89,5.25,4.48,4.9,5.19,4.76,4.86,4.49,4.33,4.05,3.48,8.8,8.5,6.67,6.57,6.21,7,7.2,5.68,5.04,4.85,4.94,4.61,4.47,4.47,8.8,7.92,5.8,5.91,5.95,5.91,6.1,5.48,4.84,4.96,4.87,4.8,4.43,4.47,5.8,5.73,5.65,6.77,6.92,6.06,4.93,5.11,4.21,3.66,3.96,4.21,6.9,6.98,6.86,4.25,3.48,3.97,7.92,8.13,6.31,3.99,7.75,7.98,7.4,7.4
1954-06,9.56,11.75,12.1,9.77,8.06,9.47,8.42,8.66,8.78,8.38,10.23,8.99,7.43,7.47,9.35,7.64,9.03,7.25,6.5,5.9,8.35,7.39,5.2,6.96,7.66,6.26,6.12,9.47,8.24,7.48,7.85,8.8,8.95,9.58,8.59,8.27,7.1,6.39,10.07,9.99,9.25,9.28,9.48,9.51,9.49,8.88,8.37,8.6,8.71,7.35,6.94,6.94,10.07,9.53,8.24,8.58,8.42,6.88,6.27,7.01,7.92,7.62,7.07,6.8,6.93,6.94,8.24,7.67,7.11,7.45,7.15,7.23,7.92,7.2,6.79,6.02,5.4,6,7.58,7.62,7.63,6.85,5.68,5.22,8.8,7.95,6.79,5.22,9.58,8.6,7.47,7.84
1954-07,8.65,11.12,11.33,11.12,10.09,9.44,9.32,9.42,10.14,10.45,10.34,9.41,8.01,8.94,11.34,9.47,8.62,7.36,7.01,7.07,9.56,8.66,6.52,9.25,9.21,7.14,7.02,9.79,8.58,8.27,9.66,11.06,10.74,11.25,9.61,8.73,7.58,7.08,9.86,9.9,9.8,9.92,10.48,11.11,11.35,11.26,10.09,10.5,10.48,7.7,7.19,7.19,9.86,9.56,8.84,9.3,9.17,8.29,8.82,8.9,8.95,9.04,7.4,6.56,7.15,7.19,8.84,8.18,7.52,7.68,8.4,8.18,8.38,8.62,6.69,5.93,5.54,6.2,8.11,8.11,7.88,7.99,6.09,5.37,9.74,10.2,8.35,5.37,9.26,9.9,9.55,9.33
1954-08,5.81,7.68,9.97,11.34,9.76,7.15,8.56,8.59,9.43,9.08,8.08,7.78,7.16,7.03,9.13,8.84,7.45,6.23,5.67,5.18,9.34,8.99,9.71,10.61,10,9,7.65,8.04,7.13,7.01,8.73,10.97,10.52,11.21,10.14,9.55,7.6,6.13,7.73,7.79,7.76,7.91,8.59,10.08,10.68,11.2,9.95,10.02,10.1,7.28,6.13,6.13,7.73,7.39,6.57,7.14,8.45,8.64,8.96,8.97,8.8,8.61,7.38,6.56,6.16,6.13,6.57,7.43,8.24,9.27,9.49,8.49,8.12,8.3,6.8,5.71,4.9,5.37,9.58,8.67,7.83,7.88,5.6,4.73,10.22,9.36,7.17,5.85,9.69,7.23,6.98,6.98
1954-09,7.42,10.41,10.64,8.68,7.67,7.39,8.31,8.65,8.42,8.33,7.38,7.25,7.17,8.08,8.72,7.65,6.97,6.02,6.53,7.56,8.36,7.46,6.53,7.37,7.25,6.06,5.97,7.71,6.94,7.28,8.86,9.57,8.66,9.06,7.58,7.11,6.29,5.98,6.45,6.67,7.61,7.81,8.7,9.1,9.29,9.77,8.15,8.19,8.4,6.59,5.97,5.97,6.45,6.57,6.87,7.39,8.05,7.23,7.04,7.05,6.89,7.38,6.82,6.39,5.92,5.97,6.87,7.04,7.18,8.47,8.4,7.38,7.12,7.47,5.63,4.5,3.97,4.76,8.32,7.68,7.31,6.55,4.03,3.78,7.77,7.17,5.34,4.29,7.18,5.05,4.82,4.82
1954-10,4.32,5,4.99,5.15,5.21,4.33,5.19,5.24,5.26,5.33,4.26,4.33,4.74,7.12,5.42,4.65,3.82,3.61,5.6,8.75,5.87,4.95,3.97,4.25,4.26,4,3.11,3.98,4.09,5.66,7.58,6.63,5.72,5.86,4.9,4.52,4.21,3.97,5.22,5.21,5.05,5.4,5.73,6.35,6.6,6.74,5.42,5.38,5.59,4.59,3.97,3.97,5.22,5.16,5.01,5.21,5.45,5.17,5.13,4.89,4.65,5.01,5.23,5.13,3.94,3.97,5.01,5.06,5.1,5.45,5.46,5.21,4.93,5.05,4.12,3.11,3.2,3.55,5.67,5.81,5.96,3.79,2.71,3.18,6.17,6.29,4.37,3.74,5.4,4.45,4.28,4.28
1954-11,2.86,3.57,4.26,4.38,4.4,3.23,4.12,4.14,4.28,4.45,3.8,3.82,3.71,4.14,4.32,3.6,3.19,3.38,3.36,3.95,3.87,3.35,2.78,2.99,3.03,2.25,2.18,3.56,3.78,4.23,4.41,4.8,3.76,3.78,3.31,3.14,2.75,2.4,3.83,3.81,3.74,3.8,4.08,4.38,4.56,5.1,3.97,3.67,3.62,3.11,2.83,2.83,3.83,3.84,3.87,3.93,4,3.96,4,3.82,3.47,3.65,3.53,3.34,2.82,2.83,3.87,3.89,3.9,3.5,3.51,3.47,3.28,3.7,2.97,2.49,2.47,2.63,3.55,3.46,3.2,3.02,2.31,2.45,4.3,4.51,3.6,3.07,3.87,3.75,3.69,3.69
1954-12,3.33,3.33,3.33,3.34,3.28,3.28,3.33,3.33,3.4,3.42,2.98,3.09,3.17,3.84,3.64,2.72,1.92,2.87,3.35,4.07,2.97,2.49,2.47,2.44,2.36,1.45,1.38,3.02,3.23,3.46,3.58,3.86,3.18,3.06,2.66,2.46,2.13,1.71,2.89,2.95,3.15,3.28,3.85,3.6,3.7,4.09,3.17,2.83,2.78,2.54,2.35,2.35,2.89,2.87,2.81,3.11,3.63,3.39,3.46,3.25,2.92,2.98,2.94,2.82,2.5,2.35,2.81,3.05,3.28,3.31,3.42,3.34,3.11,3.1,4.23,4.89,3.16,2.65,3.36,3.41,3.34,3.99,4.99,3.02,4.05,4.36,3.58,3.28,3.6,3.65,3.6,3.6
1955-01,1.92,1.86,1.71,1.71,1.69,1.92,1.92,1.82,1.64,1.63,1.95,1.94,2.01,1.86,1.55,1.22,1.57,1.97,2.04,2.13,1.69,1.6,1.68,1.74,1.7,1.14,1.08,1.79,1.98,2.08,2.14,2.56,2.13,2.02,1.83,1.73,1.45,1.23,2.33,2.26,1.91,1.97,2.23,2.18,2.42,2.75,2.23,2,1.98,1.64,1.49,1.49,2.33,2.25,2.05,2.11,2.2,2.32,2.52,2.42,2.2,2.15,2.41,2.44,1.52,1.49,2.05,2.1,2.14,2.46,2.59,2.28,2.04,2.25,2.17,1.86,2.01,1.65,2.63,2.37,2.03,1.93,1.76,2.22,3.26,3.37,2.64,2.5,2.96,2.82,2.77,2.77
1955-02,2.82,2.82,2.35,1.87,1.94,2.99,2.85,2.82,2.39,2.44,3.12,2.78,2.52,3.08,2.58,2.06,3.14,2.15,2.62,3.51,2.7,2.24,1.62,1.84,1.99,1.99,1.44,3.41,2.86,2.91,3.02,3.12,2.39,2.52,2.3,2.18,2.06,1.97,3.37,3.38,3.43,3.41,3.34,2.84,2.62,3.18,2.21,2.2,2.47,2.11,1.97,1.97,3.37,3.36,3.33,3.34,3.05,2.71,2.73,2.43,2.01,2.22,2.17,2.14,1.97,1.97,3.33,2.99,2.66,3.2,3.23,2.7,2.35,2.45,1.78,1.4,1.55,1.86,3.07,2.85,2.64,2.26,1.26,1.43,3.66,3.72,3.15,2.36,3.45,3.34,3.3,3.3
1955-03,5.29,5.29,4.96,4.61,4.76,5.59,5.34,5.29,4.86,5.01,5.8,5.35,4.96,5.52,4.56,3.93,5.05,4.55,5.15,6.3,4.92,3.21,3.16,4.02,4.2,3.99,3.65,5.92,5.47,5.67,5.85,5.66,4.2,4.45,4.45,4.41,4.25,4.12,6.12,6.12,6.13,6.04,5.68,6.17,6.57,6.01,3.95,3.95,3.9,3.86,4.12,4.12,6.12,6.11,6.07,5.95,5.16,4.77,4.84,4.27,3.63,3.66,3.52,3.93,4.12,4.12,6.07,5.3,4.55,5.05,5.07,4.4,3.64,3.62,3.08,2.5,3.21,3.89,4.77,4.91,5.27,3.03,2.28,2.98,6.34,6.44,5.57,4.32,6.02,5.72,5.66,5.66
1955-04,6.93,7.38,8.02,8.23,6.65,7.23,7.76,7.75,7.36,6.26,7.8,7.51,7.23,7.73,7,6.33,8.08,6.65,7.22,8.29,6.88,6.26,3.86,4.47,5.13,4.16,4.08,8.61,7.72,7.7,7.9,7.78,6.4,5.85,5.21,5.14,4.25,3.99,8.16,8.24,8.51,8.43,8.09,8.89,9.74,8.09,5.87,5.18,5.22,4.76,3.81,3.81,8.16,8.12,8.01,8.03,7.07,6.61,7.23,6.3,5.37,5.26,5.38,4.92,3.84,3.81,8.01,6.89,5.8,5.59,6.04,5.83,5.19,5.22,5.03,3.82,2.94,3.54,6.81,6.04,4.94,4.96,3.27,2.52,7.93,7.74,5.8,4.26,7.3,6.18,6.02,6.02
1955-05,5.46,5.35,5.28,5.18,4.8,5.76,6.07,5.96,5.52,5.16,6.23,5.92,5.63,6.24,5.75,5.56,6.85,5.15,5.67,6.65,6.18,5.87,5.39,5.18,5.31,5.24,4.32,7.84,6.75,6.86,7.12,7.26,5.98,6.12,5.46,5.48,5.28,5.12,8.24,8.2,7.86,7.75,7.3,8.16,9.07,7.6,5.62,5.46,5.47,5.25,5.12,5.12,8.24,8.02,7.48,7.42,6.62,5.24,4.25,4.79,5.48,5.6,5.27,5.31,5.13,5.12,7.48,6.62,5.79,5.55,5.01,5.55,5.81,5.61,4.48,3.64,3.82,4.76,7.29,6.59,5.78,5.13,3.29,3.4,8.64,8.32,6.17,4.82,7.96,6.45,6.25,6.25
1955-06,8.09,7.67,7.66,6.42,5.29,8.21,7.67,7.62,6.85,5.97,8.3,7.56,6.89,7.63,7.5,6.86,9.04,6.24,6.7,7.75,6.64,6.31,6.8,6.97,6.85,4.58,4.41,9.08,7.98,8.47,8.69,7.88,6.68,7.12,6.83,6.86,5.79,4.92,10.29,10.08,8.69,8.71,8.82,9.7,10.49,8.51,6.73,6.37,6.6,6.26,5.91,5.91,10.29,9.56,7.8,8.08,8.16,6.54,5.23,5.63,6.37,6.18,6.02,5.89,5.91,5.91,7.8,7.57,7.33,8.6,7.93,7.08,6.93,6.18,4.83,3.98,4.74,5.61,8.81,8.27,7.66,6.42,3.69,4.42,10.7,10.03,7.47,5.92,9.97,7.67,7.4,7.4
1955-07,7.75,11.05,11.32,10.66,9.52,7.39,8.69,9.1,9.53,9.07,7.36,7.62,7.93,9,9.82,8.6,6.36,7.01,7.54,8.43,9.22,8.73,6.23,8.09,8.3,5.86,5.67,8.03,8.25,9.03,9.16,8.7,8.48,8.94,8.51,8.38,6.02,5.37,8.01,8.07,8.11,8.28,9.09,9.33,9.41,8.51,7.3,7.4,7.4,6.15,4.79,4.79,8.01,7.76,7.14,7.69,8.42,7.45,7.08,6.89,6.78,6.96,6.39,5.85,4.81,4.79,7.14,7.36,7.56,8.86,8.75,7.76,7.34,6.93,4.74,3.7,4.39,4.71,9.35,8.52,7.64,6.38,3.37,4.34,10.39,9.96,6.59,5.31,9.16,6.6,6.25,6.25
1955-08,6.39,7.52,7.51,8.31,8.52,7.08,7.69,7.7,8.06,8.1,7.3,7.05,6.85,8.05,8.09,7.16,6.79,5.91,6.67,8.09,8.24,7.91,7.52,7.28,7.22,5.04,4.85,8.05,7.66,8.53,8.73,8.39,7.78,8.03,7.58,7.47,5.38,4.7,7.47,7.6,7.89,7.79,7.5,8.24,8.16,8.26,7.12,6.74,6.43,5.6,4.42,4.42,7.47,7.24,6.68,6.88,7.19,6.67,6.22,6.52,6.65,6.68,5.83,5.08,4.43,4.42,6.68,6.81,6.93,7.81,7.62,7.13,6.45,6.7,4.31,3.45,3.77,4.25,8.06,8.23,8.38,4.97,3.17,3.59,9.14,9.11,6.39,4.95,8.16,6.55,6.31,6.31
1955-09,5.77,5.53,5.44,7.04,6.75,6.44,6.33,6.23,6.36,6.07,6.39,5.92,5.54,6.28,5.94,5.31,5.93,4.74,5.34,6.54,5.94,5.14,5.58,6.47,6.22,4.37,4.2,6.63,6.27,7.13,7.32,6.5,5.78,7.05,6.61,6.6,4.97,4.27,7.12,7.06,6.32,6.33,6.49,7.43,7.72,6.89,6.02,5.91,5.9,5.22,4.41,4.41,7.12,6.5,5.01,5.4,5.91,5.33,5.18,5.49,5.77,5.61,5.26,4.64,4.41,4.41,5.01,5.15,5.27,5.23,5.15,5.05,5.24,5.52,3.55,2.59,3.24,4.1,5.51,5.18,4.81,4.18,2.28,2.92,5.94,5.62,3.63,3.11,5.2,3.5,3.28,3.28
1955-10,5.26,5.41,5.77,6.01,5.95,5.28,5.5,5.53,5.45,5.05,5.21,5.04,4.88,4.78,4.34,4.31,4.19,4.29,4.51,5.01,5.05,4.97,5.53,6,5.9,3.24,3.02,4.88,5.11,5.85,6.03,5.91,5.65,6.39,6.09,6.09,4.7,3.62,5.02,5.03,4.94,5.06,5.6,6.75,7.5,6.17,5.39,5.69,6.21,5.99,4.78,4.78,5.02,4.88,4.54,4.83,5.51,5.43,5.33,5.12,5.04,6.02,6.76,5.6,4.79,4.78,4.54,4.98,5.39,5.36,5.38,5.42,5.58,6.29,4.42,3.48,4.37,4.7,5.88,5.75,5.46,4.85,3.24,4.33,6.94,7,4.9,4.53,6.02,4.89,4.69,4.69
1955-11,4.28,4.28,4.11,3.94,3.98,4.45,4.31,4.28,4.16,4.29,4.54,4.34,4.15,4.58,4.33,3.72,3.64,3.97,4.27,4.82,3.48,3.2,3.95,4.32,4.37,3.87,2.67,4.37,4.34,4.48,4.51,3.93,3.76,4.92,4.76,4.7,3.52,2.64,4.32,4.36,4.43,4.42,4.39,4.51,4.52,4.12,3.85,4.38,4.7,4,2.64,2.64,4.32,4.24,4.03,4.12,3.88,3.32,3.22,3.32,3.46,4.17,4.77,3.92,2.67,2.64,4.03,3.65,3.27,3.78,3.74,3.31,3.55,4.25,3.4,2.81,2.86,2.71,3.64,3.45,3.26,3.16,2.61,2.96,3.98,4.17,3.14,3.01,3.47,3.15,3.06,3.06
1955-12,2.95,2.95,2.57,2.18,2.14,3.18,2.99,2.95,2.51,2.15,3.25,3.22,2.96,2.51,2.33,2.08,2.26,3.15,3.03,2.71,2.5,2.1,2.46,2.42,2.47,2.22,1.39,3.29,3.3,3.03,3.06,2.96,2.92,2.92,2.8,2.74,2.26,1.9,3.03,3.12,3.58,3.58,3.54,3.56,3.85,3.09,2.63,2.78,3.04,2.64,1.9,1.9,3.03,3.19,3.58,3.58,3.03,2.61,2.74,2.43,2.12,2.64,3.14,2.7,1.92,1.9,3.58,2.96,2.36,2.49,2.58,2.46,2.39,2.77,2.42,2.07,2,1.93,2.58,2.52,2.39,2.31,1.93,2.03,2.83,3.14,2.41,2.21,2.39,2.44,2.39,2.39
1956-01,2.17,2.17,2.17,2.12,1.67,2.51,2.22,2.17,2.11,1.81,2.85,2.49,2.23,2.31,1.94,1.65,2.12,2.29,2.38,2.61,2.26,1.62,1.68,2.08,2.05,2.05,1.85,2.7,2.5,2.12,2,2.3,2.53,2.61,2.27,2.05,1.92,1.84,3.08,3.04,2.84,2.79,2.58,2.91,3.2,2.77,2.17,2.66,2.84,2.39,1.84,1.84,3.08,3,2.79,2.73,2.47,2.26,2.08,1.94,1.83,2.46,2.9,2.58,1.86,1.84,2.79,2.56,2.34,2.37,2.26,2.07,2.12,2.56,2.28,1.92,1.88,1.85,2.29,2.41,2.94,2.2,1.78,1.89,3.35,3.32,2.96,2.44,3.27,3.02,2.99,2.99
1956-02,1.6,1.6,1.6,1.61,1.79,1.6,1.6,1.6,1.83,2.46,2.24,2.27,2.34,3,2.49,2.23,3,2.9,3.19,3.62,2.84,2.06,2.01,2.2,2.33,2.32,1.79,3.45,3.26,3.5,3.88,2.82,2.06,2.67,2.46,2.33,2.2,2.12,3.29,3.32,3.47,3.56,3.97,4.1,4.14,3.38,2.42,2.55,2.64,2.49,2.12,2.12,3.29,3.34,3.46,3.61,3.47,2.62,2.22,2.46,2.49,2.64,2.91,2.98,2.14,2.12,3.46,3.14,2.82,2.72,2.45,2.74,2.52,2.87,2.46,1.9,2,2.09,3.21,3.11,2.9,2.55,1.66,1.98,4.31,4.13,3.05,2.53,4.03,3.17,3.07,3.07
1956-03,6.18,6.18,4.92,3.62,3.97,6.23,6.19,6.18,5.21,5.96,6.23,6.23,6.36,6.78,6.37,5.63,5.08,6.27,7.16,7.19,5.2,4.74,4.05,4.85,4.4,2.47,2.5,6.69,6.96,6.55,6.36,6.19,5.48,5.57,5.69,4.95,2.51,2.52,6.74,6.8,7.02,6.92,6.54,7.09,7.4,6.43,5.11,4.91,5.16,4.02,2.98,2.99,6.74,6.75,6.76,6.69,5.73,4.14,3.12,3.87,4.59,4.55,4.3,3.84,3.01,2.99,6.76,5.73,4.73,4.47,3.67,4.47,4.71,4.54,3.35,2.7,2.83,2.96,5.4,5.23,4.94,4.24,2.47,2.81,6.63,6.35,4.59,3.65,6.14,4.66,4.49,4.49
1956-04,6.08,6.66,6.98,6.8,6.34,6.39,7.12,7.13,6.91,6.61,6.89,7.05,7.15,7.3,7.38,6.36,5.92,6.62,7.19,7.25,6.31,5.72,4.58,5.78,5.08,3.15,3.22,7.21,6.21,6.02,6.42,6.66,5.67,6,5.87,5.15,3.21,3.23,7.77,7.73,7.29,7.23,6.85,6.82,7.68,6.76,5.12,5.51,5.75,4.74,4.02,4.04,7.77,7.41,6.54,6.67,6.47,5.45,4.79,4.61,4.57,5.11,4.96,4.63,4.06,4.04,6.54,6.17,5.8,6.96,6.57,5.64,5.55,5.04,3.85,2.98,3.13,3.79,6.32,6.09,6.07,5.08,2.63,2.86,6.67,6.67,5.43,4.09,7.34,6.38,5.32,5.32
1956-05,8.04,9.64,9.78,8.1,6.38,7.57,8.47,8.65,7.73,6.38,7.99,8.22,8.39,7.73,7.28,6.71,7.27,7.78,7.91,7.93,6.73,6.26,4.56,6.13,5.65,3.9,3.85,8.24,7.46,7.04,6.45,6.84,6.12,6.92,6.54,5.79,4,4.03,9.07,8.98,8.53,8.52,8.3,7.92,8.44,7.04,5.85,6.65,6.69,5.59,4.97,4.99,9.07,8.93,8.6,8.57,7.65,6.62,6.41,5.9,5.47,5.87,6.01,5.7,5.01,4.99,8.6,7.57,6.56,8.28,8.21,6.92,6.32,5.51,4.93,4.04,3.98,4.7,8.08,7.41,7.01,6.01,3.64,3.64,7.95,8.21,7.18,5.47,9.78,8.64,7.32,7.32
1956-06,9.02,10.89,11.14,9.8,8.31,8.27,8.67,8.94,8.92,8.23,8.68,8.72,8.97,9.87,9.25,7.85,8.35,8.79,10.41,10.55,9.3,8.74,8.58,8.44,7.35,4.82,4.86,9.8,9.01,8.88,9.33,10.04,8.46,9.2,8.73,7.62,4.86,4.88,10.8,10.69,9.94,10.15,10.68,10.31,11.66,10.31,8.22,8.29,8.51,6.62,5.37,5.38,10.8,10.39,9.39,9.87,10.04,8.67,8.25,8.03,7.77,7.68,6.93,5.96,5.4,5.38,9.39,9.05,8.7,10.95,10.17,5.72,7.54,7.43,5.17,4.32,4.86,5.26,4.42,3.73,8.65,5.72,4.05,4.75,10.69,10.43,7.22,5.93,10.72,8.96,7.11,7.11
1956-07,8.01,10.78,11.05,9.45,8.16,8.12,8.51,8.71,9.13,9.55,9.23,9.09,8.86,10.9,11.29,9.44,8.33,9.24,10.9,11.04,10.86,10.24,6.74,9.43,8.64,5.25,5.67,10.04,9.27,9.07,9.42,11.41,10.67,11.41,11.53,10.02,5.33,5.38,9.49,9.64,10.18,10.28,10.46,10.6,12.19,11.64,10.19,10.19,10.59,8.75,7.06,7.1,9.49,9.45,9.36,9.75,10.18,9.59,9.5,9.63,9.39,8.77,8.84,8.28,7.13,7.1,9.36,9.41,9.45,9.44,9.64,9.81,9.14,8.39,6.52,4.83,5.54,6.69,10.43,10.26,9.87,8.18,4.18,5.11,12.69,12.3,8.48,6.61,13.2,10.74,8.1,8.1
1956-08,7.78,9.53,9.63,9.7,9.25,8.25,8.65,8.75,9.36,10.19,8.58,8.66,8.88,10.25,10.88,9.37,7.08,8.54,9.95,10.04,10.88,10.32,8.44,11.14,9.79,5.86,5.85,9.01,8.99,9.17,10.13,11.1,10.17,11.42,11.3,9.99,5.85,5.85,8.17,8.38,9.13,9.14,9.21,10.16,11.61,11.12,9.46,9.66,9.97,7.87,5.86,5.86,8.17,8.13,8.04,8.38,9.07,8.82,8.62,8.75,8.71,8.81,8.38,7.41,5.9,5.86,8.04,8.44,8.82,8.53,8.48,9.01,8.77,8.62,6.09,4.45,4.6,5.52,9.5,9.49,9.08,7.67,3.8,4.21,11.31,10.96,8.28,6.15,11.31,9.75,8.1,8.1
1956-09,8.02,9.87,10.01,9.41,9.04,8.33,8.65,8.79,8.95,9.26,8.7,8.74,8.84,9.38,8.94,8.18,7.4,8.36,9.72,9.84,9.58,9.1,7.61,8.82,7.45,3.99,4.49,7.55,7.82,8.14,8.89,9.24,8.6,9.26,8.97,7.69,4.01,4.06,7.62,7.63,7.62,7.6,7.71,8.5,9.17,9.03,7.55,8.28,8.49,6.75,5.39,5.42,7.62,7.58,7.47,7.45,7.21,6.5,5.38,5.96,6.5,7.28,7.03,6.27,5.44,5.42,7.47,7.33,7.19,8.64,7.98,6.78,6.99,7.07,5.4,4.37,4.52,5.17,7.63,7.31,7.28,6.4,3.96,4.24,8.25,8.24,6,4.96,9.49,7.67,5.67,5.67
1956-10,5.58,6.44,6.48,7.22,7.47,5.96,6.14,6.18,6.57,6.66,6.04,6.1,6.3,6.58,6.04,5.21,5.37,6.12,7.04,7.07,6.16,5.7,4.78,5.43,4.88,3.04,3.19,6.17,6.38,6.48,6.37,6.88,6.54,6.56,6,5.25,3.09,3.12,6.69,6.65,6.56,6.52,6.32,6.99,7.37,6.97,5.93,5.71,5.26,4.56,4.04,4.06,6.69,6.79,7.04,6.84,6.05,5.55,5.2,5.26,5.16,5.45,4.59,4.83,4.08,4.06,7.04,6.36,5.7,6.72,6.52,5.7,5.38,5.52,4.27,3.6,3.74,3.98,6.46,6.08,5.77,5.1,3.33,3.67,7.51,7.47,5.92,4.82,8.32,7.2,5.97,5.97
1956-11,3.83,3.83,3.72,3.6,3.56,3.86,3.83,3.83,3.7,3.58,3.91,3.86,3.96,4.15,3.66,3,3.15,3.9,4.55,4.57,3.61,3.22,3.26,3.36,3.08,1.97,1.96,4.11,4.39,4.43,4.35,3.97,3.97,3.95,3.9,3.46,2.01,2.02,3.9,3.96,3.91,4.02,4.56,4.77,4.86,4.08,3.76,3.83,3.7,3.02,2.47,2.48,3.9,3.55,2.7,3.22,4.19,3.73,3.6,3.54,3.42,4.01,3.63,3.05,2.5,2.48,2.7,3.22,3.71,4.53,4.43,3.59,3.58,4.21,2.85,2.66,3.22,2.71,3.92,3.94,4.89,3.28,2.69,3.54,5.6,5.48,4.03,3.77,5.61,4.81,3.97,3.97
1956-12,3.07,3.07,2.81,2.54,2.44,3.21,3.09,3.07,2.68,2.16,3.12,3.24,3.25,3.28,2.26,1.96,2.43,3.3,4.07,4.1,2.96,2.68,2.1,2.63,2.19,1.2,1.19,3.32,3.53,3.31,3.08,3.46,3.22,3.07,3,2.56,1.25,1.27,2.49,2.66,3.57,3.53,3.39,3.62,3.81,3.54,2.9,2.88,2.79,2.32,1.89,1.91,2.49,2.51,2.97,3.38,3.19,3.16,3.61,2.72,2.42,2.83,2.92,2.71,1.93,1.91,2.79,2.96,2.95,2.95,3.02,2.82,2.62,2.93,2.53,2.21,2.15,1.98,3.03,2.95,2.8,2.62,2.09,2.24,3.8,3.75,3.3,2.83,3.9,3.68,3.43,3.43
1957-01,2.41,2.41,1.83,1.22,1.22,2.45,2.42,2.41,1.9,1.42,2.55,2.46,2.44,2.46,2,1.18,2.05,2.45,2.48,2.48,2.13,1.52,1.5,1.85,1.81,1.51,1.37,3.29,3.23,2.44,2.39,2.3,2.2,2.03,1.83,1.76,1.58,1.46,2.92,3.03,3.58,3.4,3,2.95,3.03,2.58,1.94,1.83,1.85,1.6,1.46,1.46,2.92,2.95,3.19,2.99,2.84,2.74,2.68,2.08,1.77,2.6,2.29,1.52,1.46,1.46,2.94,2.75,2.68,2.24,2.01,2.14,2.31,3.22,2.77,1.84,2.04,1.64,2.02,2.23,2.34,2.52,2.14,2.24,2.87,2.98,2.84,2.87,3.52,3.27,2.96,2.96
1957-02,2.53,2.53,2.37,2.21,2.12,3.03,2.61,2.53,2.39,1.77,3.38,3.17,2.47,2.42,1.83,0.98,2.53,3.06,2.38,2.38,1.94,1.24,1.53,1.79,1.69,1.12,1.1,3.03,2.97,2.24,2.13,1.97,1.76,1.86,2.07,1.92,1.19,1.22,3.53,3.48,3.2,3.05,2.72,2.57,2.54,2.04,1.88,1.88,1.84,1.96,1.94,1.96,3.53,3.5,2.94,2.71,2.84,2.92,2.7,2.18,1.9,2.09,2.07,1.96,1.96,1.96,2.73,2.94,3.02,2.9,2.84,2.64,2.29,2.24,2.12,1.94,2.09,2,2.86,2.81,2.67,2.59,2.12,2.11,3.78,3.82,2.95,2.81,4.56,3.78,2.92,2.92
1957-03,3.12,3.12,2.96,2.8,2.88,3.42,3.17,3.12,2.9,2.97,3.67,3.54,3.84,3.86,2.71,2.58,4.46,4.03,4.85,4.85,3.78,2.7,2.42,2.73,2.62,2.03,1.98,6.13,5.82,4.87,4.88,4.7,3.42,3.21,3.14,2.83,2.16,2.2,5.96,6.04,6.43,6.08,5.28,5.95,6.32,4.88,3.62,3.2,3.2,3.42,3.57,3.6,5.96,5.97,5.72,5.26,5.2,5.52,6.56,4.58,3.5,3.28,3.24,3.52,3.6,3.6,5.22,5.18,5.16,6.17,6.56,4.98,4.01,3.39,3.1,2.81,3.49,3.57,5.47,5.07,4.8,4.53,3.2,3.35,6.69,6.65,4.82,4.44,7.75,6.25,4.6,4.6
1957-04,4.06,4.04,4.03,4.02,3.38,4.27,4.12,4.03,3.71,3.09,4.94,4.78,4.72,4.63,3.34,2.7,5.62,5.19,5.66,5.69,4.36,2.8,2.81,2.78,2.66,2.12,2.23,7.53,5.45,4.9,4.81,4.82,2.94,3.03,3.02,2.85,2.27,2.32,7.92,7.92,7.9,7.47,6.27,5.54,5.91,5.07,3.19,2.51,2.67,3.55,3.98,4.02,7.92,7.9,7.09,6.49,5.82,5.33,6.07,5.65,2.9,2.75,2.49,3.66,4.02,4.02,6.33,5.38,5.02,5.77,5.99,4.14,2.76,3.1,2.99,3.03,3.73,3.93,4.48,4.18,4.15,3.74,3.26,3.53,4.87,5.28,4.51,4.34,7.18,5.92,4.45,4.45
1957-05,4.15,4.15,4.15,3.35,3.18,4.56,4.21,4.15,3.75,3.37,4.88,4.69,4.51,4.36,3.53,3.46,5.52,4.98,5.01,5.01,4.08,3.14,2.63,3.2,3.56,3.33,3.28,7.86,5.63,4.79,3.91,3.97,3.06,3.72,3.72,3.58,3.49,3.53,8.24,8.25,8.32,7.85,6.52,5.04,4.64,4.07,3.41,3.6,3.72,4.5,4.99,5.03,8.24,8.23,7.42,6.77,5.76,4.65,4.71,3.9,3.43,3.3,3.41,4.72,5.03,5.03,6.53,5.09,4.54,4.55,4.76,4.13,3.48,3.34,3.38,3.56,3.95,4.7,4.82,4.33,3.89,3.8,3.63,3.48,4.93,5.42,4.91,4.95,7.59,6.5,5.18,5.18
1957-06,7.54,7.42,7.44,5.55,4.58,7.74,7.25,7.16,6.26,5.63,8.81,8.12,6.96,6.83,6.88,5.73,8.82,7.8,6.74,6.74,6.7,5.44,4.63,6.03,5.52,3.74,3.77,10.21,7.39,6.75,6.9,6.63,5.86,6.29,6.44,5.74,3.83,3.86,10.86,10.8,10.49,9.51,7.24,7.31,7.88,6.72,5.66,5.77,6.04,5.39,4.87,4.9,10.86,10.8,8.66,7.26,6.75,6.62,7.36,6.12,5.24,4.96,5.11,4.96,4.9,4.9,7.09,6.46,6.22,6.25,6.27,5.82,5.18,4.94,4.24,2.91,3.71,4.54,6.26,5.95,5.6,5.47,3.41,3.14,6.95,7.16,5.62,5.16,8.94,7.31,5.47,5.47
1957-07,7.43,10.08,10.1,9.03,8.24,8.23,10.41,10.4,9.65,8.9,10.11,10.24,10.31,10.2,10.22,8.83,10.33,9.78,10.07,10.14,9.87,7.75,6.18,8.17,7.29,4.13,4.15,10.84,8.82,8.59,9.19,9.21,7.84,9.21,8.99,7.74,4.29,4.34,10.16,10.27,10.86,10.75,10.17,9.91,11.21,9.47,8.06,8.39,8.71,7.22,6.17,6.22,10.16,10.2,10.61,10.51,10.01,9.94,11.31,9.2,8.1,7.89,7.53,6.45,6.24,6.22,10.4,9.68,9.4,10.54,10.97,9.12,8.33,7.9,6.62,5.56,4.71,5.69,9.69,9.23,8.74,8.57,4.97,3.73,12.75,12.11,8.61,7.48,12.29,10.22,8.07,8.07
1957-08,5.85,6.39,6.35,7.3,7.64,6.25,6.69,6.79,7.25,7.77,5.35,5.64,7.43,7.96,7.83,7.22,7,6.52,8.23,8.24,8.18,7.42,6.37,7.21,6.57,4.46,4.66,9.11,8.24,8.12,8.75,9.26,8.54,9.45,8.36,7.01,4.55,4.58,7.67,7.95,9.44,9.55,9.51,9.77,11.44,9.45,7.71,8.58,8.79,6.86,5.82,5.85,7.67,7.78,9.52,9.81,9.6,9.89,11.24,8.29,6.97,7.76,7.45,5.96,5.86,5.85,9.77,9.45,9.32,10.06,10.42,8.61,7.67,7.62,6.34,5.74,5.22,5.63,10.29,9.04,7.82,7.78,5.71,4.8,11.21,10.81,7.81,7.04,11.51,9.52,7.39,7.39
1957-09,5.35,5.95,5.59,5.29,4.79,6.12,5.91,5.86,5.42,5,6.35,6.25,6.14,6.11,5.59,4.85,6.21,6.3,6.51,6.54,6.12,5.37,5.32,5.42,4.49,3.29,3.36,7.18,6.15,6.09,6.78,6.92,5.96,6.06,5.68,4.97,3.29,3.3,7.36,7.37,7.4,7.07,6.25,6.35,6.85,6.88,5.75,5.68,5.88,4.4,3.51,3.52,7.36,7.35,6.76,6.3,6.72,7.17,6.88,5.83,5.23,5.23,5.11,4.16,3.58,3.52,6.36,7.03,7.29,7.28,6.72,6.03,4.93,5.42,4.64,4.12,3.64,3.51,6.56,6.74,6.95,6.15,3.9,3.43,7.91,7.85,6.24,5.5,8.49,7.21,5.82,5.82
1957-10,2.96,3.3,3.76,3.95,3.82,3.07,3.53,3.57,3.82,3.72,3.25,3.28,3.83,4.07,4,3.39,3.43,3.46,4.2,4.2,4.08,3.48,3.02,3.63,3.29,2.32,2.32,3.71,3.82,4.01,3.96,4.23,4.29,3.91,3.95,3.67,2.39,2.42,4.99,4.79,3.75,3.79,3.88,4.16,4.31,4.16,3.64,3.65,3.57,3.39,3.14,3.16,4.99,4.92,3.92,3.89,3.99,4.16,4.32,3.37,3.02,3.87,3.75,3.31,3.17,3.16,3.91,4.06,4.12,4.13,4.45,3.73,3.45,4.15,3.5,3.38,3.68,3.32,4.55,4.07,3.48,3.63,3.5,3.83,6.04,5.87,4.81,4.85,6.15,5.59,4.99,4.99
1957-11,1.95,1.95,1.95,1.94,1.97,1.93,1.95,1.95,1.93,2,2.17,1.94,2.23,2.27,1.87,1.68,1.64,2.08,2.61,2.61,2.24,1.75,1.87,1.76,1.73,1.49,1.46,1.81,1.97,2.41,2.38,2.53,2.67,2.22,2.07,1.92,1.53,1.54,2.98,2.8,1.86,1.87,1.88,2.4,2.63,2.49,2.21,1.97,1.96,1.97,1.95,1.96,2.98,2.91,1.95,1.88,1.93,2.13,2.59,2.05,1.81,1.84,2.18,2.59,2.02,1.96,1.89,1.97,2,2,2.16,1.87,1.75,2.24,2.94,2.78,2.41,2.05,2.12,1.97,1.72,3.03,3.27,2.62,3.2,3.39,3.06,3.24,4.58,3.83,2.96,2.96
1957-12,3.12,3.12,2.94,2.75,2.67,3.25,3.14,3.12,2.83,2.42,3.45,3.3,3.36,3.17,2.49,2.2,2.66,3.38,3.69,3.69,2.98,2.25,2.08,2.31,2.08,1.53,1.51,3.04,3.06,3.35,3.28,3.05,3.05,2.91,2.47,2.1,1.57,1.58,2.8,2.86,3.17,2.9,2.3,3.04,3.32,3.01,2.69,2.46,2.43,2.12,1.94,1.95,2.8,2.81,2.63,2.28,2.22,2.41,3.22,2.66,2.32,2.27,2.32,2.07,1.96,1.95,2.25,2.19,2.17,2.17,2.32,2.12,2,2.46,2.31,2.15,2.34,2.07,2.21,2.14,1.95,2.6,2.71,2.55,3.47,3.46,2.82,2.74,3.95,3.47,2.93,2.93
1958-01,1.18,1.18,1.18,1.18,1.33,1.37,1.18,1.18,1.24,1.4,2.22,1.33,1.48,1.64,1.4,1.3,1.63,1.81,1.89,1.89,1.71,1.45,1.31,1.4,1.46,1.11,1.12,1.81,1.97,1.97,1.97,2.19,1.97,2,2,1.79,1.12,1.12,2.32,2.24,1.85,2.02,2.42,1.82,1.57,2.11,1.85,2.11,2.1,1.53,1.19,1.19,2.32,2.3,2.22,2.42,2.2,1.83,1.55,1.62,1.64,2.17,2.2,1.76,1.25,1.19,2.39,2.03,1.89,1.92,2.32,1.71,1.53,2.19,2.06,2.02,1.86,1.37,2.44,1.82,1.19,1.81,1.93,1.98,2.9,2.74,2.19,1.99,2.65,2.54,2.45,2.45
1958-02,1.43,1.43,1.51,1.59,1.58,1.77,1.48,1.43,1.5,1.51,2.33,1.87,1.53,1.58,1.48,1.45,2.44,1.96,1.67,1.67,1.63,1.68,1.57,1.56,1.83,1.62,1.66,1.92,1.91,2.04,2.14,2.07,2.03,2.08,2.42,2.36,1.6,1.59,3.43,3.17,1.78,1.97,2.38,1.49,0.99,1.38,1.97,2.05,2.02,1.77,1.47,1.47,3.43,3.34,2.25,2.39,2.17,1.69,1.03,1.66,1.82,2.25,2.34,2.13,1.54,1.47,2.36,2.01,1.87,1.9,2.26,2.17,1.92,2.46,2.45,2.37,2.07,1.61,2.37,2.44,2.58,2.35,2.35,2.19,2.9,2.88,2.66,2.42,2.84,2.89,2.95,2.95
1958-03,1.11,1.11,1.18,1.26,1.23,1.6,1.19,1.11,1.3,1.41,1.97,1.75,1.53,1.86,1.68,1.61,2.3,2.03,2.11,2.11,1.95,1.89,1.61,2.37,2.43,1.81,1.82,2.51,2.59,2.4,2.43,2.32,2.47,2.66,2.84,2.62,1.89,1.92,3.97,3.74,2.53,2.73,3.19,2.36,1.99,2.29,2.61,2.88,2.9,2.81,2.74,2.76,3.97,3.89,3.02,3.2,3,2.58,2.03,2.53,2.69,2.84,2.96,2.98,2.78,2.76,3.17,2.85,2.73,2.76,3.11,2.97,2.76,2.77,2.87,2.96,2.73,2.73,3.22,3.07,2.84,2.57,2.52,2.6,4.19,4.07,2.95,2.61,4.26,3.78,3.27,3.27
1958-04,4.25,4.25,4.09,3.91,3.49,4.53,4.29,4.25,4.01,3.83,5.01,4.6,3.92,3.89,4.39,4.01,5.92,4.58,3.52,3.46,4.13,3.63,2.54,3.49,3.39,2.45,2.65,5.67,4.97,4.83,5,5.01,3.71,4.07,4.11,3.68,2.46,2.48,8.43,7.97,5.54,5.7,5.85,4.42,3.72,4.96,4,3.83,3.95,3.41,3.02,3.03,8.43,8.26,6.05,6.06,5.03,3.75,3.56,3.89,3.46,3.75,3.85,3.7,3.1,3.03,5.86,4.3,3.71,3.72,3.8,3.75,3.57,3.97,4.03,3.72,3.07,2.98,3.82,3.89,3.73,3.81,3.37,2.83,6.04,6.06,5.57,5.54,6.66,6.34,5.97,5.97
1958-05,5.17,5.17,5.24,5.16,4.54,5.09,4.49,4.51,4.71,4.61,5.5,5,4.42,4.97,5.19,4.59,6.02,5.31,5,4.88,5.14,4.11,3.42,4.18,3.85,2.46,2.83,6.02,5.39,5.19,4.68,5.23,3.92,4.81,4.8,4.22,2.46,2.49,8.46,8.46,6.91,4.81,4.9,5.16,5.03,5.37,4.35,4.6,4.76,3.84,3.22,3.24,8.46,8.42,5.65,4.81,4.7,4.57,4.88,5.29,4.31,4.53,4.63,4.27,3.34,3.24,4.79,4.62,4.56,4.61,5.28,4.92,4.41,4.47,4.52,4.63,4.02,3.41,5.48,5.04,4.52,3.96,3.86,4,6.61,6.8,4.8,4.06,8.45,7.11,5.58,5.58
1958-06,7.87,8.19,8.22,7.8,7.06,7.99,8.03,7.97,7.92,7.69,8.9,8.61,7.41,7.72,9.06,7.96,8.9,8.2,6.71,6.66,7.98,6.87,5.66,6.56,5.94,3.86,4.12,7.27,7.69,7.84,8.09,8.34,8.09,7.66,7.29,6.36,3.8,3.8,10.07,9.57,6.92,6.92,7.34,8.62,9.41,8.51,7.53,6.77,6.83,6.72,4.03,3.8,10.07,9.92,7.36,6.74,6.53,7.22,9.23,8.7,6.72,6.54,6.42,6.01,5.91,5.2,7.75,6.52,6.52,6.56,7.06,6.01,5.75,6.51,5.99,5.6,5.17,4.88,7.21,6.18,5.06,5.36,5.35,4.91,8.84,8.43,6.52,6.36,8.49,7.56,6.59,6.59
1958-07,7.7,8.51,8.51,8.02,6.38,8.54,8.56,8.52,7.89,7.24,9.15,8.87,8.49,8.31,8.07,7.27,9.28,8.9,8.48,8.46,8.43,7.87,8.17,8.5,6.58,4.06,4.39,7.24,8.59,9.34,10.72,9.71,8.3,9.46,8.92,7.49,3.99,3.99,9.85,9.36,6.79,7.8,9.85,9.75,10.38,9.84,8.7,9.06,9.31,8.61,4.26,3.99,9.85,9.7,8.93,10.11,9.08,8.31,10.11,10,8.02,7.5,7.22,5.45,4.93,4.77,9.97,8.31,7.67,7.78,9.14,9.14,7.37,6.91,5.4,4.98,4.89,4.88,9.55,9.86,10.06,8.34,5.53,4.91,11.83,11.22,8.22,6.96,10.53,8.91,7.29,7.29
1958-08,6.55,8.05,8.12,6.85,6.04,7.01,7.38,7.5,7,6.53,6.99,7.12,7.4,7.3,7.26,6.93,7.82,7.26,7.53,7.67,7.93,7.21,5.67,6.81,5.85,3.45,3.87,8.07,7.72,7.75,8.11,9.04,8,8.42,8.01,6.73,3.36,3.36,8.52,8.52,8.73,9.15,8.91,7.94,8.54,9.19,8.26,8.15,8.24,7.73,3.67,3.36,8.52,8.53,9,9.15,8.7,8.18,8.56,9.08,7.41,6.88,6.95,6.03,5.72,4.9,9.06,8.39,8.13,8.2,9.11,8.6,7.4,6.33,5.72,5.24,4.84,4.49,9.38,8.72,8.06,7.74,5.2,4.47,10.02,10.06,8.67,8.09,11.28,10.04,8.66,8.66
1958-09,5.26,6.47,6.54,6.04,5.52,5.54,5.93,5.99,5.88,5.65,5.92,5.94,5,4.82,6.03,5.11,5.51,5.27,3.78,3.73,4.96,4.65,3.95,4.54,4.25,2.78,3.14,5.27,4.97,4.93,4.98,4.89,4.93,5.31,5.36,4.79,2.71,2.7,6.16,6.16,5.66,5.01,5,4.44,3.86,4.77,4.73,4.51,4.56,3.53,2.66,2.66,6.16,6.15,5.28,5.01,4.69,4.18,3.78,4.06,3.87,4.31,4.11,3.07,2.7,2.66,4.94,4.46,4.28,4.33,4.9,4.38,3.9,4.21,3.52,3.21,3.05,2.76,5.08,4.47,3.88,3.65,3.61,3.24,5.38,5.2,4.32,3.77,5,4.96,4.93,4.93
1958-10,4.25,4.89,4.96,5.02,5.02,3.94,4.28,4.4,4.74,4.99,3.85,3.93,3.78,3.88,4.92,4.29,3.09,3.55,3.02,3.02,3.88,3.74,3.1,3.57,3.14,1.98,2.19,2.41,2.51,3.25,3.45,3.56,3.74,3.71,3.67,3.26,2.02,2.05,3.96,3.7,2.31,2.35,2.42,2.81,2.91,3.44,3.46,3.22,3.3,3.17,2.98,3,3.96,3.86,2.5,2.43,2.34,2.36,2.77,2.89,2.41,3.25,3.04,2.73,2.97,3,2.41,2.28,2.23,2.26,2.57,2.38,2.43,3.47,2.87,2.79,3.18,3.08,2.66,2.44,2.18,2.93,3.07,3.3,3.16,3.16,2.76,3,3.66,3.11,2.49,2.49
1958-11,2.83,2.83,3.15,3.48,3.41,3.24,2.9,2.83,3.22,3.31,3.52,3.36,2.76,2.97,3.41,3.14,2.79,3.25,2.66,2.66,3.04,3,2.81,3.17,2.81,1.78,1.79,2.59,2.71,2.84,2.97,3.48,3.19,3.44,3.35,2.95,1.78,1.77,2.71,2.69,2.6,2.69,2.91,2.89,2.91,3.52,3.14,2.94,3.04,2.29,1.73,1.73,2.71,2.71,2.79,2.91,2.59,2.34,2.78,2.86,2.47,2.59,2.56,2.06,1.76,1.73,2.85,2.36,2.17,2.17,2.15,1.86,2,2.51,2.27,2.19,2.1,1.83,2.15,1.92,1.63,2.14,2.23,2.18,2.92,2.85,2.48,2.29,2.93,2.84,2.75,2.75
1958-12,1.91,1.91,1.8,1.69,1.68,2.28,1.97,1.91,1.81,1.78,2.51,2.39,2.04,2.06,1.87,1.68,1.99,2.43,2.23,2.23,1.6,1.49,1.73,1.69,1.35,1.04,0.97,1.96,2.15,2.43,2.53,2.37,2.26,2.19,1.82,1.5,1.06,1.07,2.79,2.66,1.99,2.13,2.46,2.47,2.45,2.49,2.26,1.93,1.89,1.43,1.19,1.19,2.79,2.75,2.32,2.47,2.13,1.87,2.36,2.34,1.74,2.08,1.95,1.46,1.22,1.19,2.41,1.89,1.69,1.7,1.85,1.83,1.84,2.1,1.71,1.93,2.39,1.57,1.9,1.95,2.02,1.61,1.6,2.6,2.27,2.24,1.8,1.64,2.34,2.16,1.97,1.97
1959-01,1.92,2.15,2.15,2.15,1.99,1.84,2.13,2.15,2.15,1.75,1.82,2.11,2.15,2.15,1.71,0.93,1.82,2.05,2.15,2.15,1.82,1.33,1.3,1.31,1.11,1.07,0.77,2.04,2.18,2.17,2.13,1.96,2.09,1.85,1.6,1.38,1.24,1.23,3.21,3.03,2.09,2.21,2.48,2.3,2.04,1.91,1.88,1.51,1.46,1.32,1.25,1.25,3.21,3.15,2.4,2.49,2.26,1.98,1.87,1.71,1.65,1.49,1.52,1.41,1.27,1.25,2.45,2.09,1.95,1.94,1.82,1.74,1.63,1.45,1.49,1.68,1.87,1.45,1.78,1.78,1.73,1.44,1.39,1.96,2.27,2.23,1.75,1.47,2.26,2.15,2.04,2.04
1959-02,2.51,2.51,2.16,1.8,1.77,2.52,2.51,2.51,2.26,2.47,2.56,2.53,2.67,2.76,2.64,2.32,2.51,2.62,2.89,2.89,2.6,1.95,1.73,2.06,1.96,1.29,1.27,2.57,2.79,2.71,2.49,2.18,2.13,2.09,1.98,1.87,1.61,1.48,3.7,3.52,2.59,2.82,3.35,2.36,1.92,2.06,1.57,1,1.32,1.62,1.67,1.67,3.7,3.64,3.11,3.36,2.55,1.64,1.83,1.45,1.31,1.35,0.97,1.51,1.66,1.67,3.21,1.98,1.51,1.51,1.52,1.45,1.51,1.91,1.65,1.39,1.44,1.6,1.52,1.5,1.45,1.87,1.95,1.51,1.9,1.93,1.98,1.96,2.08,2.08,2.06,2.06
1959-03,4.86,4.86,4.85,4.84,4.79,5.19,4.91,4.86,5.06,5.24,5.61,5.29,4.99,5.39,5.8,5.34,5.75,5.39,5.17,5.17,4.66,4.56,4.05,4.78,5.01,3.73,2.37,5.14,5.31,5.55,5.7,5.9,5.31,5.75,5.55,5.44,4.07,3.51,6.33,6.12,4.99,5.36,6.2,5.77,5.81,5.98,4.52,5.09,5.18,4.24,3.56,3.56,6.33,6.26,5.79,6.22,5.24,4.09,4.17,3.67,3.64,4.23,4.32,3.66,3.57,3.56,6.04,4.54,3.97,4.03,4.77,4.38,4.05,3.78,3.51,3.39,3.16,3.42,4.99,4.56,4.15,3.35,3.2,2.97,5.17,4.94,3.5,3.25,4.88,4.26,3.62,3.62
1959-04,4.64,5.1,5.39,5.27,4.29,5.01,5.51,5.47,5.37,5.13,5.98,5.79,5.48,6.5,6.9,5.86,5.87,5.94,5.87,5.64,4.83,4.73,3.93,4.66,4.69,3.52,3.45,5.37,5.93,6.03,5.97,6.49,4.94,5.13,4.87,4.66,3.28,3.1,7.73,7.34,5.27,5.73,6.63,5.73,5.25,6.46,4.27,4.28,4.37,3.44,2.76,2.76,7.73,7.6,6.32,6.78,5.34,3.92,4.93,3.84,3.29,3.88,4.02,3.54,2.84,2.76,6.51,4.33,3.49,3.56,4.38,4.12,3.52,3.78,3.69,3.61,3.05,2.79,4.63,4.7,4.24,3.23,3.21,2.97,5.21,5.21,4.1,3.41,5.62,5.29,4.91,4.91
1959-05,5.1,3.83,3.61,5.01,4.93,6.11,6.09,5.72,5.4,5.01,7.16,6.85,5.66,5.47,5.76,5.04,6.92,6.6,5.22,5.16,4.15,4.07,4.9,4.97,4.67,4.18,4.18,6.85,6.59,6.36,5.79,5.41,4.99,5.18,5.02,4.97,4.59,4.19,9.24,9.24,8.49,7.74,7.55,6.32,5.76,5.48,4.19,4.78,4.7,4.77,4.69,4.28,9.24,9.22,8.09,7.74,6.36,4.96,5.64,3.85,3.4,4.63,4.74,4.62,4.57,3.87,7.45,5.41,4.63,4.69,5.39,4.71,4.33,4.58,4.51,4.1,3.26,2.75,5.6,5.9,6.57,5.73,3.89,2.84,7.9,7.94,6.67,5.88,8.74,7.61,6.37,6.37
1959-06,7.53,8.58,8.73,6.92,6.07,7.25,7.23,7.32,6.94,6.45,8.23,7.8,6.53,6.4,7.15,6.12,8.29,7.54,5.8,5.71,4.79,4.63,4.67,5.64,5.64,5.04,3.97,6.62,7.57,7.64,7.18,6.91,5.65,6.36,6.39,5.93,5.65,5.57,10.15,9.53,6.25,6.83,8.07,6.99,5.96,7.07,5.87,5.88,5.88,5.81,5.65,5.65,10.15,9.94,7.64,8.17,7.37,6.26,5.84,5.78,5.76,6.42,6.07,5.62,5.57,5.94,8.04,6.79,6.31,6.36,7.03,6.61,6.28,6.8,5.74,5.6,6.39,6.72,7.23,6.89,6.39,6.47,5.77,6.53,8.95,8.69,6.71,6.55,9.17,7.89,6.52,6.52
1959-07,7.32,7.86,7.37,7.24,6.65,8.27,7.57,7.48,7.06,6.15,8.55,8.18,7.49,6.9,6.67,5.99,7.82,7.87,7.13,6.2,5.59,5.64,4.47,5.84,5.89,5.2,4.49,7.4,6.58,6.53,6.58,6.15,5.75,6.85,6.8,6,5.6,5.54,9.65,9.65,8.53,7.1,7,6.64,6.47,6.17,5.5,6.57,6.69,6.16,5.58,5.6,9.65,9.62,7.69,7.1,7.12,7.15,6.54,5.12,5.37,6.54,6.14,5.25,5.07,4.98,7.1,7.14,7.15,7.17,7.36,7.02,6.81,6.63,5.3,4.71,4.46,4.23,7.42,7.44,7.24,7.13,4.84,4.2,9.56,9.59,7.89,7.36,10.92,9.47,7.85,7.85
1959-08,6.02,7.29,7.3,8.02,7.63,6.51,7.41,7.43,7.7,7.49,7.19,7.12,7.44,8.1,8.35,7.48,7.13,7.37,7.8,7.69,7.37,7.25,5.84,6.56,6.44,5.68,4.89,7.45,8.32,8.24,7.74,7.97,7.56,8.36,7.53,6.5,6.12,5.93,8.29,8.29,8.17,8.2,8.23,8.22,7.93,7.94,6.52,7.08,7.37,5.28,4.12,3.86,8.29,8.29,8.22,8.2,7.7,7.14,6.9,5.65,5.57,5.85,5.69,4.2,3.79,3.75,8.1,7.36,7.08,7.16,8.18,7.5,6.49,5.61,4.63,4.22,4,3.8,8.49,7.89,7.29,6.98,4.53,3.94,8.88,8.71,7.83,7.31,8.64,7.92,7.83,7.83
1959-09,6.6,7.71,7.77,7.57,6.39,7.05,7.18,7.22,6.93,5.94,7.91,7.38,7.15,6.85,6.73,6.15,6.74,7.72,8.02,7.08,6.23,6.11,4.77,5.63,5.66,4.75,3.61,6.93,8.52,8.57,8.19,7.23,6.35,6.56,6.5,5.82,5.4,5.2,8.12,8.12,7.62,7.1,7.35,8.1,7.74,7.27,5.94,5.72,5.81,4.45,3.57,3.33,8.12,8.11,7.34,7.1,6.67,6.49,7.56,6.1,5.38,5.25,5.13,3.99,3.3,3.23,7.01,6.37,6.13,6.2,7.08,6.61,5.18,4.85,4.33,4.3,3.98,3.42,7.35,7.52,6.22,3.93,3.9,4.05,8.58,8.3,5.67,4.3,8.35,7.81,7.25,7.25
1959-10,3.96,3.9,3.89,4.15,4.17,4.15,4.05,3.97,4,3.76,4.86,4.51,3.34,3.06,3.7,3.51,3.99,4.2,2.54,2.44,3.88,3.96,3.9,4.25,4.06,3.75,2.91,3.7,4.64,4.7,4.47,4.56,4.45,4.48,4.3,4.26,4.23,4.09,5.97,5.61,3.69,4,4.72,4.49,4.11,4.47,3.85,3.98,3.93,3.47,3.11,2.96,5.97,5.84,4.45,4.72,4.29,3.82,4.01,3.47,3.3,4.16,4.09,3.5,2.96,2.9,4.66,3.98,3.72,3.75,4.07,3.82,3.82,4.4,3.92,3.59,3.23,2.96,4.17,4.35,5,4.76,3.42,3.16,5.51,5.52,4.94,4.58,5.83,5.34,4.8,4.8
1959-11,2.67,2.67,2.7,2.74,2.68,3.23,2.76,2.67,2.77,2.71,3.63,3.4,2.87,3.04,2.98,2.95,3.06,3.4,3.14,3.14,3.01,2.94,2.64,2.14,2.5,2.36,1.68,2.51,3.04,3.1,2.77,2.53,3.62,3.18,3.03,2.83,2.75,2.65,3.65,3.45,2.43,2.58,2.95,2.7,2.19,2.36,2.96,2.8,2.79,2.35,2.06,1.97,3.65,3.58,2.8,2.92,2.77,2.48,2.19,2.45,2.46,2.47,2.61,2.28,1.96,1.93,2.9,2.65,2.56,2.59,2.95,2.75,2.41,2.24,2.43,2.66,2.64,2.14,3.06,2.87,2.56,2.25,2.19,2.73,4.39,4.14,2.74,2.31,4.01,3.59,3.16,3.16
1959-12,1.49,1.49,1.55,1.62,1.64,1.86,1.55,1.49,1.63,1.83,2.1,1.97,1.56,1.74,1.89,1.89,1.87,2.1,1.7,1.66,1.89,1.94,1.97,2.02,2.18,2.23,2.22,1.62,2.39,2.51,2.46,2.63,2.41,2.48,2.43,2.31,2.26,2.22,2.78,2.59,1.58,1.88,2.54,2.73,2.91,2.73,2.21,2.24,2.28,1.91,1.66,1.58,2.78,2.72,2.23,2.55,2.35,2.27,2.86,2.19,1.93,2.01,1.98,1.69,1.56,1.55,2.53,2.2,2.07,2.09,2.4,2.21,2.04,2.02,1.93,1.76,1.73,1.6,2.49,2.35,2.09,2.2,2.22,1.9,3.75,3.56,2.68,2.32,3.41,3.24,3.08,3.08
1960-01,1.05,0.96,0.96,0.96,0.93,0.99,1.07,1.01,1.03,0.97,0.97,1.11,1.13,1.12,1.11,1.12,0.97,1.35,1.17,1.13,1.26,1.66,1.58,1.42,1.33,1.14,0.91,1.76,2.09,2.01,1.74,2.12,2.45,1.87,1.56,1.35,1.26,1.25,2.22,2.17,1.93,2,2.16,2.15,2.15,2.09,1.86,1.71,1.65,1.4,1.3,1.31,2.22,2.21,2.09,2.17,1.82,1.56,2.09,1.57,1.32,1.61,1.75,1.67,1.35,1.31,2.11,1.57,1.37,1.39,1.64,1.5,1.39,1.6,1.71,1.75,1.62,1.38,1.72,1.58,1.38,1.48,1.5,1.6,2.41,2.33,2.09,1.64,2.11,2.37,2.66,2.66
1960-02,1.66,1.66,1.66,1.57,1.25,1.66,1.66,1.66,1.65,1.53,2.21,1.7,1.68,1.66,1.62,1.67,2.5,2.21,1.75,1.7,1.84,1.93,1.74,1.93,2.19,1.93,1.25,2.35,2.89,2.81,2.31,3.13,2.6,2.56,2.45,2.35,2.32,2.23,3.84,3.6,2.32,2.55,3.05,2.86,2.69,3.13,2.5,2.42,2.46,1.96,1.67,1.59,3.84,3.76,2.87,3.08,2.94,2.73,2.69,2.42,2.25,2.46,2.36,1.93,1.59,1.55,3.07,2.82,2.73,2.78,3.39,3.08,2.33,2.52,2.24,2.03,1.66,1.55,3.58,3.77,3.44,2.27,2.26,1.76,4.94,4.61,2.82,2.38,4.34,3.78,3.23,3.23
1960-03,3.12,3.12,3.12,3.12,2.75,3.12,3.12,3.12,3.12,2.8,4.24,3.21,3.12,3.18,2.58,2.15,4.83,3.87,3.37,3.44,3.19,2.39,2.66,2.86,2.96,3.11,3.11,4.84,3.72,3.49,3.58,3.56,2.92,3.46,2.95,3.04,3.14,3.11,6.53,6.26,4.84,4.83,4.58,3.62,3.6,3.59,2.58,2.76,2.77,2.7,2.59,2.52,6.53,6.43,4.94,4.79,4.01,3.11,2.92,2.32,2.3,2.76,2.79,2.68,2.51,2.49,4.63,3.46,3.02,3.03,3.22,2.89,2.62,2.73,2.64,2.57,2.39,2.44,3.27,3.43,3.33,2.43,2.42,2.29,4.47,4.35,3.08,2.57,4.47,4.07,3.65,3.65
1960-04,6.08,5.93,6.16,6.48,5.67,6.2,5.91,5.82,5.75,5.23,7.11,6.47,4.59,3.6,4.31,5.42,6.97,5.94,3.03,2.87,3.71,4.26,3.42,4.33,5.25,5.15,4.02,6.91,6.74,6.49,6.16,6.36,5.48,5.4,5.51,5.67,5.78,5.56,7.8,7.8,7.08,6.05,6.16,6.44,6.34,6.32,4.84,5.09,5.18,4.32,3.67,3.4,7.8,7.78,6.45,6.05,5.29,4.42,4.53,4.02,3.94,4.6,4.68,3.98,3.35,3.28,5.89,4.76,4.33,4.39,5.17,4.77,4.39,4.44,4.23,3.88,3.2,3.19,5.41,5.05,4.52,4.11,4.02,3.16,7.24,6.84,4.93,4.22,6.45,6.03,5.63,5.63
1960-05,5.91,4.88,4.74,5.51,4.92,6.59,6.3,6,5.57,4.77,7.83,7.33,6.19,5.83,5.66,4.84,7.51,7.65,6.88,5.37,5.07,4.52,3.96,5.13,5.73,5.3,3.93,7.63,7.49,6.94,5.2,6.26,5.9,6.29,5.78,5.89,6.07,5.96,8.52,8.38,7.67,7.63,7.51,6.68,5.8,6.19,5.13,5.4,5.64,5.71,6.05,6.07,8.52,8.47,7.65,7.52,6.36,5.17,5.71,4.75,4.31,4.76,4.94,5.22,5.31,4.98,7.28,5.56,4.9,4.98,5.99,5.5,4.84,4.88,5.05,4.64,3.94,3.41,6.29,5.8,5.21,5.16,4.07,3.42,7.56,7.5,6.27,5.97,8.22,7.35,6.38,6.38
1960-06,6.51,6.74,7.14,7.34,6.72,7.07,7.1,6.93,7.18,7.01,8.85,8.31,6.3,6.64,8.17,7.67,8.04,8.32,5.62,5.42,6.71,6.74,5.21,6.79,7.06,6.2,4.77,9.27,10.14,9.91,9.21,9.84,8.28,7.72,7.53,7.16,7.01,6.9,9.81,9.77,9.59,9.72,10.06,9.47,8.61,9.62,7.58,7.54,7.51,7.28,6.98,7.01,9.81,9.8,9.86,10.03,9.01,7.94,8.39,6.98,6.46,7.3,7.12,6.3,6.11,5.77,9.83,8.3,7.72,7.81,8.89,8.13,7.35,7.29,6.22,5.44,4.62,4.04,9.22,8.48,7.78,7.68,5.15,4.08,9.45,9.33,7.61,6.9,10.11,8.79,7.35,7.35
1960-07,6.31,7.82,8.06,7.39,6.4,5.71,5.49,5.78,6.48,6.59,5.76,5.48,5.46,7.06,7.67,7.12,5.83,7.25,7.29,7.61,7.2,6.55,4.85,6.5,7.24,6.8,5.5,6.36,8.18,8.16,7.75,8.93,6.85,7.7,7.56,7.52,7.53,7.43,7.66,7.66,7.39,7.31,7.47,8.52,9.04,8.85,5.93,7.15,7.31,7.34,7.46,7.53,7.66,7.66,7.39,7.31,7.15,7.41,8.89,5.78,4.98,6.56,6.32,5.43,5.26,5.42,7.28,7.04,6.95,7.03,8.04,6.98,6.36,6.42,5.41,4.75,3.94,3.44,8.35,8.59,8.75,7.71,4.84,3.52,10.2,10.34,8.75,7.72,11.66,10.12,8.4,8.4
1960-08,8.16,8.25,8.41,8.22,7.42,7.7,6.55,6.71,7.05,6.71,7.59,6.96,6.48,6.61,6.67,6.68,6.71,7.52,7.85,7.3,7.08,7.01,6.99,6.26,6.09,5.77,4.93,6.95,8.63,8.66,8.14,7.21,6.48,7.35,6.59,6.23,6.25,6,8.18,8.18,7.43,6.52,6.88,8.26,7.75,7.11,5.94,6.54,6.98,4.63,3.31,2.92,8.18,8.16,6.9,6.52,6.42,6.3,6.21,5.62,5.51,5.57,5.16,3.42,2.82,2.76,6.5,6.35,6.29,6.3,6.37,5.25,4.91,5.54,4.17,3.68,3.38,2.91,6.39,5.41,4.33,4.6,3.95,3.48,8.15,8.12,6.71,6.64,9.26,8.26,7.14,7.14
1960-09,6.21,5.5,5.55,5.93,5.48,5.95,4.8,4.86,5.24,5.16,5.66,4.96,4.45,4.64,5.45,5.35,5.89,5.37,4.15,4.01,4.93,5.22,4.5,5.1,5,4.4,4.13,6.38,7.43,7.28,6.93,7.54,7.15,6.99,6.61,5.26,4.55,4.51,7.71,7.71,6.95,6.01,6.25,7.15,7.32,7.54,6.36,6.71,6.91,5.04,4.19,4.14,7.71,7.69,6.4,6.01,5.86,5.7,5.9,5.56,5.39,5.81,5.55,4.14,4.12,4.12,5.98,5.76,5.68,5.72,6.26,5.95,5.57,5.2,4.14,4.02,3.86,4.03,6.42,6.08,5.74,4,3.67,3.71,6.65,6.36,4.58,3.85,6.01,5.59,5.19,5.19
1960-10,4.11,3.71,3.73,3.67,3.61,4.15,3.49,3.45,3.54,3.53,4.26,4.05,3.42,3.5,3.53,3.51,4.09,4.56,4.69,4.32,3.73,3.5,3.12,3.48,3.77,3.27,2.35,4.37,5.38,5.36,5.03,5.21,4.13,4.54,4.46,4.04,3.79,3.68,5.39,5.39,5.22,5.15,5.28,5.22,5.15,5.23,4.17,4.21,4.27,3.55,3.14,3.06,5.39,5.39,5.3,4.24,4.09,4.09,4.2,4.08,3.87,3.99,3.69,2.76,2.99,3.02,4.56,4.09,4.09,4.08,4.01,4.06,3.9,3.88,3,2.89,3.67,3.27,3.99,4.16,4.13,3.49,3.37,3.92,5.84,5.54,3.87,3.47,5.36,4.78,4.19,4.19
1960-11,3.05,3.05,3.16,3.27,3.25,3.46,3.11,3.05,3.17,3.19,3.81,3.58,3.23,3.33,3.19,3.22,2.9,3.65,3.5,3.48,3.4,3.4,2.87,2.6,2.72,2.34,1.67,2.56,3.63,3.81,3.59,3.86,3.66,3.54,3.33,2.92,2.72,2.62,3.71,3.52,2.55,2.61,2.92,3.19,2.68,3.63,2.93,2.91,3.03,2.36,1.95,1.85,3.71,3.64,2.74,2.73,2.47,2.23,2.5,2.35,2.19,2.62,2.53,2.04,1.83,1.81,2.68,2.28,2.12,2.14,2.4,2.27,2.21,2.72,2.4,2.17,1.88,1.81,2.48,2.33,2.12,2.49,2.56,2.04,3.07,3.03,3.09,2.69,2.82,3.22,3.65,3.65
1960-12,2.32,2.32,1.62,0.9,0.96,2.32,2.32,2.32,1.61,1.45,2.29,2.3,2.29,2.01,1.66,1.71,1.49,2.16,2.23,2.24,1.98,2,1.67,1.32,1.49,1.36,0.86,1.25,1.92,2,1.71,1.35,2.66,1.86,1.51,1.55,1.64,1.58,2,1.88,1.24,1.24,1.66,1.84,1.59,1.28,1.97,1.59,1.59,1.39,1.27,1.22,2,1.96,1.35,1.23,1.22,1.31,1.57,1.61,1.54,1.7,1.57,1.37,1.22,1.2,1.49,1.22,1.22,1.22,1.21,1.35,1.53,1.82,1.57,1.64,1.53,1.3,1.21,1.32,1.74,1.46,1.45,1.62,2.02,2.01,1.78,1.53,2,2.04,2.09,2.09
1961-01,0.9,0.9,1.17,1.44,1.41,0.9,0.9,0.9,1.17,1.2,0.93,0.92,0.9,1.08,1.16,1.24,1.52,1.89,1.56,1.3,1.48,1.61,1.59,1.34,1.46,1.49,1.49,1.34,1.87,1.87,1.48,1.84,1.67,1.54,1.41,1.47,1.49,1.49,2.85,2.61,1.33,1.35,1.5,1.78,1.68,1.8,1.48,1.56,1.52,1.52,1.49,1.49,2.85,2.76,1.49,1.41,1.47,1.57,1.67,1.38,1.26,1.79,1.72,1.56,1.54,1.57,1.42,1.51,1.54,1.55,1.71,1.51,1.47,1.87,1.67,1.63,1.65,1.69,1.76,1.59,1.38,1.66,1.71,1.7,2.21,2.17,1.81,1.71,2.19,2.14,1.95,1.96
1961-02,1.11,1.11,1.35,1.59,1.59,1.94,1.24,1.11,1.43,1.65,2.61,2.18,1.13,1.52,1.68,1.67,2.2,2.5,2.17,2.12,1.82,1.68,1.58,1.79,1.76,1.6,1.2,2.19,2.41,2.46,2.52,2.89,2.71,2.63,2.3,1.87,1.83,1.81,4.13,3.82,2.21,2.46,2.91,2.23,1.88,2.75,2.35,2.46,2.46,2.15,2.01,2.03,4.13,4.02,2.82,3.02,2.73,2.24,1.83,1.92,1.95,2.56,2.46,2.14,2.05,2.04,2.97,2.51,2.33,2.35,2.61,2.4,2.33,2.62,2.32,2.11,1.92,1.99,2.69,2.57,2.31,2.38,2.39,1.97,4.08,4.01,2.78,2.39,4.07,3.8,2.92,2.87
1961-03,3.39,3.39,3.64,3.9,3.85,4.55,3.58,3.39,3.72,3.82,5.3,4.89,3.37,3.59,3.93,3.8,4.83,4.88,3.41,3.34,3.48,3.22,2.8,3.92,3.86,3.35,2.74,4.77,5.13,5.05,4.9,5.19,4.1,4.63,4.45,3.77,3.69,3.61,6.72,6.72,5.95,5.08,5.09,4.64,4.08,5.04,3.76,4.24,4.4,3.55,3.14,3.07,6.72,6.7,5.46,5.08,4.41,3.68,3.9,3.42,3.23,3.76,3.74,3.23,3.06,3.04,4.94,3.94,3.56,3.61,4.18,3.88,3.64,3.73,3.38,3.04,2.57,2.86,4.35,4.12,3.71,3.7,2.74,2.26,6.23,6.27,5.4,4.17,7.13,6.71,5.28,5.14
1961-04,5.39,5.32,5.29,5.29,4.59,5.59,5.37,5.27,5.15,4.82,6.5,6.06,5.29,5.55,5.62,4.9,6.48,6.68,6.69,6.2,5.19,4.38,3.61,4.92,5.09,4.72,3.94,6.78,7.55,7.41,6.75,7.38,5.47,5.55,5.44,5.17,5.15,5.04,8.23,8.23,8.02,7.28,7.25,7.12,6.68,7.25,5.03,5.11,5.21,4.66,4.39,4.29,8.23,8.23,8,5.13,4.74,5.17,6.42,4.9,4.35,5.07,4.84,4.35,4.26,4.25,5.99,4.74,4.74,4.79,5.46,5.11,4.88,4.55,4.08,4.03,3.53,4,5.66,5.38,4.94,3.56,3.3,3.15,7.47,7.33,4.8,3.59,9.01,7.28,5.79,5.93
1961-05,7.63,6.88,5.67,5.03,4.79,7.26,6.31,6.28,5.43,4.84,7.05,6.51,6.28,5.35,4.98,4.73,7.67,6.96,6.99,5.87,5.24,5.04,5.09,4.72,5.25,5.21,3.8,7.77,7.68,7.44,6.61,6.59,4.9,5.84,5.54,5.93,6,5.83,9.03,8.82,7.72,7.72,7.55,6.98,6.29,6.52,4.87,5.8,6.1,5.38,5.01,4.88,9.03,8.97,7.89,7.06,6.27,6.23,6.24,4.96,4.52,5.14,5.26,5.09,4.85,4.82,7.23,6.23,6.23,6.23,6.23,5.07,5,5.14,5.12,4.75,4.21,4.59,7.71,8.47,8.25,7.06,4.18,3.75,8.53,8.63,8.21,5.68,9.14,8.54,6.59,6.37
1961-06,7.4,7.26,7.33,6.98,6,7.29,6.53,6.55,6.21,5.22,7.58,7.01,5.03,4.22,5.27,5.19,7.66,6.46,3.25,3.07,4.41,4.97,5.32,6.09,4.11,3.68,3.81,6.44,7.32,7.03,5.75,6.16,4.79,5.83,5.87,3.89,3.6,3.66,9.6,9.05,6.16,6.16,6.93,7.3,6.28,6.27,5.07,5.43,5.38,4.67,4.37,4.47,9.6,9.43,6.65,6.41,6.71,6.72,6.25,5.1,5.13,5.79,5.61,4.94,4.55,4.51,7.69,6.72,6.72,6.72,6.56,5.79,5.84,5.91,5.2,4.65,4.19,4.36,7.55,6.43,5.99,5.97,4.12,3.8,8.85,8.87,7.78,5.82,9.82,9.15,6.94,6.71
1961-07,8.51,8.68,8.84,7.86,7.04,8.16,6.94,7.15,7.11,6.52,8.83,6.42,5.71,5.28,6.56,6.17,8.11,5.87,4.18,4.03,5.46,5.93,4.43,6.27,5.99,5.15,4.48,7.25,7.67,7.42,6.64,7.3,5.01,6.6,6.93,5.7,5.53,5.41,9.21,8.87,7.07,7.07,7.4,7.54,7.21,7.33,4.74,6.1,6.37,5.07,4.44,4.3,9.21,9.11,7.37,6.89,6.68,6.67,6.08,4.29,4.36,5.13,5.5,4.72,4.29,4.24,7.55,6.67,6.67,6.67,6.63,6.45,5.96,5.65,4.91,4.34,3.64,3.99,8.43,7.47,6.9,6.46,3.78,3.09,10.27,10.21,8.95,5.93,10.84,10.02,7.45,7.15
1961-08,6.98,7.45,7.51,6.88,6.03,6.7,6.79,6.91,6.73,6.24,6.72,6.43,6.82,7.12,7.22,6.48,6.96,6.83,7.4,7.42,6.97,6.6,5.36,6.5,6.19,5.13,4.09,7.41,8.11,8.04,7.62,7.86,6.71,7.42,7.07,6.15,5.72,5.58,7.6,7.6,7.55,7.82,7.92,7.85,7.76,7.87,6.63,6.79,7.03,5.66,4.85,4.74,7.6,7.6,7.51,6.39,6.24,6.24,6.48,6.51,6.41,6.58,6.16,5.06,4.72,4.69,6.73,6.24,6.24,6.24,6.24,6.28,6.42,6.63,5.48,4.5,3.55,4.27,7.41,6.6,6.21,6.31,4.01,2.79,8.72,8.28,6.36,5.8,8.73,7.38,6.17,5.93
1961-09,6.54,6.65,6.7,5.89,5.09,6.25,6.09,6.2,5.79,5.05,5.91,5.69,5.2,4.81,5.71,5.01,5.56,5.54,4.03,3.89,4.63,4.58,4.4,5.57,5.99,5.03,3.61,5.95,7.15,6.87,6.03,6.74,5.87,7.11,6.54,6.25,5.83,5.64,6.79,6.79,6.63,6.92,7.15,7.04,6.6,6.8,5.48,6.39,6.6,5.43,4.51,4.33,6.79,6.79,6.77,6.51,6.48,6.48,6.12,4.89,4.67,5.68,5.45,4.2,4.25,4.26,6.59,6.48,6.48,6.48,6.41,5.73,4.49,4.75,4.32,3.61,3.34,3.96,7.23,6.61,6.23,5.33,3.27,2.82,8.06,7.39,5.08,4.53,6.99,5.84,5.14,5.82
1961-10,5.93,5.88,5.92,6.01,5.73,5.76,5.4,5.46,5.59,4.74,5.82,5.35,4.68,4.39,5.1,4.45,5.19,5.18,3.79,3.68,4.27,4.27,4.21,3.96,4.09,2.66,2.32,4.05,5.89,6.03,5.2,5.15,4.77,4.77,4.6,4.4,3.76,3.13,6.27,5.88,3.82,3.82,5.22,4.95,3.58,5.01,4.65,4.35,4.51,4.16,3.9,3.88,6.27,6.15,4.17,4.34,4.97,4.62,3.53,3.63,3.51,4.16,4.12,4.01,3.89,3.88,5.4,5,5,5,4.81,3.2,3.06,3.6,3.93,3.89,3.63,3.78,6.33,6.5,4.54,3.5,3.54,3.46,6.96,6.48,4.57,3.74,5.8,5.38,4.8,3.91
1961-11,1.43,1.43,1.83,2.24,2.22,1.46,1.43,1.43,1.95,2.29,1.86,1.47,1.83,2.3,2.36,2.43,2.07,1.95,2.41,2.4,2.53,2.74,2.76,2.47,2.28,1.83,1.53,1.95,2.52,2.63,2.52,2.43,2.81,2.77,2.6,2.34,2,1.98,2.58,2.47,1.88,1.88,2.34,2.54,2.42,2.42,2.68,2.52,2.59,2.31,2.09,2.1,2.58,2.55,1.98,2.19,2.55,2.53,2.43,2.58,2.57,2.35,2.35,2.29,2.13,2.11,2.55,2.57,2.57,2.57,2.55,2.5,2.33,2.31,2.35,2.46,2.63,2.27,3.09,2.74,2.56,2.34,2.3,2.7,3.65,3.49,2.76,2.39,3.45,3.22,3.01,2.92
1961-12,2.17,2.17,2.17,2.06,1.13,1.9,2.13,2.17,1.91,1.14,1.69,1.81,2.02,1.58,1.17,1.26,1.61,1.79,1.82,1.81,1.65,1.7,1.67,1.56,1.81,1.93,1.88,1.58,2.02,1.9,1.24,2.15,1.8,1.97,1.84,1.94,1.95,1.92,2.56,2.4,1.58,1.58,1.87,2.12,2.15,2.23,1.91,1.96,1.96,1.72,1.53,1.47,2.56,2.51,1.72,1.65,1.74,1.85,2.16,1.98,1.85,2.03,2.07,1.84,1.49,1.45,2.02,1.74,1.74,1.74,1.8,1.78,1.74,1.95,2.12,2.06,2,1.6,2.21,1.91,1.76,2.11,2.2,2.15,2.72,2.71,2.61,2.29,2.71,2.82,2.86,2.68
1962-01,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.8,0.86,1.05,1.33,1.75,1.85,1.72,1.91,2.06,2.06,2.06,2.08,1.71,1.63,1.61,1.45,1.57,1.57,1.87,1.89,1.9,1.95,2.45,1.98,1.61,1.46,1.34,1.57,1.55,2.32,2.25,1.87,1.87,1.95,2.1,2.25,2.43,2.05,1.62,1.56,1.29,1.25,1.21,2.32,2.3,1.93,2.03,2.13,2.16,2.25,2.03,1.83,1.67,1.9,1.77,1.25,1.19,2.13,2.13,2.13,2.13,2.1,1.95,1.57,1.72,2.21,2.1,1.92,1.38,2.52,2.25,2.05,2.24,2.32,2.15,3.38,3.29,2.55,2.39,3.99,3.34,2.8,2.55
1962-02,2.74,2.74,2.63,2.52,2.51,3.2,2.81,2.74,2.87,3.14,3.73,3.35,3.23,3.74,3.73,3.63,3.4,3.66,3.91,3.91,3.25,2.29,2.14,2.61,2.66,2.56,2.16,4.31,3.84,3.32,3.41,3.92,3.31,3.48,3.04,2.72,2.57,2.56,4.12,4.18,4.51,4.51,4.07,3.98,4.45,3.96,2.89,3.24,3.22,2.65,2.37,2.34,4.12,4.14,4.42,4.02,3.71,3.88,4.46,2.98,2.55,3.45,3.25,2.62,2.36,2.33,3.83,3.71,3.71,3.71,3.76,3.66,3.28,3.26,2.83,2.39,2,2.19,4.3,3.99,3.77,2.96,2.79,1.97,5.26,5.16,3.46,2.97,5.67,4.82,4.12,3.91
1962-03,4.52,4.52,4.52,4.25,3.39,4.48,4.51,4.52,4.57,4.4,4.64,4.49,4.99,5.19,4.72,3.74,4.69,4.92,5.65,5.65,4.79,3.67,3.73,3.72,3.43,2.92,2.33,5.39,5.12,4.82,4.84,4.73,3.42,4.59,3.87,3.35,3.25,3.2,5.15,5.21,5.52,5.52,5.12,5.32,5.68,4.81,3.44,4.15,4.15,3.44,3.22,3.21,5.15,5.17,5.42,4.96,4.6,4.85,5.68,3.89,3.29,4.47,4.23,3.49,3.24,3.21,4.74,4.6,4.6,4.6,4.74,3.54,3.35,3.94,3.85,3.36,3.11,3.15,6.36,6.52,4.74,3.97,4.02,3.2,7.02,6.92,4.84,4.24,7.1,6.24,5.56,5.15
1962-04,5.01,5.01,5.16,5.29,4.37,4.87,4.99,5.01,4.95,4.45,5.35,4.83,5.21,5.42,5.41,3.82,5.54,5.12,5.48,5.48,4.85,3.4,3.3,4,3.96,3.97,3.17,7.18,6.3,5.4,5.5,5.81,3.13,4.22,4.1,3.94,4.42,4.32,8.44,8.29,7.48,7.47,6.45,6.36,7.03,6,3.64,4.57,4.63,3.92,3.86,3.78,8.44,8.39,7.43,6.09,5.21,5.62,6.98,4.51,3.62,4.66,4.6,4.06,3.78,3.75,5.75,5.21,5.21,5.21,5.34,5.1,4.2,4.25,4.25,3.84,3.14,3.52,6.02,5.66,5.36,4.3,4.14,3.06,7.18,7.07,5.06,4.39,7.98,7.02,6.21,6.14
1962-05,7.48,8.06,8.12,7.74,6.66,7.84,7.39,7.49,7.25,6.53,7.89,7.24,7.3,7.25,7.31,6.17,8.04,7.29,7.16,7.16,6.86,5.53,4.44,6.09,6,5.37,4.69,9.82,8.84,7.86,7.93,7.85,5.51,6.95,6.83,6.01,5.75,5.68,9.56,9.65,10.14,10.13,8.68,8.83,9.54,7.98,5.2,6.5,6.78,5.88,5.47,5.44,9.56,9.59,9.85,7.93,6.53,7.19,9.39,6.01,4.86,5.72,5.68,5.12,5.39,5.42,7.17,6.53,6.53,6.53,6.64,6.64,6.41,6.03,5.14,4.41,3.88,4.93,7.72,7.1,6.7,5.68,5.45,3.74,9.63,9.42,6.17,5.6,10.3,8.37,6.74,6.89
1962-06,7.23,6.56,6.51,6.41,5.4,7.87,6.82,6.72,6.2,5.34,7.97,7.31,6.56,6.26,6.09,4.71,8.57,7.21,6.3,6.3,6.16,5.34,3.8,5.03,5.63,5.85,4.43,10.02,8.96,7.97,7.97,7.27,4.81,5.59,5.47,5.65,6.65,6.43,10.42,10.39,10.26,10.24,8.71,8.7,9.2,7.43,4.9,5.79,5.63,5.04,4.86,4.62,10.42,10.41,10.02,7.86,6.34,6.97,9.06,5.72,4.48,6.3,5.98,4.57,4.52,4.52,7.12,6.34,6.34,6.34,6.37,6.06,5.15,5.64,5.16,4.07,3.47,4.16,7.53,6.82,6.32,5.82,5.78,3.62,9.69,9.46,6.64,6.01,10.15,8.68,7.46,7.09
1962-07,8.07,8.1,8.17,8.2,7.53,7.66,7.26,7.41,7.65,7.39,6.93,6.85,6.85,7.04,8.05,6.06,6.17,6.46,6.22,6.18,5.97,5.48,4.64,6.3,6.98,6.63,5.65,8.55,8.01,7.29,7.38,7.22,5.66,7.59,7.39,7.24,7.18,7.08,7.86,8.06,9.1,9.1,8.71,8.63,9.44,8.54,6.74,8.25,8.39,7.18,6.73,6.67,7.86,7.92,8.96,8.9,8.78,8.96,9.53,7.89,7.35,8.13,7.6,6.03,6.59,6.65,8.72,8.78,8.78,8.78,8.49,8.27,8.28,8.32,6.71,4.98,4.45,5.96,10.08,8.95,8.27,8.26,8.24,4.7,13.37,11.85,8.78,8.41,12.33,9.44,9.27,8.87
1962-08,8.57,6.58,6.39,8.69,8.48,9.03,8.08,7.92,8.36,8.19,8.36,7.91,7.85,8.24,9.26,7,7.56,7.67,7.46,7.35,6.12,5.1,6.49,6.91,7.36,6.93,5.59,10.49,9.72,8.75,8.75,7.84,5.91,8.05,7.76,7.6,7.68,7.54,9.44,9.71,11.14,11.13,9.93,9.95,10.75,9.55,7.3,9.14,9.32,7.64,7.16,7.09,9.44,9.52,10.79,9.46,8.4,8.93,10.69,8.66,7.92,8.71,8.25,6.53,7,7.06,8.76,8.4,8.4,8.4,8.7,8.76,8.73,8.34,6.48,5.63,5.4,6.55,10.33,10.71,9.29,6.76,6.55,5.15,11.05,10.26,7.78,6.78,10.92,9.03,8.55,8.74
1962-09,5.4,5.01,5.04,4.64,4.2,5.24,4.6,4.65,4.36,3.82,4.93,4.57,4.27,3.85,3.74,3.29,4.84,4.32,3.8,3.7,2.57,3.16,3.74,4.67,4.57,4.45,3.08,5.76,4.92,4.12,4.29,4.52,4.1,5.19,4.94,4.76,5.22,5.06,5.67,5.71,5.94,5.94,5.59,5.76,6.82,6.3,4.95,5.62,5.7,4.61,4.34,4.23,5.67,5.68,5.9,5.84,5.77,6.03,6.89,5.46,4.83,5.42,5.15,4.11,4.17,4.18,5.78,5.77,5.77,5.77,5.69,5.39,4.7,5.04,4.69,3.67,3.44,3.94,6.39,5.92,5.59,5.62,5.67,3.72,7.8,7.37,6.25,5.8,8,6.36,6.72,6.87
1962-10,5.24,5.47,4.71,4.23,4.21,5.5,5.13,5.18,4.67,4.4,5.02,4.78,4.84,4.52,4.57,3.85,3.99,4.46,4.37,4.38,4.41,3.59,3.25,4.17,4.29,3.49,2.93,4.87,4.9,4.81,4.88,4.97,4.28,4.6,4.8,4.49,3.8,3.76,5.01,5.02,5.1,5.1,5.16,5.52,5.95,5.34,4.28,4.86,4.99,4.4,3.93,3.95,5.01,5.01,5.11,5.31,5.44,5.57,5.99,4.65,4.16,4.85,4.79,4.34,4,3.96,5.36,5.44,5.44,5.44,5.47,5.31,4.8,4.92,4.77,4.12,3.76,3.86,6.31,5.8,5.45,5.21,5.19,3.9,7.83,7.49,6.14,5.33,7.16,6.54,6.25,5.95
1962-11,3.12,3.12,3.03,2.94,2.86,3.13,3.12,3.12,3,2.74,3.17,3.12,3.01,2.91,2.91,2.45,2.82,2.99,2.86,2.82,2.35,2.09,2.26,2.31,2.37,2.16,1.7,3.17,3.25,3.29,3.27,2.96,2.63,2.74,2.6,2.45,2.42,2.38,3.81,3.72,3.26,3.26,3.15,3.45,3.59,3.47,2.89,2.82,2.78,2.46,2.34,2.33,3.81,3.78,3.29,3.01,2.86,3.02,3.53,3.12,2.97,3.34,3.18,2.81,2.38,2.33,2.99,2.86,2.86,2.86,2.85,2.92,3.12,3.35,3.17,2.87,2.6,2.38,3.46,3.08,2.86,3.16,3.2,2.71,4.61,4.46,3.87,3.35,4.44,4.13,4.26,3.93
1962-12,1.71,1.71,1.62,1.52,1.54,1.71,1.71,1.71,1.66,1.75,1.78,1.88,2.09,2.24,1.84,1.6,1.82,2.41,2.61,2.61,2.13,1.68,1.87,1.47,1.69,1.79,1.52,1.87,1.86,1.84,1.9,2.33,2.19,1.87,1.87,1.91,1.8,1.8,2.23,2.17,1.88,1.88,1.78,2.11,2.36,2.35,2.12,1.89,1.86,1.89,1.84,1.85,2.23,2.21,1.9,1.7,1.58,1.75,2.3,2.09,1.95,2.67,2.28,1.9,1.85,1.85,1.67,1.58,1.58,1.58,1.57,1.6,1.67,2.21,2,1.81,1.89,1.85,2.01,1.74,1.58,1.75,1.78,1.72,2.84,2.75,2.23,1.84,2.66,2.42,2.27,2.16
1963-01,0.77,0.77,0.77,0.77,0.77,0.93,0.77,0.77,0.77,0.8,1.66,0.8,0.77,0.89,1.11,1.08,1.33,1.34,1.61,1.56,1.41,1.23,1.16,1.62,1.61,1.4,1.4,1.41,1.97,2.12,2.12,1.92,1.76,1.75,1.7,1.61,1.4,1.41,2.78,2.78,2.6,2.2,2.41,2.6,2.87,2.35,2.02,1.67,1.66,1.6,1.53,1.55,2.78,2.78,2.78,2.88,2.96,2.96,2.96,2.31,2.03,1.93,1.63,1.35,1.53,1.56,2.78,2.8,2.96,2.99,2.68,1.92,1.88,1.92,1.46,1.32,1.5,1.56,3.04,2.89,2.27,1.71,1.69,1.61,3.05,2.94,2.3,1.8,3.15,2.61,2.6,2.55
1963-02,2.46,2.46,2.43,2.4,2.52,2.28,2.43,2.46,2.43,3.14,2.2,2.24,2.84,3.15,2.63,1.57,2.48,2.64,3.37,3.28,2,1.24,1.38,2.02,2.38,2.39,2.35,3.41,2.94,2.43,2.54,2.94,2.2,2.3,2.57,2.39,2.41,2.39,3.59,3.59,3.59,3.59,3.4,3.14,3.62,3.6,2.35,2.48,2.67,2.45,2.07,2.03,3.59,3.59,3.59,3.59,3.61,3.69,3.69,2.52,2.21,2.9,2.75,2.23,2.03,2.01,3.59,3.59,3.62,3.69,2.98,2.79,2.89,3.01,2.56,2.18,1.84,1.93,3.42,2.99,2.71,2.67,2.65,1.91,4.86,4.54,3.56,2.87,4.46,3.95,4.14,3.43
1963-03,5.78,5.78,5.73,5.68,5.5,5.21,5.69,5.78,5.63,5.04,5.07,5.05,6.07,5.96,5.3,4.02,5.15,5.44,6.47,6.27,3.63,3.1,3.55,5.03,4.68,4.26,3.8,6.47,5.76,5,5.08,4.86,3.68,4.83,5.1,4.51,4.77,4.72,6.6,6.62,6.73,6.73,6.51,6.51,7.43,6.12,3.65,4.59,4.93,4.54,3.89,3.78,6.6,6.61,6.72,6.73,6.89,7.18,7.34,4.42,3.17,4.79,4.61,3.74,3.72,3.73,6.72,6.86,6.91,6.91,6.87,5.06,4.4,4.46,3.58,3.05,2.63,3.36,6.42,4.96,4.63,3.45,3.18,2.32,7.07,6.58,4.68,3.46,6.91,5.67,5.45,5.32
1963-04,8.53,8.42,7.57,6.75,5.7,8.07,8.17,8.33,7.01,5.45,7.12,7,7.29,6.31,6.48,4.77,6.61,6.31,5.84,5.74,4.59,3.68,3.47,4.84,4.52,3.53,3.43,8.49,6.86,5.26,5.44,5.83,4.59,5.39,5.3,4.27,3.62,3.67,8.68,8.71,8.89,8.89,8.23,7.08,8.17,6.98,4.57,4.85,5.47,5.1,4.43,4.53,8.68,8.69,8.87,8.89,7.63,7.15,7.57,5.26,4.16,4.92,5.08,4.8,4.6,4.58,8.64,7.06,6.45,6.45,6.44,5.75,5.28,5.09,4.76,4.12,3.38,4.15,6.63,6.04,5.69,4.87,4.7,3.13,8.28,7.86,6.29,5.07,8.7,7.31,7.42,6.88
1963-05,7.33,7.68,7.76,6.6,5.27,7,6.67,6.91,6.44,5.54,5.84,5.69,6.04,5.89,6.89,5.31,6.24,5.33,4.98,4.91,4.21,3.53,3.62,4.82,4.86,4.33,4.04,7.61,6.31,5.09,5.15,5.03,4.61,4.96,5.05,4.73,4.67,4.72,8.45,8.35,7.84,7.84,7.27,5.97,6.48,5.91,4.46,4.85,5.1,5.21,5.4,5.5,8.45,8.42,7.9,7.84,7.14,6.63,6.62,4.79,4.09,5.17,5.24,5.37,5.52,5.54,7.86,6.94,6.64,6.64,6.61,5.35,5.18,5.52,5.46,4.4,3.78,4.96,6.57,5.36,4.92,5.98,6.19,3.69,8.26,7.56,6.12,6.14,7.47,6.26,5.65,5.59
1963-06,9.58,9.34,9.53,7.59,6.21,8.49,7.01,7.41,7.2,6.56,6.81,6.07,6.93,7.15,7.79,6.29,7.5,6.3,6.67,6.48,4.39,4.62,6.14,6.69,6.34,5.92,5.48,9.41,8.15,6.93,6.81,5.6,5.8,7.29,6.98,6.11,6.44,6.39,10.32,10.22,9.7,9.7,9,6.99,7.03,6.93,6.03,7.51,7.31,6.59,5.69,5.59,10.32,10.29,9.76,9.7,8.95,8.05,7.72,6.18,5.78,7.32,7.03,5.74,5.56,5.55,9.74,8.88,8.61,8.61,8.61,7.86,7.06,7.08,6.07,4.93,4.15,5.06,8.78,9.04,7.82,6.56,6.49,4.1,9.41,8.84,7.09,6.56,9.68,7.79,7.15,7.38
1963-07,10.29,11.08,11.23,10.48,9.02,10.66,9.98,9.8,9.75,8.96,12.26,12.51,9.85,10.19,10.27,7.75,10.3,11.88,10.21,9.97,7.04,6.26,4.58,6.69,7.18,5.26,4.97,10.54,9.89,9.18,9.23,8.81,7.85,9.14,8.54,7.18,5.58,5.6,9.86,10.01,10.81,10.81,10.57,10.4,11.17,10.48,8.41,9.59,8.91,7.72,5.83,5.87,9.86,9.91,10.72,10.81,11.33,11.61,11.52,8.72,7.54,8.71,7.86,5.75,5.84,5.88,10.7,11.52,11.76,11.76,11.69,8.78,8.29,8.21,6.29,4.78,3.95,5.26,10.91,8.36,7.84,7.44,7.28,4.06,11.93,10.75,7.86,7.33,10.76,8.6,7.75,7.98
1963-08,7.1,9.67,10.02,9.05,7.89,6.77,6.23,6.65,7.62,7.82,6.76,6.28,7.03,8.22,8.63,7.08,7.08,7.1,8.22,8.02,5.67,5.09,5.91,7.69,7.65,6.05,5.56,7.59,7.76,8.33,8.21,7.32,6.89,8.63,8.74,7.68,6.51,6.5,7.61,7.61,7.64,7.64,7.76,8.89,8.97,8.87,7.5,8.51,8.79,7.89,6.35,6.33,7.61,7.61,7.64,7.64,10.07,11.1,10.41,7.6,6.66,8.59,7.83,6.07,6.27,6.32,8.03,11.12,12.28,12.28,12.22,9.01,7.59,7.7,6.36,5.07,4.43,5.72,11.3,8.84,8.35,7.31,7.1,4.43,11.77,10.8,8.04,7.2,11.37,8.79,8.12,8.51
1963-09,5.83,6.59,6.7,5.93,4.93,5.96,5.36,5.56,5.57,5.12,5.11,4.94,5.62,6.03,6.29,4.9,4.98,5.22,5.93,5.93,5.2,3.5,4.46,5.39,5.82,4.66,4.2,5.77,6.05,6.22,6.28,6.55,4.98,6,6.2,6.01,5.21,5.17,6.31,6.25,5.92,5.92,6.05,6.55,6.75,6.55,5.17,6.27,6.31,5.67,4.53,4.44,6.31,6.29,5.96,5.92,7.33,7.95,7.58,5.73,5.2,7.21,6.21,4.43,4.39,4.4,6.23,7.93,8.6,8.6,8.55,6.27,6.01,6.54,5.13,3.9,3.23,4.01,7.78,5.79,5.48,5.74,5.74,3.38,8,7.49,6.14,5.78,7.21,6.38,6.02,6.06
1963-10,7.19,7.17,7.3,6.88,6.51,5.69,5.71,5.89,6.54,6.58,5.67,5.69,5.7,6.39,7.41,5.48,5.26,5.7,5.71,5.71,5.55,3.93,4.63,5.99,6.06,5.08,4.49,5.14,5.6,5.97,6.01,6.28,5.23,6.33,6.27,5.99,5.52,5.11,4.99,5.01,5.14,5.14,5.36,6.03,6.08,6.22,5.18,6.09,5.99,5.3,4.09,3.9,4.99,5,5.13,5.14,6.07,6.57,6.41,5.31,4.96,6.02,5.49,4.03,3.83,3.82,5.25,6.42,6.85,6.85,6.81,5.1,5.34,5.65,4.6,3.77,3.18,3.59,6.19,4.55,4.32,4.99,5.06,3.34,6.47,6.01,5.13,5.08,6.05,4.99,4.88,4.24
1963-11,3.88,3.88,3.85,3.81,3.68,3.88,3.88,3.88,3.91,3.69,3.87,3.9,3.93,4.04,4.13,3.36,3.7,3.98,3.99,3.99,3.54,2.61,3.2,3.47,3.75,3.01,2.72,3.62,3.47,3.32,3.43,4.14,3.55,3.84,4.04,3.79,3.37,3.3,3.44,3.47,3.62,3.62,3.67,4.16,4.68,4.16,3.1,3.79,3.78,3.24,2.27,2.12,3.44,3.45,3.6,3.62,4.16,4.61,4.67,3.32,2.75,3.97,3.74,2.71,2.13,2.06,3.66,4.29,4.51,4.51,4.51,3.83,3.09,3.48,3.44,3.13,2.55,2.16,4.59,4.68,3.78,3.45,3.48,2.78,4.88,4.67,3.95,3.59,4.57,3.99,4.18,3.94
1963-12,1.03,1.03,1.26,1.5,1.46,1.03,1.03,1.03,1.35,1.49,1.06,1.03,1.03,1.45,1.62,1.52,1.91,1.44,1.17,1.41,1.63,1.53,1.51,1.7,1.9,1.67,1.3,1.98,1.59,1.25,1.34,2.11,1.63,1.77,1.73,1.89,1.82,1.64,2.66,2.55,1.98,1.98,1.85,1.61,1.86,2.13,1.69,1.5,1.49,1.52,1.53,1.5,2.66,2.63,2.05,1.98,2.26,2.31,2.17,1.96,1.91,2.23,2.02,1.77,1.52,1.48,2.17,2.41,2.56,2.56,2.54,1.79,1.76,2.08,2.14,2.1,1.9,1.59,2.3,1.62,1.5,1.95,2.04,2.01,2.45,2.44,2.28,2.08,2.1,2.41,2.31,2.11
1964-01,0.76,0.76,0.76,0.97,2.74,1.87,0.94,0.76,0.76,2.57,2.7,2.24,1.89,2.81,3.04,2.43,2.17,2.92,3.48,3.48,3.54,2.53,2.04,1.91,2.23,1.89,1.63,3.43,3.2,2.85,2.95,3.71,2.66,2.28,2.29,2.42,1.99,1.85,3.24,3.32,3.73,3.73,3.59,3.4,3.78,3.78,2.85,2.41,2.27,1.96,1.57,1.51,3.24,3.26,3.68,3.73,3.75,3.84,3.84,3.53,3.07,3.2,2.62,1.79,1.52,1.49,3.63,3.73,3.73,3.36,2.75,2.43,2.57,2.66,1.99,1.93,1.72,1.49,2.31,2.31,2.32,1.76,1.61,1.64,2.89,2.96,2.5,1.76,3.28,2.95,2.79,2.56
1964-02,1.6,1.6,1.6,1.64,1.83,1.64,1.6,1.6,1.6,1.84,1.81,1.82,2.1,2.5,2.17,1.85,1.5,2.46,2.79,2.79,2.07,1.93,2.02,2.14,2.41,2.28,1.94,3.07,2.54,1.92,2.04,2.91,2.6,2.36,2.35,2.55,2.42,2.25,3.77,3.71,3.4,3.4,3.13,2.64,3.13,3.06,2.56,2.14,2.06,2.09,2.06,2.01,3.77,3.75,3.44,3.4,3.37,3.21,3.21,2.49,2.35,2.56,2.33,2.36,2.03,1.99,3.48,3.4,3.4,2.98,2.54,2.45,2.74,2.8,2.68,2.27,1.89,1.92,2.28,2.28,2.3,2.71,2.76,1.94,2.98,3.01,3.04,2.83,3.49,3.15,3.2,3.11
1964-03,3.8,3.8,3.99,4.19,4.12,4.22,3.87,3.8,4.29,4.58,4.8,4.37,4.79,5.64,5.33,5.32,4.74,5.16,6.17,6.17,5.7,4.86,4.21,3.92,3.74,3.36,2.66,5.07,5,4.9,5.01,5.69,4.63,4.25,3.72,3.64,3.88,3.47,5.92,5.79,5.12,5.12,5.19,5.79,6.36,5.81,4.71,3.83,3.64,3.41,3.24,3.16,5.92,5.88,5.2,5.12,5.37,6.48,6.49,5.74,4.46,4.33,3.89,3.2,3.13,3.12,5.28,5.12,5.12,5.16,4,3.39,3.9,4.04,3.35,3.21,3.17,3.12,3.01,3.01,3.06,3.26,3.24,3.24,4.62,4.89,4.65,3.52,5.77,5.19,5.49,5.22
1964-04,7.25,7.32,7.51,7.61,6.38,7.14,7.31,7.37,7.17,6.33,7.02,6.88,7.36,7.56,7.64,7.64,6.82,6.72,6.73,7,7.23,5.94,4.69,4.61,4.28,4,3.83,8.76,7.63,6.46,6.5,6.58,5,4.82,4.57,4.22,4.18,4.05,7.91,8.11,9.16,9.16,8.52,6.79,6.98,6.63,5.1,4.27,4.18,4.02,3.77,3.71,7.91,7.97,9.04,9.16,8.77,7.05,7.03,6.31,4.89,4.57,4.14,3.93,3.71,3.69,8.9,9.16,9.16,7.56,6.07,4.55,4.49,4.38,3.94,4.05,3.88,3.69,6.72,5.9,4.74,3.55,3.45,3.51,7.26,6.74,5.29,3.81,6.99,6.22,6.38,6.07
1964-05,7.63,7.72,7.49,7.15,6.39,7.31,7.64,7.79,7.06,6.11,6.87,6.54,7.76,6.88,6.52,5.83,6.73,6.2,6.31,6.12,6.58,5.45,4.81,4.75,4.85,4.46,4.14,8.73,7.25,5.75,5.89,6.66,5.17,4.75,4.78,4.85,4.72,4.53,8.82,8.87,9.12,9.12,8.43,6.89,7.57,6.82,5.41,4.46,4.71,4.7,4.54,4.52,8.82,8.83,9.09,9.12,8.42,7.87,7.82,6.9,5.18,4.67,4.44,4.6,4.52,4.51,8.96,8.24,7.94,7.94,7.89,5.47,5,5.01,4.84,4.66,4.58,4.51,6.76,4.71,4.73,5.09,5.16,5.11,6.25,5.8,5.47,5.2,7.24,5.65,5.62,5.77
1964-06,10.05,10.47,10.65,9.03,7.11,9.01,8.45,8.84,8.6,7.65,8.1,7.29,8.56,9.56,9.95,8.87,8.24,7.17,7.84,8.89,9.42,8.37,7.22,6.81,6.61,5.7,4.9,10.06,9.04,8.01,8.14,8.69,8.23,7.68,7.21,6.86,6.31,5.83,9.96,10.02,10.35,10.35,9.99,9.56,10.43,8.95,8.45,7.27,7.29,6.57,5.56,5.46,9.96,9.98,10.31,10.35,10.42,10.53,10.58,9.39,7.29,7,6.72,5.86,5.45,5.42,10.28,10.41,10.43,10.43,10.38,7.84,7.15,7.1,6.31,6.02,5.72,5.42,9.22,7.13,7.13,6.57,6.43,6.39,7.94,7.36,6.63,6.4,8.65,7.34,6.35,6.54
1964-07,10.31,12.04,12.22,10.55,9,9.32,10.34,10.72,10.4,9.68,8.8,8.93,10.48,11.3,11.61,10.76,8.72,8.51,9.46,10.49,11.25,10.65,9.88,9.36,8.6,6.14,5.66,10.87,10.27,9.55,9.71,10.77,10.28,10.18,9.75,8.66,6.42,6.17,9.7,9.96,11.31,11.31,11.04,10.76,11.49,10.93,10.17,8.93,9.56,8.3,6.21,6.18,9.7,9.78,11.15,11.31,11.92,12.18,12.01,10.78,8.8,8.39,7.55,5.82,6.12,6.17,11.08,12.18,12.47,12.47,12.4,9.29,8.5,8.03,5.86,5.27,5.7,6.17,10.98,8.4,8.41,6.49,6.03,5.95,9.8,9.31,7.78,6.29,10.59,8.83,8.53,8.86
1964-08,9.25,9.71,9.8,9,7.78,8.54,8.71,8.98,8.66,7.87,7.72,7.48,8.84,8.98,9.03,7.61,8.03,7.07,7.64,9.39,9.42,8.5,8.11,7.83,6.96,5.84,5.09,10.05,9.88,10.07,10.25,9.97,9.15,8.31,8.03,6.79,6.39,5.92,8.56,8.8,10.05,10.05,10.11,10.73,10.72,10.06,9.53,8.07,8.32,6.95,5.27,5.12,8.56,8.63,9.9,10.05,10.06,10.25,10.42,9.86,8.3,7.78,7.06,5.55,5.09,5.06,9.74,9.98,9.96,9.96,9.96,9.05,8.08,7.44,5.82,5.61,5.34,5.06,9.96,10.38,8.08,6.44,6.27,6.2,12.68,10.54,8.36,6.69,12.25,9.97,9.64,9.32
1964-09,6.42,7.32,7.5,7.09,6.13,5.58,5.42,5.73,5.9,5.33,5.02,4.77,5.46,5.35,5.3,5.2,5.4,4.74,4.83,5.37,5.37,5.64,4.87,4.17,5.01,4.8,4.23,6.4,6.5,6.18,5.72,5.46,5.54,5.92,5.57,5.54,5.42,5,6.73,6.7,6.56,6.56,6.53,6.24,6.18,5.54,5.16,5.11,5.65,5.19,4.47,4.34,6.73,6.72,6.58,6.56,6.61,6.54,6.44,6.01,5.5,4.83,4.64,4.25,4.28,4.29,6.61,6.68,6.72,6.72,6.72,6.26,5.76,5.35,4.28,4.11,4.19,4.29,6.72,6.99,5.82,4.73,4.63,4.57,8.26,7.39,5.9,4.79,8.03,6.9,5.98,5.62
1964-10,5.84,6.05,6.11,5.6,5.26,5.45,5.4,5.55,5.33,4.6,5.28,4.86,5.46,4.88,4.64,4.56,4.98,4.73,4.9,4.83,4.81,4.54,4.54,4.45,4.31,3.87,3.13,5.01,5,5.11,5.15,5.02,4.36,4.54,4.69,4.48,4.34,3.95,5.12,5.1,5,5,5.03,5.28,5.29,5.04,4.28,4.16,4.64,4.47,4.09,4.05,5.12,5.11,5.01,5,5.29,5.45,5.4,5.21,4.96,5.02,4.42,4.38,4.07,4.04,5.07,5.4,5.53,5.53,5.51,4.69,4.88,5.17,4.71,4.57,4.31,4.04,5.06,4.24,4.27,4.58,4.6,4.6,4.94,5.37,5.31,4.68,5.43,5.42,5.19,4.74
1964-11,3.02,3.02,2.81,2.6,2.55,2.78,2.98,3.02,2.71,2.35,3.03,2.71,3.01,2.56,2.37,2.37,2.96,2.69,2.74,2.67,2.66,2.77,2.66,2.55,2.98,2.44,1.95,3.94,4.05,3.8,3.32,3.08,2.99,2.93,2.97,3.18,2.87,2.56,4.25,4.23,4.12,4.12,4.09,3.81,3.75,3.16,3.01,2.97,2.98,2.77,2.44,2.38,4.25,4.24,4.13,4.12,3.89,3.74,3.76,3.5,3.28,3.4,3.07,2.69,2.39,2.36,4.11,3.81,3.71,3.71,3.7,3.1,3.13,3.28,3.05,2.88,2.62,2.36,3.39,2.84,2.86,3.18,3.23,3.19,3.61,4.12,4.09,3.35,4.19,4.38,4.35,4.35
1964-12,1.84,1.84,1.74,1.64,1.78,1.89,1.85,1.84,1.75,2.48,2.25,1.91,1.84,1.84,2.36,2.43,2.47,1.97,1.95,2.62,3,2.38,2.28,2.25,2.23,1.63,1.54,3.55,3.46,3.27,3.13,3.02,2.59,2.35,2.53,2.31,1.81,1.72,2.89,3,3.55,3.55,3.53,3.33,3.3,3.05,2.71,2.22,2.5,2.15,1.57,1.54,2.89,2.92,3.48,3.55,2.87,2.62,2.85,2.88,2.34,2.28,2.21,1.96,1.57,1.53,3.3,2.57,2.24,2.24,2.24,2.22,2.2,2.3,2.27,2.18,1.86,1.53,2.24,2.42,2.54,2.35,2.37,2.35,2.76,3.33,2.94,2.43,2.69,2.97,2.86,2.65
1965-01,1.54,1.54,1.49,1.44,1.46,2.19,1.64,1.54,1.5,1.61,2.95,2.38,1.56,1.54,1.84,1.85,2.75,2.69,2.68,2.51,2.81,2.34,2.14,2.14,2.12,2.02,1.92,3.17,3.22,3.73,3.26,2.84,2.53,2.35,2.41,2.18,2.08,2.03,3.23,3.23,3.25,3.25,3.38,3.74,3.69,2.94,2.49,2.38,2.61,2.43,2.15,2.16,3.23,3.23,3.25,3.25,3.32,3.46,3.55,3.12,2.71,2.74,2.74,2.35,2.18,2.16,3.25,3.29,3.31,3.31,3.29,2.54,2.56,2.82,2.68,2.53,2.45,2.18,2.97,2.22,2.24,2.7,2.78,2.67,2.99,3.06,3.3,2.87,3.59,3.5,3.52,3.35
1965-02,1.99,1.99,1.65,1.3,1.38,2.11,2.01,1.99,1.69,1.79,2.2,2.15,1.99,1.99,2.04,1.51,2.15,2.19,2.22,2.44,2.58,2.21,1.93,1.74,2.15,2.02,1.95,2.95,3.04,2.47,2.55,2.59,2.26,2.22,2.71,2.51,2.07,2.02,3.45,3.4,3.12,3.12,2.95,2.47,2.48,2.58,2.2,2.05,2.73,2.47,1.87,1.84,3.45,3.43,3.15,3.12,2.86,2.62,2.57,2.38,2.37,2.59,2.6,2.13,1.86,1.83,3.15,2.81,2.7,2.7,2.7,2.43,2.13,2.38,2.34,2.37,2.25,1.87,2.7,2.71,2.3,2.1,2.1,2.22,3.67,3.47,2.74,2.17,3.6,3.21,2.84,2.89
1965-03,1.87,1.87,2.19,2.52,2.48,1.87,1.87,1.87,2.44,2.78,3.31,1.99,1.87,2.98,3.3,3.3,4.07,3.52,3.07,3.49,3.43,3.23,3.03,2.96,2.86,2.81,2.47,4.84,4.94,4.51,4.27,4.03,3.47,2.92,3.2,2.88,2.97,2.83,5.87,5.73,5,5,4.87,4.51,4.48,4.09,3.61,2.92,3.65,3.47,3.2,3.23,5.87,5.83,5.09,5,4.62,4.39,4.43,3.92,3.4,3.38,3.32,3.28,3.24,3.24,5.12,4.49,4.32,4.32,4.32,3.81,3.26,3.35,3.31,3.27,3.26,3.24,4.32,4.26,3.55,3.31,3.31,3.29,5.18,5.26,4.45,3.52,5.08,4.93,4.98,4.64
1965-04,6.48,6.24,6.25,6.42,5.44,6.23,6,6.04,5.88,5.15,6.11,5.68,6.03,5.85,5.8,5.96,6.8,5.73,6.14,5.82,5.78,5.51,5.24,5.38,5.08,4.72,3.71,7.83,7.85,7.47,6.54,5.71,5.17,4.89,5.03,4.88,5.4,4.8,7.82,7.84,7.97,7.97,7.85,7.5,7.4,5.91,5.17,4.36,4.91,4.73,4.2,4.05,7.82,7.83,7.96,7.97,7,6.6,6.89,5.74,4.2,4.19,4.15,3.92,3.96,3.98,7.78,6.58,6.11,6.11,6.08,4.57,4.13,4.13,3.95,3.72,3.78,3.96,5.5,4.17,4.17,4.27,4.3,4.04,5.61,5.49,5.56,4.6,6.63,6.07,6.68,6.57
1965-05,6.71,6.43,6.44,6.54,5.48,6.47,6.16,6.26,6.04,5.16,5.89,5.67,6.22,6.16,6.14,5.86,6.69,5.64,5.74,5.62,5.74,5.22,3.83,4.2,4.06,4,3.54,7.68,7.65,5.71,4.75,3.92,3.5,3.49,4.11,3.84,4.41,4.11,9.06,8.86,7.81,7.81,7.27,5.71,5.61,4.12,3.42,3.28,3.72,3.74,3.8,3.72,9.06,9,7.93,7.81,5.94,4.87,5.14,4.39,3.59,3.73,3.91,3.95,3.72,3.69,7.78,5.26,4.4,4.4,4.39,3.7,3.45,3.86,4.35,4.25,4.13,3.73,4.51,3.86,3.54,4.39,4.6,4.44,5.34,5.65,5.71,4.85,7.35,6.37,6.52,6.18
1965-06,7.06,6.36,6.41,6.71,6.03,6.81,5.56,5.65,6.31,6.52,6.46,5.65,5.54,7.57,8.15,7.5,7.42,5.92,6.54,7.99,8.03,7.53,6.09,5.58,5.61,5.08,3.91,8.6,8.59,8.19,7.84,7.48,6.93,6.41,6.54,5.77,5.78,5.17,9.74,9.58,8.74,8.74,8.61,8.23,8.19,7.57,6.89,6.06,6.14,5.77,5.45,5.41,9.74,9.69,8.84,8.74,8.28,8.02,8.09,7.46,6.1,5.38,5.49,5.39,5.39,5.39,8.87,8.11,7.9,7.9,7.87,6.61,6.56,6.24,5.73,5.31,5.33,5.38,7.61,6.44,6.12,6.49,6.53,5.99,8.11,8.03,7.28,6.66,10.53,8.23,7.42,7.03
1965-07,7.45,9.22,9.34,9.53,8.69,7.46,8.08,8.31,9.22,9.59,7.8,7.33,8.15,11.17,12.04,11.13,8.33,7.21,8.83,11.55,11.68,11.01,8.98,8.18,7.95,7.14,5.44,11,11.23,11.4,10.7,10.01,9.32,9.03,8.81,8.2,8.23,7.25,10.89,10.98,11.48,11.48,11.47,11.46,11.38,10.18,9.13,8.67,9.06,7.94,6.46,6.23,10.89,10.92,11.42,11.48,11.5,11.51,11.49,10.18,8.46,7.97,7.74,6.16,6.11,6.13,11.36,11.52,11.53,11.53,11.53,10.22,8.82,8.12,6.23,5.87,5.93,6.11,10.73,9.7,8.62,6.43,6.19,6.05,9.34,9.69,8.22,6.47,11.84,9.75,8.64,8.32
1965-08,6.95,7.96,8.09,8.22,7.18,6.86,6.58,6.83,7.56,7.62,6.26,5.9,6.64,8.88,9.52,8.79,5.76,5.65,7.09,9.27,9.33,8.96,8.12,7.89,7.67,6.43,5.02,7.39,7.62,9.15,8.83,8.49,7.98,7.93,8.19,7.72,7.25,6.44,9.05,8.84,7.73,7.73,8.11,9.2,9.16,8.57,8.06,7.71,8.04,7.08,5.43,5.19,9.05,8.99,7.86,7.73,9.02,9.77,9.58,8.64,7.88,7.84,6.97,5.17,5.08,5.09,8.2,9.49,10.08,10.08,10,6.82,7.36,7.64,5.9,4.92,4.96,5.08,8.57,5.7,5.32,6.76,6.94,6.05,7.97,7.73,7.11,6.89,9.73,7.71,6.72,6.9
1965-09,5.67,5.7,5.7,5.63,4.95,5.93,5.57,5.61,5.72,5.53,5.61,5.32,5.59,6.84,7.2,6.62,4.89,5.18,6.12,7.38,7.33,7.28,7.15,6.87,6,4.97,3.98,6.62,6.89,7.74,7.88,7.91,7.38,7.11,6.84,5.83,5.57,5.02,6.77,6.81,7.01,7.01,7.21,7.78,7.79,7.91,7.22,6.36,6.6,5.75,4.82,4.72,6.77,6.78,6.99,7.01,7.74,8.14,8.02,7.36,6.59,6.53,5.98,4.81,4.69,4.68,7.07,8.01,8.34,8.34,8.31,6.81,6.5,6.52,5.47,4.77,4.75,4.69,7.52,6.43,6.36,6.27,6.23,5.59,6.89,7.2,6.89,6.29,8.79,7.36,6.72,6.6
1965-10,4.66,4.99,5.04,4.63,4.33,4.59,4.6,4.62,4.62,4.2,5.06,4.81,4.57,4.72,4.76,4.35,4.82,4.89,4.97,4.76,4.75,4.58,4.19,4.14,4.08,3.74,3.15,4.98,5.02,5.49,5.07,4.67,4.19,4.21,4.32,4.13,4.16,3.81,5.5,5.42,5.02,5.02,5.14,5.5,5.45,4.77,4.08,3.79,4.17,3.83,3.58,3.5,5.5,5.48,5.07,5.02,5.36,5.58,5.55,4.61,3.83,4,3.23,3.51,3.49,3.47,5.17,5.47,5.62,5.62,5.58,3.72,3.47,4.05,4.05,3.89,3.8,3.5,4.6,3.19,3.09,4.64,4.97,4.5,3.78,4.08,4.84,4.98,4.76,4.4,4.74,4.32
1965-11,3.98,3.7,3.29,3.09,3.03,4,3.56,3.48,3.6,3.78,4.46,4.1,3.49,4.44,4.72,3.86,3.46,4.19,4.19,4.36,4.45,4.04,2.59,2.46,2.42,2.18,1.78,3.72,3.84,4.25,3.69,3.23,3.07,2.66,2.76,2.43,2.5,2.26,4.24,4.17,3.83,3.83,3.94,4.25,4.19,3.34,3.05,2.49,2.7,2.46,2.23,2.2,4.24,4.22,3.87,3.83,3.63,3.68,3.86,3.31,2.58,2.57,2.27,2.2,2.18,2.18,3.87,3.48,3.36,3.36,3.34,2.33,2.39,2.64,2.45,2.13,2.14,2.18,2.8,1.96,1.9,2.8,2.97,2.6,2.43,2.73,3.18,3.02,3.35,3.16,3.17,2.91
1965-12,1.95,1.95,1.99,2.04,2,1.89,1.94,1.95,2.6,3.3,1.92,1.87,1.95,4.1,4.72,4.72,1.6,1.81,2.36,4.04,4.24,3.69,2.08,2,1.91,1.76,1.63,2.09,2.18,2.66,2.33,2.04,2.01,1.77,1.87,1.8,1.99,1.87,2.27,2.26,2.21,2.21,2.33,2.67,2.63,2.11,2.01,1.64,1.71,1.6,1.64,1.6,2.27,2.27,2.22,2.21,2.34,2.49,2.55,2.42,1.91,1.78,1.18,1.36,1.57,1.58,2.24,2.34,2.39,2.39,2.39,2.39,2.04,1.91,1.52,1.4,1.44,1.57,2.06,1.68,1.69,1.96,1.96,1.71,1.45,1.89,2.3,1.98,2.05,2.23,2.14,1.97
1966-01,1.12,1.12,1.12,1.12,1.12,1.62,1.2,1.12,1.12,1.12,1.98,1.76,1.13,1.12,1.22,1.56,1.5,1.92,1.8,1.69,1.62,1.6,1.57,1.48,1.47,1.47,1.47,1.88,1.97,2.03,2.03,1.73,1.62,1.54,1.49,1.47,1.47,1.45,2.89,2.75,1.99,1.99,2,2.03,2.03,1.82,1.58,1.46,1.61,1.45,1.2,1.17,2.89,2.85,2.08,1.99,1.83,1.8,1.87,1.84,1.43,1.23,1.54,1.37,1.15,1.15,2.15,1.75,1.67,1.67,1.66,1.47,1.62,1.58,1.56,1.48,1.15,1.15,1.5,1.31,1.33,1.55,1.58,1.58,1.35,1.7,2,1.64,1.76,2.04,2.22,2.47
1966-02,0.55,0.55,0.55,0.63,1.26,1.26,0.66,0.55,0.55,1.2,1.8,1.47,0.57,0.55,1.15,1.38,2.06,1.83,1.85,1.57,1.9,1.84,1.57,1.48,1.53,1.93,1.89,2.79,2.87,3.18,2.5,1.92,1.81,1.83,1.73,1.56,1.95,1.93,3.49,3.4,2.93,2.93,3,3.2,3.13,2.06,1.78,1.84,2.11,1.93,1.7,1.66,3.49,3.46,2.99,2.93,2.98,3.2,3.2,2.51,1.6,1.44,2.27,2.01,1.67,1.65,3.04,2.93,2.91,2.78,2.44,2.13,2.04,1.9,2.03,1.99,1.92,1.67,2.02,2.1,2.13,1.89,1.84,1.91,1.96,2.14,2.18,1.91,2.36,2.3,2.39,2.34
1966-03,5.42,5.42,5.32,5.21,5.01,5.31,5.4,5.42,5.43,4.99,5.43,5.27,5.42,5.75,5.85,5.85,4.46,5.12,5.6,5.74,5.76,5.44,4.71,4.7,4.09,3.93,3.32,5.48,5.69,6.33,5.81,5.34,5.02,4.48,4.59,3.93,4.35,3.96,5.89,5.87,5.75,5.75,5.9,6.35,6.29,5.46,4.94,3.82,4.32,3.9,3.25,3.11,5.89,5.88,5.76,5.75,5.41,5.47,5.75,4.96,3.01,2.82,4.11,3.69,3.08,3.05,5.71,5.17,4.98,4.98,4.96,3.87,3.59,3.34,3.69,3.62,3.49,3.09,4.43,3.64,3.57,3.66,3.68,3.65,3.99,4.18,4.14,3.74,4.46,4.32,4.3,4.43
1966-04,6.06,5.44,5.43,5.38,4.58,5.95,5.44,5.44,5.22,4.7,5.93,5.4,5.44,5.58,5.62,5.61,5.44,5.4,5.88,5.8,5.74,5.47,4.4,4.47,4.46,4.45,3.79,7.04,7.24,7.24,6.72,6.29,6.11,4.81,4.91,4.37,4.97,4.56,7.58,7.55,7.38,7.38,7.35,7.27,7.21,6.39,6.08,4.49,4.79,4.41,4.14,4.03,7.58,7.57,7.4,7.38,7.06,6.93,7.04,6.03,3.73,3.31,4.13,3.93,3.96,3.98,7.37,6.91,6.75,6.75,6.71,4.92,4.62,4.11,3.65,3.64,3.71,3.96,5.93,4.52,4.34,3.35,3.1,3.34,5.49,5.56,4.62,3.35,6.45,5.6,5.25,5.19
1966-05,6.33,6.6,6.69,6.44,5.61,6.67,6.38,6.5,6.2,5.51,6.08,5.71,6.45,6.31,6.26,6.02,5.29,5.43,5.99,6.04,6.07,5.56,4.62,4.32,4.25,4.19,3.81,6.95,7.16,6.56,5.87,5.22,4.48,4.28,4.57,4.39,4.51,4.26,9.32,9,7.31,7.31,7.12,6.58,6.5,5.38,4.49,3.76,4.21,4.09,3.85,3.77,9.32,9.22,7.51,7.31,6.11,5.58,5.9,5.31,3.36,2.88,3.68,3.75,3.74,3.73,7.53,5.6,5.03,5.03,5.03,4.68,4.3,3.73,3.71,3.84,3.82,3.74,4.73,4.37,4.17,3.74,3.68,3.75,4.23,4.65,4.58,3.83,5.49,4.94,4.8,4.4
1966-06,7.4,8.96,9.44,9.27,8.01,7.41,8.01,8.34,8.45,7.78,6.86,6.65,8.16,8.81,8.99,8.67,7.3,6.27,7.64,8.76,8.8,8.14,5.96,5.81,6.74,6.69,4.91,8,8.02,9.59,8.74,7.93,7.07,6.62,7.4,7.06,7.78,6.77,9.46,9.24,8.07,8.07,8.47,9.64,9.54,8.13,7.17,6.21,6.6,6.46,5.92,5.67,9.46,9.39,8.21,8.07,7.76,8.08,8.58,7.85,5.16,4.6,7.03,6.2,5.57,5.57,8.28,7.43,7.22,7.22,7.18,5.78,6.12,5.69,6,5.52,5.53,5.57,6.59,5.27,5.08,6.04,6.19,5.89,6.42,6.2,5.88,6.05,6.96,5.98,5.32,5.69
1966-07,8.66,8.65,8.53,9.43,8.73,8.19,9.67,9.91,9.76,9.22,6.83,6.74,10.03,11.02,11.29,10.43,7.22,5.79,8.36,10.84,10.93,10.04,7.51,7.55,7.44,6.45,4.78,10.59,10.89,11.22,10.25,9.29,8.12,7.82,7.92,7.17,7.35,6.47,9.88,10.09,11.2,11.2,11.23,11.3,11.19,9.52,8.3,7.95,8.05,7.29,6.29,6.15,9.88,9.94,11.07,11.2,11.08,11.07,11.15,9.64,8.5,6.62,7.92,6.59,6.04,6.09,10.91,11.01,10.95,10.95,10.9,8.58,8,8.65,6.36,5.21,5.4,6.03,9.71,8.03,7.91,6.92,6.67,6.03,8.64,8.19,6.99,6.72,9.45,7.76,7.26,7.67
1966-08,5.09,5.3,5.2,6.06,5.68,6.32,6.8,6.74,6.49,6.07,5.95,5.88,6.93,7.38,7.5,6.8,6.06,5.55,6.39,7.49,7.49,7.1,6.07,5.78,5.8,5.32,3.96,7.06,6.98,7.22,7.38,7.43,6.57,6.33,6.34,6.06,6.21,5.42,7.09,7.09,7.06,7.06,7.11,7.24,7.26,7.42,6.63,6.24,6.2,5.51,4.74,4.54,7.09,7.09,7.06,7.06,7.62,7.83,7.64,6.99,5.11,4.78,5.45,5.05,4.5,4.46,7.16,7.88,8.15,8.15,8.13,6.97,6.39,5.83,5.44,5.08,4.94,4.5,7.6,6.84,6.76,5.9,5.73,5.44,7.24,7.69,7.19,5.95,9.26,8.41,8.05,8.76
1966-09,4.77,4.64,4.57,4.86,4.42,5.44,5.14,5.11,4.84,4.33,5.14,4.83,5.18,4.96,4.9,4.44,4.41,4.66,4.68,4.77,4.81,4.64,4.22,4.18,3.96,3.8,3.36,4.82,4.88,4.17,4.3,4.4,4.21,4.24,4.58,3.96,4.14,3.91,6.31,6.09,4.93,4.93,4.73,4.16,4.17,4.37,4.42,4.65,4.76,4.48,4.28,4.3,6.31,6.24,5.07,4.93,5.38,5.31,4.94,4.78,4.12,3.98,4.54,4.52,4.33,4.31,5.3,5.69,5.95,5.95,5.93,5.22,5.15,5.03,5.04,4.71,4.62,4.34,5.48,4.96,4.97,5.68,5.83,5.34,5.1,5.84,6.48,5.92,7.1,7.05,6.65,6.77
1966-10,5.91,5.89,6.03,6.18,6,5.65,5.78,5.89,6.08,5.7,5.13,5.02,5.87,6.16,6.24,5.82,4.35,4.66,5.2,5.99,6.06,5.66,4.67,4.55,4.19,3.64,2.94,4.48,4.54,5.19,5.22,5.22,4.85,4.58,5.05,4.28,4.13,3.69,5.5,5.34,4.53,4.53,4.7,5.2,5.2,5.22,4.8,4.54,4.89,4.1,3.03,2.88,5.5,5.45,4.63,4.53,5.11,5.45,5.37,5.07,3.78,3.41,4.36,3.77,2.88,2.82,4.82,5.32,5.58,5.58,5.58,5.19,4.78,4.44,4.22,3.84,3.62,2.89,5.03,4.41,4.46,4.55,4.53,4.22,4.05,4.59,4.82,4.45,5.36,4.98,4.16,4.32
1966-11,5.42,5.42,4.8,4.15,4.05,4.07,5.2,5.42,4.88,4.44,3.3,3.67,5.38,5.3,5.26,5.26,3.27,3.09,4.12,5.07,5.12,4.82,3.73,3.55,3.47,2.66,2.24,3.4,3.43,4.75,4.62,4.48,4.22,4.01,4.43,3.58,3,2.73,3.38,3.38,3.41,3.41,3.76,4.77,4.75,4.51,4.3,3.93,3.96,3.38,2.47,2.4,3.38,3.38,3.41,3.41,4.18,4.75,4.76,4.52,3.44,3.14,3.75,3.1,2.4,2.37,3.52,4.41,4.74,4.74,4.72,3.98,4.14,3.87,3.47,2.89,2.78,2.4,4.18,3.58,3.62,3.86,3.87,3.44,3.64,3.94,4.11,3.92,5.05,4.21,4.09,3.82
1966-12,1.84,1.84,1.84,1.84,1.81,1.95,1.84,1.84,1.84,1.81,2.46,1.87,1.84,1.84,2.08,1.7,2.78,2.52,2.68,2.84,3.12,2.15,2.01,1.77,1.88,1.43,0.86,3,3.02,3.71,3.43,3.15,2.56,2.18,2.25,2.03,1.71,1.42,2.98,2.98,3,3,3.18,3.71,3.68,3.22,2.61,2.29,2.26,1.9,1.37,1.33,2.98,2.98,3,3,3.54,3.87,3.82,3.16,1.96,1.72,2.21,1.96,1.36,1.31,3.08,3.72,3.96,3.96,3.94,2.97,2.55,2.32,2.33,2.19,2,1.37,3.28,2.71,2.77,2.65,2.64,2.44,2.5,3.05,3.31,2.73,3.85,3.55,3.46,3.37
1967-01,1.19,1.19,1.19,1.33,2.52,1.19,1.19,1.19,1.19,2.41,1.25,1.19,1.19,1.19,2.3,2.65,3.06,2.35,2.47,3.07,3.67,2.95,2.89,2.78,2.29,2.06,2.02,3.2,3.22,4.03,3.88,3.73,3.24,2.92,2.89,2.25,2.06,2.03,2.92,2.96,3.2,3.2,3.41,4.03,4.01,3.67,3.01,2.76,2.77,2.29,1.63,1.57,2.92,2.93,3.17,3.2,3.46,3.74,3.83,2.93,2.48,2.58,2.21,1.99,1.58,1.55,3.17,3.48,3.58,3.58,3.56,2.72,2.51,2.41,2.2,2.12,1.99,1.59,3.02,2.46,2.48,2.3,2.26,2.2,2.44,2.75,2.76,2.32,3.3,3.03,2.81,2.76
1967-02,1.78,1.78,2.39,3.02,2.99,2.6,1.91,1.78,2.31,2.78,3.46,2.85,1.8,1.78,2.68,2.95,3.2,3.22,3.2,3.46,4,3.18,3.03,3.03,2.46,2.23,1.69,3.51,3.57,4.47,4.27,4.04,3.41,3.14,2.9,2.33,2.45,2.19,4.01,3.94,3.58,3.58,3.81,4.49,4.47,3.99,3.17,3.08,3.18,2.7,2.12,2.08,4.01,3.99,3.62,3.58,3.71,3.97,4.14,3.2,2.75,2.86,2.77,2.52,2.09,2.06,3.68,3.66,3.69,3.69,3.68,3.06,2.96,2.83,2.71,2.6,2.48,2.1,3.26,2.83,2.86,2.88,2.88,2.76,2.81,3.18,3.35,2.95,3.88,3.65,3.43,3.25
1967-03,6.01,6.01,5.96,5.91,5.83,5.44,5.92,6.01,5.9,5.6,5.71,5.26,5.99,5.78,5.71,5.71,4.89,4.99,5.75,5.89,5.83,5.67,5.63,5.65,4.86,4.25,3.56,5.8,5.95,7,6.67,6.4,6.36,5.48,5.86,4.98,4.86,4.4,5.82,5.85,6,6,6.27,7.03,6.99,6.36,6.01,5.5,5.69,4.85,3.78,3.64,5.82,5.83,5.98,6,6.12,6.42,6.62,5.56,5.01,5.28,4.69,4.28,3.63,3.58,5.97,6.07,6.09,6.09,6.09,5.62,5.11,4.94,4.38,4.39,4.21,3.63,5.67,5.17,4.86,3.93,3.81,4.07,4.95,5.21,4.7,3.91,6.39,5.71,4.77,4.71
1967-04,7.17,6.49,6.8,7.08,5.99,6.96,6.45,6.49,6.19,5.05,6.81,6.15,6.48,5.47,5.17,4.93,6.84,6.08,6.51,5.69,5.51,5.18,4.34,3.87,3.85,3.59,3.01,8.21,8.09,8.02,7.55,7.04,5.77,5.1,5.14,4.13,3.95,3.61,7.64,7.73,8.21,8.21,8.17,8.05,8,7.04,5.76,5.18,4.93,4.18,3.27,3.18,7.64,7.67,8.15,8.21,7.19,6.86,7.24,6.07,5.28,5.2,4.28,3.99,3.22,3.14,7.92,6.7,6.2,6.2,6.19,5.75,5.28,5.17,4.77,4.44,4.15,3.22,6.13,5.87,5.77,5.42,5.36,4.96,6.37,6.86,6.46,5.5,9.15,7.67,6.66,6.81
1967-05,5.69,6.31,6.44,6.37,5.49,6.79,6.69,6.69,6.14,5.1,7.12,6.41,6.72,5.92,5.69,5.6,7.27,6.37,6.95,6.19,6.02,5.79,5.18,4.8,4.66,4.27,3.64,8.97,8.82,8.89,8.19,7.5,6.43,5.78,5.6,4.93,4.76,4.4,7.95,8.11,8.97,8.97,8.96,8.93,8.85,7.52,6.2,5.09,5.57,5.08,4.44,4.4,7.95,8,8.87,8.97,8.98,8.97,8.96,6.7,5.57,5.41,4.56,4.67,4.42,4.38,8.76,8.98,8.99,8.99,8.95,6.81,5.9,5.89,5.41,5.15,4.98,4.43,7.83,6.44,6.36,6.07,6.03,5.64,6.76,6.98,6.62,6.11,8.57,7.07,6.6,6.33
1967-06,6.38,6.72,6.86,6.82,5.55,6.97,6.29,6.38,6.53,6.12,6.96,6.07,6.3,7.83,8.27,7.79,6.33,6.03,7.26,8.6,8.49,7.89,6.49,6.46,6.93,4.94,4.62,8.81,9.12,9.94,9.77,9.51,8.3,7.02,7.19,7.51,6.06,4.99,8.83,8.91,9.32,9.32,9.5,10,9.98,9.48,8.51,7.13,6.87,6.42,5.86,5.79,8.83,8.85,9.27,9.32,10.46,10.95,10.65,8.92,8.05,7.49,5.89,6.14,5.85,5.79,9.4,10.94,11.48,11.48,11.43,8.98,8.1,7.8,6.87,6.88,6.64,5.86,10.03,8.42,8.39,7.32,7.09,7,8.58,8.68,7.66,7.06,10.56,8.64,7.27,7.74
1967-07,5.56,5.78,5.68,6.31,5.97,6.99,7.34,7.23,7.07,6.78,7.13,6.71,7.43,8.5,8.8,8.11,7.4,6.58,7.61,8.74,8.75,8.43,6.89,6.51,6.37,5.49,4.16,8.69,8.79,9.45,8.96,8.51,8.14,7.65,7.66,6.75,6.49,5.72,9.23,9.18,8.9,8.9,9.05,9.49,9.43,8.66,8.52,7.91,8.26,7.01,5.69,5.58,9.23,9.21,8.93,8.9,10.86,11.57,10.9,9.41,8.87,8.24,6.58,6.11,5.58,5.54,9.29,11.76,12.72,12.72,12.66,9.92,8.87,8.53,7.08,6.17,6.03,5.58,11.14,9.34,9.29,8.16,7.91,7.14,9.65,9.9,8.93,8.03,12.61,10.02,8.87,8.64
1967-08,5.11,6.47,6.76,7.09,6.62,6.1,7,7.16,7.45,7.6,5.23,5.49,7.18,9.09,9.63,8.67,5.4,4.96,6.77,9.33,9.42,9.21,8,7.74,8.06,6.55,4.38,7.65,7.91,8.82,8.64,8.48,8.68,8.33,8.36,8.4,7.86,6.65,7.61,7.69,8.09,8.09,8.29,8.88,8.85,8.49,8.52,8.48,8.35,7.33,5.89,5.63,7.61,7.63,8.04,8.09,8.92,9.36,9.21,8.38,7.96,7.98,7.26,6.14,5.51,5.52,8.12,9.24,9.63,9.63,9.63,8.73,7.77,7.38,5.95,5.33,5.37,5.51,8.58,7.34,6.97,5.21,4.95,5.12,6.66,7.14,6.29,5.03,8.71,7.23,6.09,6.35
1967-09,4.51,5.74,6.05,5.47,4.69,5.66,5.87,5.87,5.52,4.85,6.17,6.09,5.85,5.91,5.93,5.2,5.26,6.06,5.55,5.69,5.77,5.5,3.96,3.72,4.1,3.96,3.11,5.68,5.77,3.96,4.54,5.02,4.66,4.7,4.78,4.52,4.5,4.05,6.63,6.5,5.83,5.83,5.34,3.93,4,4.88,4.65,4.76,4.62,4.43,4.2,4.16,6.63,6.59,5.91,5.83,5.56,5,4.66,4.55,4.55,4.72,4.58,4.39,4.15,4.14,5.97,5.65,5.59,5.59,5.55,4.08,4.1,4.42,4.4,4.36,4.31,4.15,4.55,3.44,3.49,4.09,4.19,4.27,3.47,4.12,4.43,4.07,5.18,4.83,3.76,4.35
1967-10,6.9,7.59,7.58,6.99,6.48,6.14,7.44,7.66,7.24,6.16,5.75,5.78,7.63,7.18,7.04,6.48,4.94,5.1,5.98,6.77,6.83,6.38,5.27,5.25,5.14,4.41,3.52,5.82,5.95,5.98,5.97,5.89,5.17,5.07,5.32,5.09,5.06,4.54,5.02,5.18,6.02,6.02,6.01,5.99,5.99,5.83,5.01,4.7,5.09,4.79,4.4,4.32,5.02,5.07,5.92,6.02,6.25,6.31,6.21,5.26,4.83,4.79,4.84,4.51,4.28,4.28,5.85,6.37,6.49,6.49,6.44,4.35,4.56,4.85,4.6,4.29,4.29,4.28,5.04,3.39,3.43,4.5,4.67,4.5,3.55,3.94,4.48,4.55,4.47,4.6,4.22,5
1967-11,3.12,3.12,2.66,2.18,2.19,3.09,3.12,3.12,2.68,2.52,3.37,3.08,3.12,2.87,2.8,2.8,2.51,2.99,3.05,2.87,2.86,2.81,2.64,2.54,2.76,2.43,1.65,3.41,3.56,3.05,3.07,3.11,3.21,2.81,2.74,2.87,2.76,2.4,3.79,3.77,3.64,3.64,3.49,3.05,3.05,3.06,3.06,2.84,2.81,2.7,2.6,2.58,3.79,3.78,3.65,3.64,3.22,2.95,2.98,2.7,2.59,2.87,2.5,2.68,2.59,2.57,3.61,3.08,2.89,2.89,2.87,2.27,2.4,2.51,2.76,2.97,2.88,2.6,2.35,1.89,1.97,2.74,2.89,2.93,1.68,2,2.56,2.78,2.06,2.18,2.2,2.55
1967-12,1.71,1.71,1.71,1.67,1.5,1.71,1.71,1.71,1.73,1.79,1.72,1.71,1.71,1.77,1.79,1.79,2.1,1.95,1.86,1.93,1.89,1.93,1.74,1.81,2.07,2.11,2.07,2.13,2.13,2.06,2.22,2.37,2.4,2.07,2.19,2.21,2.14,2.1,1.94,1.97,2.13,2.13,2.11,2.06,2.08,2.3,2.25,1.96,2.21,1.94,1.55,1.47,1.94,1.95,2.11,2.13,2.37,2.41,2.3,2.02,1.98,2.05,1.8,1.77,1.47,1.44,2.13,2.49,2.61,2.61,2.6,2.03,2.13,2.21,2.1,2.01,1.88,1.48,2.17,1.73,1.76,2.32,2.43,2.24,1.7,1.98,2.41,2.4,2.09,2.25,2.35,2.6
1968-01,0.74,0.74,0.74,0.74,0.74,0.74,0.74,0.74,0.74,0.74,0.76,0.74,0.74,0.74,0.86,0.97,1.43,1.17,1.13,1.12,1.24,1.04,1,1.11,1.27,1.12,1.12,1.48,1.48,1.61,1.41,1.26,1.24,1.03,1.08,1.24,1.14,1.21,1.5,1.5,1.48,1.48,1.51,1.61,1.59,1.29,1.27,1.16,1.26,1.3,1.49,1.52,1.5,1.5,1.49,1.56,1.64,1.66,1.64,1.34,1.25,1.48,1.62,1.74,1.02,1.05,1.58,1.69,1.69,1.69,1.69,1.51,1.26,1.2,1.97,2.55,1.67,0.93,1.55,1.39,0.26,0.18,1.66,1.82,1.33,1.19,0.56,1.47,1.93,1.83,1.73,1.93
1968-02,0.66,0.66,0.66,0.8,1.57,1.53,0.8,0.66,0.66,0.91,2.19,1.79,0.68,0.66,1.05,1.64,2.26,2.2,1.82,1.69,2.05,1.97,1.81,1.8,2.08,2.02,1.95,2.12,2.09,2.11,2.09,2.08,2.1,1.93,2.05,2.21,2.09,2.05,3.19,3.02,2.09,2.08,2.09,2.11,2.11,2.07,2.05,2.04,2.14,2.05,1.87,1.86,3.19,3.19,2.66,2.35,2.57,2.55,2.41,2.06,2.02,2.24,1.99,2.06,1.81,1.79,3.03,2.8,2.8,2.8,2.78,2.07,2.12,2.28,2.31,2.38,2.05,1.77,2.37,1.79,1.77,2.4,2.53,2.5,2.02,2.28,2.62,2.5,2.49,2.62,2.44,2.64
1968-03,3.43,3.43,3.99,4.56,4.38,3.23,3.4,3.43,3.92,3.49,3.5,3.17,3.42,3.43,3.44,3.37,3.25,3.1,3.24,3.56,3.6,3.28,3.38,3.45,3.17,2.78,2.46,3.89,3.95,3.4,3.52,3.61,3.41,3.28,3.3,3.1,3.15,3.14,4.02,4.02,4.02,4.02,3.86,3.4,3.41,3.54,3.26,3.35,3.37,3.23,3.09,3.1,4.02,4.02,4.01,3.76,3.47,3.35,3.37,3.14,3.11,3.1,2.91,2.94,2.73,2.78,3.75,3.33,3.33,3.33,3.32,3.15,3.48,3.43,3.17,3.2,2.93,2.7,3.28,2.99,2.95,3.38,3.39,3.35,3.45,3.88,4.26,3.53,4.48,4.44,4.4,4.04
1968-04,5.87,5.49,5.9,6.29,5.46,5.7,5.44,5.49,5.45,4.67,5.49,5.12,5.48,4.86,4.68,4.43,5.77,5.1,4.94,4.79,4.76,4.51,4.2,4.12,4.07,3.92,3.02,6.81,6.82,4.58,4.89,5.11,4.41,4.09,4,3.87,4.42,3.77,7.37,7.31,6.98,6.98,6.36,4.57,4.6,4.93,4.09,3.84,3.72,3.56,3.42,3.38,7.37,7.37,7.16,6.08,5.06,4.6,4.59,3.84,3.5,3.79,3.47,3.31,3.18,3.22,6.27,4.62,4.62,4.62,4.59,3.48,3.45,3.67,3.54,3.21,3.19,3.18,3.99,3.11,3.06,3.8,3.95,3.81,3.54,3.94,4.44,4.07,4.85,4.36,4.88,4.87
1968-05,4.53,4.58,4.56,4.79,4.19,6.16,5.14,5.08,4.74,4.05,5.79,5.11,5.15,4.87,4.79,4.62,5.84,5.19,5.24,4.78,4.76,4.59,4.18,4.1,4.18,4.09,3.41,7.27,7.35,5.77,5.17,4.62,4.21,4.33,4.85,4.44,4.56,4.23,8.79,8.6,7.53,7.52,7.07,5.78,5.71,4.72,4.18,4.03,4.9,4.82,4.64,4.67,8.79,8.79,8.16,6.67,5.78,5.46,5.56,4.65,4.07,3.51,4.8,4.49,3.84,3.98,7.39,5.28,5.28,5.28,5.26,4.22,4.17,4.4,4.86,4.65,4.18,3.79,4.89,4,3.85,4.86,5.12,5.03,4.89,5.09,5.19,5.09,6.04,5.18,5.16,5.62
1968-06,8.42,8.18,8.16,7.93,6.57,8.95,7.95,7.98,7.46,6.18,8.67,7.83,7.96,7.48,7.34,7.03,8.74,7.85,7.44,6.98,7.08,6.84,5.86,5.7,5.18,4.96,4.49,10.36,10.13,6.46,6.11,5.89,6.3,5.78,5.81,5.3,5.47,4.94,10.61,10.57,10.36,10.36,9.35,6.44,6.4,5.78,5.43,5.09,5.11,4.88,4.37,4.33,10.61,10.61,10.47,9.22,7.81,7.03,6.84,4.85,4.22,4.96,4.81,4.23,4.05,4.13,9.32,7.36,7.36,7.36,7.36,6.45,5.47,5.26,4.54,3.63,3.87,4.08,7,6.5,5.9,5.37,5.26,4.96,6.42,6.64,6.15,5.31,8.09,6.52,6.15,6.9
1968-07,6.55,9.36,10.34,9.08,7.25,7.34,6.88,7.28,7.27,6.13,6.79,6.75,6.85,6.4,6.27,6.59,5.96,6.61,7.04,6.63,6.51,6.61,5.95,6.21,6.37,5.52,4.51,8.13,8.46,8.14,7.88,7.63,7.41,6.96,6.74,6.57,6.25,5.49,9.54,9.4,8.65,8.64,8.52,8.16,8.13,7.54,6.81,6.59,6.65,6.19,5.19,5.15,9.54,9.54,9.11,8.71,8.7,8.59,8.45,6.66,6.02,6.39,6.19,5.38,4.91,4.97,9.25,8.82,8.82,8.82,8.78,7.12,6.87,6.77,5.91,4.78,4.86,4.92,7.68,6.52,6.58,6.86,6.87,6.48,6.43,6.51,6.59,6.86,7.58,6.47,6.35,5.73
1968-08,5.93,8.08,8.75,8.63,8.33,6.96,7.05,7.31,8.1,8.01,6.56,6.48,7.1,8.47,8.86,8.61,6.96,6.35,7.47,8.73,8.77,8.56,7.29,7.16,7.15,5.8,4.22,7.39,7.44,9.46,8.85,8.34,8.5,7.77,7.47,7.42,6.63,5.61,5.21,5.39,6.23,6.14,7.6,9.51,9.44,8.4,8.2,7.49,7.44,6.76,5.41,5.36,5.21,4.19,3.34,3.34,5.78,10.15,9.95,8.22,7.49,7.34,7,6.03,5.14,5.16,3.34,3.34,9.53,10.51,10.46,8.23,7.81,7.76,6.9,5.58,5.32,5.11,9,7.46,7.53,8.11,8.22,7.73,7.33,7.38,7.39,8.05,8.75,7.29,6.29,5.38
1968-09,6.06,7.62,8.1,7.09,5.88,6.56,6.84,7.08,6.7,5.81,6.2,6,6.92,6.78,6.74,6.29,5.31,5.62,6.08,6.6,6.64,6.34,5.33,4.98,5.02,4.58,3.44,6.16,6.29,5.99,6.1,6.17,5.77,5.63,5.51,5.25,5.23,4.47,6.91,6.69,5.62,5.57,6.04,5.99,6,6.08,5.59,5.36,5.25,4.9,4.27,4.25,6.91,5.24,3.86,3.86,4.78,6.4,6.27,5.49,5.03,4.72,4.48,4.26,3.66,3.74,3.86,3.86,6.24,6.62,6.57,4.54,4.45,4.79,4.77,3.47,2.28,3.06,5.18,3.69,3.79,5.04,5.28,2.6,3.6,4.44,5.64,5.29,4.96,5.34,5.37,5.42
1968-10,6.05,6.64,6.71,6,5.57,5.48,5.74,5.96,5.89,4.9,4.87,4.8,5.84,5.86,5.03,4.22,4.82,4.48,5.11,5.78,5.71,4.84,4.36,4.36,4.34,3.64,2.83,5.02,5.03,5.86,5.81,5.73,5.24,4.87,4.9,4.47,4.12,3.73,5.31,5.19,4.57,4.54,5.11,5.88,5.87,5.68,5.13,4.78,5.11,4.6,4.15,4.17,5.31,4.3,3.46,3.46,4.25,5.74,5.79,5.12,4.68,4.36,4.04,3.75,3.56,3.68,3.46,3.46,5.37,5.67,5.63,3.91,4.2,4.42,4.09,3.49,3.28,3.44,4.55,3.13,3.14,4.47,4.65,3.55,3.52,4.1,4.83,4.59,4.51,4.54,4.4,4.74
1968-11,2.57,2.4,2.35,2.36,2.2,2.72,2.92,2.89,2.83,2.77,2.53,2.64,2.96,2.97,3.18,2.94,2.54,2.53,2.98,3.73,3.97,3.16,2.96,3.08,2.87,2.4,1.62,2.7,2.74,3.96,4.01,3.99,3.48,3.2,3.33,2.96,2.76,2.49,3.62,3.44,2.58,2.57,3.01,3.98,3.98,3.91,3.32,3.39,3.72,3.32,3.15,3.19,3.62,2.86,2.23,2.23,2.88,4.06,4.04,3.41,3.29,3.25,3.07,2.75,2.39,2.54,2.23,2.23,3.85,4.11,4.11,4.31,4.52,3.82,2.94,2.66,2.51,2.41,3.56,3.02,3.48,3.32,3.09,2.67,2.57,3.01,3.52,3.14,3.68,3.65,3.69,3.98
1968-12,0.83,0.83,0.83,0.86,1.11,1.86,0.99,0.83,0.83,1.08,2.61,2.16,0.86,0.83,1.41,1.74,2.06,2.55,2.36,2.44,3,2.56,2.4,2.43,2.7,2.47,1.28,2.61,2.75,3.2,3.12,3.05,2.91,2.58,2.72,2.79,3.15,2.4,2.33,2.4,2.77,2.77,2.88,3.21,3.2,3.03,2.82,2.54,2.35,2.37,2.37,2.36,2.33,2.33,2.54,2.91,3.07,3.16,3.18,2.72,2.49,2.43,2.07,2.01,1.77,1.88,2.65,3.13,3.13,3.13,3.11,2.39,2.31,2.48,2.36,2.19,2.12,1.88,2.6,2.09,2.14,2.69,2.83,2.36,2.03,2.52,3.18,2.89,3.3,3.2,3.42,3.56
1969-01,0.85,0.85,0.85,0.85,0.85,1.83,0.92,0.85,0.94,1.27,2.91,2.35,0.85,1.3,1.41,1.57,3.05,2.9,1.96,1.7,1.71,2.29,2,2.02,2.33,1.96,0.93,3.39,3.26,2.51,2.46,2.72,2.79,2.27,2.6,2.41,2.22,1.69,3.11,3.19,3.25,3.27,2.83,2.4,3.26,2.92,2.81,2.42,2.6,1.72,1.7,1.95,3.04,2.95,2.95,2.95,2.61,2.27,2.75,2.55,2.15,2.29,1.97,1.7,1.53,1.61,2.95,2.95,2.68,2.6,2.46,1.87,1.9,2.33,2.28,2.14,2.04,1.83,1.99,1.86,1.89,2.49,2.22,2.11,1.96,2.28,2.8,2.26,2.7,2.76,3,2.53
1969-02,1.48,1.48,1.48,1.51,1.71,1.91,1.51,1.48,1.65,2.26,2.41,2.14,1.48,2.4,2.62,2.53,3.14,2.59,2.04,2.51,2.49,2.25,2.33,2.18,2.16,2.27,2.19,3.3,3.24,2.39,2.26,2.55,2.34,2.3,2.3,2.01,2.07,2.15,3.58,3.37,3.1,3.13,3.08,2.92,2.96,2.86,2.52,2.26,2.32,1.77,1.89,2.13,3.41,3.07,2.71,2.71,2.85,2.96,3.19,2.75,2.19,2.13,1.35,1.22,1.58,1.69,2.71,2.71,3.09,3.19,3.03,2.24,2.52,2.28,2.05,1.79,1.81,1.71,2.5,2.14,1.98,2.22,2.54,2.01,2.1,2.23,2.28,2.53,2.64,2.39,2.15,2.12
1969-03,2.13,2.13,2.13,2.13,2.13,2.72,2.17,2.13,2.24,2.65,3.38,3.04,2.13,2.7,2.83,2.84,3.4,3.37,2.87,2.94,2.89,2.97,2.86,3.18,3.17,3.02,2.64,3.91,3.99,3.43,3.26,3.38,3.25,3.14,3.48,3.22,3.22,3.08,5.07,4.82,3.9,3.89,4.16,4.4,4.19,3.66,3.4,3.18,3.11,3.24,3.32,3.57,4.97,4.33,3.64,3.64,4.24,4.75,5.02,4.43,3.46,3.43,3.35,3.17,3.02,3.13,3.64,3.64,5.46,5.96,5.73,3.85,3.7,3.78,3.65,3.25,3.09,3.06,4.96,3.86,3.07,4.01,4.01,3.33,4.1,4.2,4.03,4,5.37,4.41,3.68,3.63
1969-04,5.78,5.28,5.22,5.38,4.69,5.95,5.77,5.72,5.19,4.28,5.15,5.11,5.96,5.86,5.34,4.96,5.45,5.49,6.25,6.2,5.56,4.84,4.22,4.28,4.36,4.07,2.91,6.86,6.63,5.59,5.05,5.17,5,4.46,4.45,3.92,4.08,3.89,7.89,7.34,6.55,6.61,6.1,5.22,5.59,5.52,4.81,4.47,4.62,3.88,3.93,4.2,7.46,6.5,5.47,5.47,5.51,5.47,5.51,5.17,4.08,4.28,4.46,4.31,3.41,3.56,5.47,5.47,6.51,6.8,6.54,5.11,4.1,4.14,4.03,3.45,3.03,3.16,5.71,5.39,4.75,4.7,4.55,3.4,4.86,5.09,5,4.68,6.37,5.52,4.97,4.92
1969-05,5.2,5.31,5.34,5.07,4.35,5.45,5.38,5.41,4.88,4.08,5.17,4.6,5.42,5.23,5.01,4.8,5.88,4.74,4.63,4.82,5.13,4.9,4.03,3.92,4.15,4.11,3.84,7.55,7.32,4.11,3.84,4.84,5.19,4.41,4.31,4.27,4.55,4.08,8.17,7.9,6.59,6.74,5.92,4.39,5.35,5.25,4.81,4.19,3.35,3.56,3.9,3.65,8.13,6.21,4.17,4.17,4.4,4.53,5.52,5.26,4.04,4.01,4,3.88,3.85,3.84,4.17,4.17,5.61,6.01,5.92,4.96,4.34,4.22,4.2,4.06,4.07,4.12,5.61,5.14,4.66,4.41,4.35,4.31,5.62,5.63,5.04,4.39,7.28,5.91,5.19,5.15
1969-06,6.11,6.8,6.95,6.78,6.25,7.47,7.53,7.49,7.07,6.8,6.97,6.45,7.59,8.9,8.74,7.94,8.27,6.64,6.74,8.29,8.73,7.66,6.91,7.22,7,5.89,4.95,9.09,9.03,6.16,5.91,6.96,7.78,7.79,7.53,6.97,6.46,5.94,10.02,9.67,7.86,8.01,8.5,9.53,9.39,7.5,7.79,8.09,6.54,5.84,6.1,5.83,9.98,7.66,5.19,5.19,6,9.05,8.95,8.15,7.11,6.89,5.93,5.21,5.39,5.37,5.19,5.19,8.59,9.54,9.42,7.97,7.09,6.85,6.44,5.84,5.11,4.45,9.02,8.08,7.36,6.85,7.3,6.56,6.81,7.13,6.71,6.45,8.48,7.25,4.65,3.15
1969-07,5.8,8.54,9.67,10.11,9.59,7.67,7.3,7.63,8.87,9.15,8.31,7.81,8.82,11.51,11.05,9.3,9.12,9.67,11.79,11.83,11.26,9.35,8.32,8.16,8.67,7.45,5.64,9.34,9.58,10.05,9.45,9.72,10.36,9.61,9.55,8.26,7.79,6.9,8.06,7.75,7.56,7.81,6.65,5.52,11.55,10.06,9.68,9.72,8.53,6.76,6.3,6.04,7.79,5.95,4,4,5.02,5.64,8.94,7.08,8.29,7.98,7.65,6.73,5.03,5.21,4,4,9.99,11.66,11.15,7.65,8.44,8.11,7.71,6.35,5.99,5.91,10.58,9.51,8.25,7.78,8.56,6.75,8.94,9.03,8.37,8.56,11.35,9.28,8.28,8.44
1969-08,6.76,8.42,9.13,8.73,7.46,7.61,7.44,7.72,7.7,6.89,6.98,6.56,7.46,9.2,8.77,7.44,7.76,6.65,7.24,9.05,8.81,7.14,7.7,6.48,7.43,7.41,5.4,9.43,9,7.37,7.61,7.56,6.67,7.16,7.39,6.9,7.25,6.64,8.57,8.3,7.8,8.06,6.47,4.4,9,8.27,7.44,7.85,7.43,6.03,5.87,5.75,8.39,6.31,4.1,4.1,4.67,4.87,8.2,7.12,7.47,7.29,6.37,6.01,5.49,5.56,4.1,4.1,9.42,10.9,10.26,6.79,7.27,6.27,6.24,5.81,5.65,5.5,8.58,7.06,6.11,6.78,8.14,6.63,7.21,7.28,6.42,7.71,8.56,6.67,5.22,5.69
1969-09,4.76,4.99,5.14,5.08,4.44,5.02,4.56,4.67,4.64,4.2,4.49,4.12,4.58,5.82,5.43,4.84,4.5,3.99,4.63,5.84,5.68,4.78,5.25,5.17,5.48,4.96,3.83,5.4,5.29,5.12,5.16,4.75,4.67,4.91,5.56,5.19,5.19,4.84,6.63,6.08,4.72,4.79,4.92,4.75,5.17,4.74,5.19,5.16,5.2,4.73,4.84,4.85,6.3,4.82,3.25,3.25,4.23,5.07,5.11,3.86,4.8,5.1,5.02,4.79,4.55,4.68,3.25,3.25,5.93,6.67,6.32,3.99,4.76,5.04,5.01,4.67,5,5.14,5.73,5.33,4.96,5.17,5.73,5.16,4.64,5.14,4.94,5.42,6.08,5.65,4.59,4.65
1969-10,4.19,4.03,4.05,3.76,3.53,4.13,3.85,3.89,3.8,3.47,3.84,3.53,3.86,4.14,3.99,3.62,3.7,3.42,3.33,3.71,4.32,4.58,4.29,4.26,4.71,4.39,3.59,4.09,3.93,2.56,2.39,4.1,4.64,4.55,5.52,4.86,4.56,4.19,5.61,5.2,3.94,3.94,3.51,3.03,3.7,4.59,4.39,4.88,4.8,3.99,4.03,4.5,5.4,4.51,3.56,3.56,3.39,3.17,3.35,3.21,3.92,4.27,4.51,4.46,3.93,4.02,3.56,3.56,4.22,4.4,4.31,3.43,3.78,4.32,4.55,4.36,4.04,3.85,4.35,3.97,4,4.18,4.41,4.36,4.11,4.72,4.82,4.54,5.61,5.03,4.46,4.65
1969-11,2.24,2.24,2.71,3.33,3.3,2.48,2.26,2.24,2.9,3.25,2.74,2.61,2.76,3.5,3.57,3.03,2.71,3.14,3.75,3.74,3.51,3.19,3.03,2.99,2.77,2.14,2.1,2.48,2.81,3.29,3.07,3.37,3.47,2.89,3.11,2.73,2.37,2.31,4.04,2.78,2.3,2.32,2.37,2.43,2.84,3.46,3.07,3.13,2.89,2.56,2.57,2.67,3.16,2,2,2,2.21,2.4,2.75,2.93,2.59,2.97,2.78,2.73,2.5,2.62,2,2,2.5,2.64,2.59,2.28,2.52,3,3.03,2.78,2.94,3.14,2.4,2.19,2.21,3.51,3.21,2.9,2.15,2.7,3.52,3.17,3.66,3.47,3.21,3.04
1969-12,0.71,0.71,1.14,1.7,1.65,1.1,0.74,0.71,1.33,1.5,1.53,1.31,0.71,1.85,2.06,1.8,1.58,1.54,1.34,2.02,2.06,1.94,1.9,2.01,2.26,1.92,1.01,1.89,1.9,1.8,1.79,2.04,1.96,1.92,2.23,2.36,2.29,1.71,2.43,2.28,1.91,1.91,1.83,1.8,2.14,2.24,2.09,2.08,1.86,1.83,1.81,1.68,2.34,2.09,1.82,1.82,1.81,1.79,2.2,2.26,2.2,2.29,2.04,1.87,1.57,1.58,1.82,1.82,2.04,2.1,2.07,1.94,2.16,2.39,2.23,1.97,1.93,1.86,1.97,1.84,2.08,2.88,2.3,2.15,1.6,2.32,2.63,2.45,2.55,2.57,2.68,2.92
1970-01,1.1,1.1,1.1,1.1,1.1,1.1,1.1,1.1,1.16,1.38,1.15,1.1,1.11,1.4,1.47,1.42,2.12,1.86,1.27,1.43,1.51,1.87,1.39,0.92,1.26,1.67,1.67,2.19,2.1,1.34,1.31,1.53,1.95,1.41,1.52,1.31,1.47,1.59,3.24,2.66,2.36,2.33,1.74,1.58,1.97,1.78,1.52,1.58,1.61,1.23,1.4,1.82,3.05,2.81,2.81,2.81,1.99,1.56,1.45,1.43,1.51,1.69,1.2,1.32,1.4,1.52,2.81,2.81,2.08,1.88,1.78,1.53,1.81,1.63,1.56,1.56,1.63,1.63,1.47,1.38,1.56,2.05,1.73,1.63,1.26,1.54,1.93,1.47,1.79,1.83,1.38,1.05
1970-02,1.65,1.65,2.23,2.99,2.96,2.23,1.69,1.65,2.38,2.9,2.86,2.47,1.71,2.58,2.8,2.61,2.79,2.81,2.43,2.65,2.65,2.18,2.14,2.64,2.37,2.31,2.26,2.69,2.57,2.19,2.24,2.4,2.35,2.33,2.54,2.1,2.16,2.24,2.99,2.48,2.4,2.45,1.91,1.73,2.45,2.63,2.61,2.37,1.42,1.48,2.06,2.26,2.41,1.64,1.64,1.64,1.72,1.76,2.24,2.38,2.27,2.58,2.55,2.39,2.65,2.73,1.64,1.64,2.35,2.55,2.49,2.33,2.51,2.61,2.51,2.36,2.74,3.08,2.29,2.22,2.89,2.81,2.59,2.31,2.14,2.83,3.14,2.64,3.07,2.96,2.28,2.19
1970-03,2.21,2.21,2.5,2.87,2.87,2.57,2.23,2.21,2.55,2.76,3.05,2.58,2.23,2.56,2.64,2.66,3.84,3.14,2.85,2.85,2.94,2.92,2.68,2.76,2.94,2.93,2.05,4.14,3.93,3.11,3.19,3.33,3.23,2.97,3.02,3.04,3.26,2.77,5.35,4.4,4.05,4.07,2.78,2.37,3.53,3.57,3.41,3.03,3.16,2.93,2.85,2.79,4.7,3.84,3.84,3.84,2.95,2.5,3.67,3.63,3,3.01,2.96,2.95,2.74,2.7,3.84,3.84,4,4.05,3.91,3.26,3.17,3.23,3.15,2.94,2.72,2.64,3.46,3.3,3.47,3.76,3.43,2.44,3.68,4.11,4.09,3.77,5.23,4.5,3.62,3.57
1970-04,5.37,4.83,4.86,5.16,4.66,5.63,4.6,4.6,4.58,4.46,6.41,5.72,5.74,4.81,4.77,4.78,6.53,6.62,6.69,5.05,4.63,4.23,3.52,3.9,4.16,3.62,3.11,6.4,6.43,5.36,4.43,4.68,4.46,4.09,4.34,3.86,3.74,3.56,7.7,6.05,5.68,5.79,5.76,5.5,5.19,5.07,4.64,4.05,3.06,2.81,3.43,4.07,6.05,3.84,3.84,3.84,4.91,5.48,4.66,4.51,3.96,3.75,3.86,3.87,3.89,4.02,3.84,3.84,4.88,5.17,5.07,4.44,4.01,4.06,3.86,3.75,3.93,3.92,4.74,4.56,4.61,4.47,3.49,3.65,4.65,5.17,5.09,4.76,6.77,5.86,5.43,5.76
1970-05,5.47,7.54,8.25,7.23,6.42,6.46,7.46,7.63,6.99,6.11,6.59,6.42,7.45,6.79,6.46,6.06,6.07,6.15,5.85,6.16,6.26,5.69,4.91,4.95,5.09,4.89,4.07,7.36,7.04,4.77,4.97,5.29,5.35,4.91,4.93,5.04,5.36,4.59,7.88,6.68,6.61,6.77,4.09,3.05,5.62,5.54,4.87,4.68,3.87,3.66,4.02,4.15,6.22,4.01,4.01,4.01,3.54,3.32,5.26,2.35,3.82,4.45,4.7,4.74,4.12,4.13,4.01,4.01,6.13,6.72,6.13,2.9,3.99,4.3,4.25,3.94,4.04,4.1,5.11,4.84,4.8,4.92,4,3.1,5.1,5.4,5.1,4.39,6.58,5.63,4.52,4.42
1970-06,7.02,8.42,8.95,8.89,7.66,7.98,8.09,8.26,8.06,7.62,7.4,7.24,8.15,9.39,9.41,8.87,7.42,7.1,7.55,8.88,9.12,8.03,6.04,5.46,5.94,5.45,4.16,8.43,8.16,6.75,6.78,7.45,7.7,6.54,6.94,6.63,6.47,5.3,9.59,7.77,7.46,7.62,6.63,6.37,8.44,7.9,7.02,6.73,6.66,5.4,5.15,5.3,7.53,4.79,4.79,4.79,5.73,6.24,7.11,4.73,6.08,6.31,6.46,5.98,5.28,5.37,4.79,4.79,7.07,7.71,7.32,4.49,5.77,5.79,5.44,5.06,5.23,5.41,6.77,6.42,5.98,5.62,5.09,4.65,6.07,6.15,5.7,5.56,8.54,6.38,5.35,5.42
1970-07,6.82,8.47,9.02,9.9,8.71,7.67,8.5,8.64,8.44,8.47,6.96,7.05,8.48,7.25,8.43,9.3,6.77,6.69,7.72,7.41,7.55,9.33,7.85,7.5,7.03,5.84,4.83,7.81,7.62,8.26,8.62,9.34,9.48,8.25,8.41,7.2,6.28,5.45,8.96,6.99,6.74,6.93,5.11,5.15,10.67,10.03,8.7,8.47,6.48,4.91,4.89,5.62,6.57,3.37,3.37,3.37,4.4,5.01,8.57,7.44,7.56,7.37,7.6,6.41,5.4,5.62,3.37,3.37,8.18,9.52,9.04,7.06,7.33,6.75,6.57,5.18,5.41,5.55,7.52,7.18,7.06,5.94,7.36,5.72,7.21,7.1,6.85,6.97,8.83,7.01,5.49,4.44
1970-08,6.87,7.47,7.53,9.19,8.63,7.85,8.52,8.44,8.41,7.92,7.03,7.04,8.57,8.69,8.77,8.39,7.14,6.78,7.47,8.3,8.41,8.09,7.12,7.31,8.11,6.98,4.64,8.4,8.11,6.98,7.21,8.19,8.36,8.54,8.72,7.59,7,5.43,7.75,7.19,7.46,7.63,5.31,4.94,9.61,9.28,8.87,8.89,7.55,4.28,3.65,5.64,6.32,4.42,4.42,4.42,4.68,4.86,8.07,7.51,7.99,7.99,7.75,6.73,6.14,6.22,4.42,4.42,7.92,8.89,8.41,6.85,6.76,7.2,6.9,5.94,6.49,6.5,6.55,6.37,6.42,5.86,7.28,6.08,6.94,7.2,6.61,6.14,8.81,7.7,5.37,3.64
1970-09,5.6,6.54,6.86,6.7,5.71,6.12,6.5,6.6,6.24,5.48,5.4,5.45,6.7,7.44,7.21,6.51,5.8,5.4,7.26,7.29,6.06,6.66,5.24,4.92,5.55,5.06,3.44,5.66,5.46,6.23,5.84,6.02,6.2,5.51,5.54,5.18,5.36,4.36,6.24,5.49,5.31,5.36,4.21,3.97,5.77,6.82,5.32,5.22,5.21,4.2,3.83,4.24,5.5,4.52,4.52,4.52,4.27,4.16,5.72,5.32,4.97,4.99,4.8,4.14,4.22,4.31,4.52,4.52,6.11,6.55,6.13,4.99,4.93,4.75,4.44,3.9,4.26,4.33,4.45,4.62,5,4.99,4.61,3.76,4.8,5.26,5.02,3.85,6.91,5.63,3.55,2.75
1970-10,4.45,3.71,3.91,4.17,4.03,4.44,3.71,3.71,4.13,4.05,4.16,3.76,3.77,5.39,5.23,4.07,4.17,3.95,4.4,5.37,5.5,4.71,2.97,3.49,3.8,3.53,2.48,4.37,4.24,4.16,4.29,4.51,4.67,4.07,3.89,4.08,3.7,3.18,5.04,4.45,4.26,4.28,3.33,3.05,4.13,4.43,3.63,3.75,3.42,2.99,3.05,3.34,4.57,3.93,3.93,3.93,3.4,3.13,4.37,3.99,3.72,4.01,3.99,3.5,3.21,3.39,3.93,3.93,4.3,4.4,4.31,3.8,3.85,3.92,3.77,3.31,3.23,3.4,4.02,3.69,3.93,4.48,3.89,3.21,3.46,4.36,4.75,3.96,4.55,4.3,3.51,2.94
1970-11,2.13,2.13,2.34,2.61,2.54,2.84,2.18,2.13,2.56,2.3,3.63,3.14,2.2,3.4,3.59,4.01,3.77,3.75,3.7,3.83,3.87,4.38,3.51,3.41,3.13,2.59,1.9,4.14,4.13,4.13,4.2,4.61,4.52,3.68,4.11,3.37,2.94,2.47,4.15,3.74,3.89,4.64,4.44,3.53,4.73,4.91,4.14,3.81,2.95,2.55,2.62,2.65,3.48,2.58,2.58,3.09,3.65,3.41,4.11,3.55,3.79,3.86,3.54,2.95,2.8,2.9,2.58,2.58,3.74,4.06,3.92,3.36,4.08,3.98,3.47,3,3.03,3.09,3.49,3.36,4.24,4.25,3.43,2.99,3.28,4.02,4.39,3.45,4.41,3.97,3.26,2.41
1970-12,1.46,1.46,1.46,1.46,1.46,2.25,1.52,1.46,1.88,3.54,3.11,2.57,1.57,3.73,4.2,3.23,3.2,3.14,3.1,3.66,3.33,3.27,2.92,2.74,2.47,2.35,2.25,3.2,3.14,3,3.01,3.37,3.92,3.26,3.19,3,2.34,2.33,3.08,3.18,3.24,3.33,3.14,2.72,3.68,3.84,3.21,3.1,2.44,2.02,2.27,2.35,3.16,3.27,3.27,3.3,2.93,2.51,2.98,2.58,2.55,3.03,2.58,2.64,2.44,2.36,3.27,3.27,2.78,2.64,2.49,2.29,2.99,3.14,2.78,2.32,2.28,2.41,1.76,1.76,2.99,3.36,2.42,1.73,2.19,2.81,2.87,2.74,3.51,3.39,3.21,3.09
1971-01,3.06,3.06,3.06,3.06,3.01,3.06,3.06,3.06,3.06,2.85,3.06,3.06,3.06,3.08,2.87,2.02,3.13,3.13,3.26,3.63,3.78,2.95,2.47,2.23,2.11,2.16,2.16,3.39,3.42,4.18,4.1,3.78,3.32,3.05,2.9,2.41,2.12,2.15,3.11,3.19,3.21,3.23,3.86,4.41,4.38,3.88,3.37,3.29,3.14,2.36,1.94,1.95,2.74,2.74,2.74,2.75,3.46,3.75,3.75,3.1,2.98,2.77,2.4,2.06,1.68,1.69,2.74,3.14,3.36,3.36,3.33,2.99,2.88,2.83,2.46,2.36,2.21,1.81,3.28,2.93,2.87,2.96,2.65,2.47,2.47,3.05,3.28,2.7,2.73,3.14,3.31,3.03
1971-02,3,3,3,3,3.13,3,3,3,3,3.23,3.03,3,3,3.1,3.28,3.28,3.92,3.32,3.36,3.6,3.4,3.28,2.9,2.67,2.75,2.77,2.67,4.06,4.05,4.58,4.41,4.14,4.08,3.56,3.5,3.24,2.96,3.09,3.72,3.8,3.82,3.85,4.34,4.73,4.69,4.2,4.16,3.78,3.79,3.49,2.98,3.4,3.29,3.29,3.29,3.31,4.32,4.52,4.59,4.3,3.84,3.69,3.56,2.86,2.4,2.87,3.29,3.99,4.39,4.39,4.34,3.89,3.77,3.76,3.43,3.07,2.61,2.41,3.99,3.71,3.61,3.6,3.56,3.36,3.05,3.51,4.03,3.62,3.57,4.09,4.28,3.95
1971-03,3.86,3.91,4.66,4.78,4.7,3.86,3.86,4.13,4.77,4.36,3.93,3.86,3.86,4.27,4.26,4.5,5.82,4.7,4.89,6.28,6.88,5.9,5.41,5.16,4.77,4.02,2.97,6.78,6.9,8.26,7.9,7.15,6.39,5.75,5.44,4.51,4.36,3.97,6.87,6.74,6.26,7.14,7.34,8.66,8.58,7.17,6.03,5.83,6.47,4.77,3.76,4.12,6.87,5.6,4.31,5.89,7.38,7.87,8.13,6.7,5.43,5.32,5.25,3.82,3.29,3.61,4.32,6.29,7.41,7.41,7.27,6.26,5.81,5.51,4.86,3.78,3.42,3.27,6.26,5.86,5.79,5.67,5.15,4.21,4.92,5.48,5.36,5.28,5.34,6.2,6.07,5.94
1971-04,6.88,6.08,6.08,6.14,5.57,7.14,5.86,6.01,5.99,5.45,6.15,5.47,6.15,7.37,6.85,6.66,6.18,5.98,6.72,7.37,7.32,6.95,5.93,5.79,5.65,4.66,3.59,7.48,7.73,7.99,7.67,7.32,6.47,5.78,6.37,5.44,4.99,4.52,8.13,7.94,6.98,7.08,7.8,8.06,8.02,7.44,6.53,5.63,6.57,5.65,4.69,4.57,8.13,6.61,5.06,5.11,7.4,7.78,7.87,7.22,5.53,5.18,5.39,5.35,4.58,4.57,5.06,6.69,7.62,7.62,7.62,6.42,5.43,5.18,5.1,4.75,4.49,4.55,6.98,5.79,5.34,5.06,5.16,4.65,5.36,5.72,5.1,4.99,6.76,6.78,6.03,6.85
1971-05,5.54,6.57,6.9,6.62,5.89,6.75,6.41,6.8,6.5,5.64,6.79,6.04,6.8,8.05,7.25,6.66,7.52,6.77,6.72,7.53,7.6,6.98,6.27,5.15,5.04,4.7,3.57,8.8,8.84,6.38,6.28,7.09,6.33,6.03,5.45,4.87,4.92,4.74,6.45,7.78,7.78,7.84,7.49,8.49,8.11,7.69,6.34,5.91,6.34,5.06,4.47,5.25,4.98,4.98,4.98,6.21,7.44,7.97,8.19,7.16,6.07,5.19,5.36,4.57,3.94,4.56,4.99,6.63,7.57,7.57,7.48,5.81,5.68,5.46,5.27,4.77,4.2,3.96,6.82,5.58,4.5,5.5,5.58,5.25,5.95,6.24,6.35,5.67,6.97,6.86,6.71,6.96
1971-06,7.53,7.49,8.54,9.16,8.07,9.22,7.17,7.23,8.12,7.63,7.62,6.72,7.69,9.56,9.05,8.35,8.32,7.38,8.53,10.37,9.61,8.61,7.25,7.55,7.42,6.92,5.07,8.6,8.1,9.31,9.81,8.58,8.57,8.19,7.81,7.38,7.23,6.47,9.41,9.12,7.7,8.5,8.59,9.13,9.08,8.37,8.19,7.97,8.25,6.26,5.5,6.02,9.41,7.32,5.2,6.93,7.87,7.6,8.11,7.93,7.31,6.99,6.81,6.39,5.45,5.73,5.2,6.16,6.7,6.7,6.7,6.63,6.76,6.72,6.81,5.5,6.02,5.6,6.53,6.43,6.54,8.01,7.79,6.69,6.14,6.67,7.73,7.18,7.18,7.5,7.56,7.46
1971-07,7.43,8.24,8.49,9.14,8.57,8.12,7.46,8.27,9.07,8.59,7.81,6.82,7.54,11.36,10.71,9.6,8.47,7.18,8.59,11,11,9.31,8.65,8.15,7.31,5.85,4.3,9.88,8.89,8.68,8.46,8.9,8.8,8.99,8.28,7.25,6.65,5.73,10.49,10.14,8.47,8.7,10.22,10.63,10.13,9.45,8.76,9.03,8.41,8.03,6.3,6.07,10.49,7.48,4.42,4.49,8.05,9.05,9.04,7.3,7.96,8.76,8.4,7.92,6.2,6.2,4.43,6.7,8,8,7.87,7.26,8.1,8.12,7.71,6.43,6.3,6.2,7.36,7.41,7.82,8.27,8.56,7.3,7.36,7.93,8.26,8.27,7.8,7.89,7.97,8
1971-08,5.25,6.81,7.28,7.31,6.55,6.02,5.48,6.94,6.64,5.85,4.99,4.25,5.62,7.08,6.99,5.84,4.64,4.5,5.28,6.39,6.6,5.99,5.46,5.19,4.96,4.63,3.86,5.21,5.24,4.74,4.74,5.1,5.5,5.52,5.3,5.07,5.03,4.57,5.36,4.87,4.9,4.96,5,4.78,4.77,5.04,5.17,5.37,5.2,5.08,4.7,4.61,3.85,3.85,3.85,3.87,4.75,4.84,4.82,4.85,4.81,5.23,5.47,5.2,5.13,5.1,3.85,4.51,4.88,4.88,4.88,4.41,4.51,4.97,5.58,4.88,5.02,5.14,4.8,4.33,4.22,5.87,6.83,7.26,4.78,5.67,6.9,7.34,5.17,7.1,7.18,7.18
1971-09,6.33,6.02,6.02,6.73,6.17,6.6,5.41,5.88,5.72,5.13,5.54,4.79,5.21,5.43,5.05,4.99,5.13,4.99,5.06,5.17,5.09,5.21,5.3,5.4,5.09,4.77,3.49,5.78,5.78,5.73,5.42,5.17,5.39,5.58,5.56,5.48,5.41,4.57,4.83,5.28,5.31,5.42,5.69,5.72,5.69,5.23,5.3,5.56,5.68,5.26,4.18,4.37,4.14,4.14,4.21,4.74,5.08,5.62,5.39,4.62,4.99,4.84,4.55,4.03,3.68,4,4.82,4.94,5.28,5.57,5.5,4.59,4.7,4.69,4.25,3.52,3.62,3.68,5.16,4.34,4.36,4.77,4.83,4.3,4.09,4.56,5.16,4.88,4.61,5.14,5.34,5
1971-10,5.27,5.27,5.27,4.9,4.5,4.33,4.47,5.11,4.76,3.87,4.22,3.88,4.36,4.54,3.92,3.62,4.1,3.95,3.91,4.06,3.98,4.02,3.68,3.71,3.56,3.5,2.67,4.11,4.09,3.85,3.88,3.98,4,3.77,4.01,3.67,3.7,3.47,3.73,3.65,3.68,3.78,3.9,3.78,3.79,3.95,3.89,4.11,4.21,3.83,3.67,3.75,2.63,2.63,2.69,3.12,3.33,3.46,3.57,3.73,3.73,3.78,3.83,3.88,3.37,3.46,3.19,3.29,3.28,3.27,3.27,2.64,3.37,3.79,3.94,3.45,3.36,3.22,3.02,2.21,2.14,4.18,4.53,4.07,2.71,3.38,4.47,4.54,2.72,3.94,4.51,3.55
1971-11,3.03,3.03,3.03,2.34,2.2,3.03,3.03,3.03,2.73,2.2,3.01,3.03,3.27,3.51,2.68,2.74,2.47,3.02,3.52,3.5,2.88,2.95,3.12,3.24,3.19,2.7,1.92,3.03,3.24,3.49,3.41,3.11,3.29,3.42,3.63,3.16,3.11,2.64,3.53,3.46,3.23,3.89,4.18,3.31,3.32,3.38,3.3,3.58,3.7,3.27,3.38,3.3,3.53,3.19,2.86,3.29,3.44,3.23,3.26,3.22,3.32,3.36,3.39,2.84,2.54,2.59,3.07,3.11,3.15,3.18,3.17,2.82,3.21,3.5,3.42,2.85,2.62,2.51,3.05,2.61,2.62,3.47,3.97,3.52,2.18,2.86,3.38,3.76,2.76,3.43,2.84,2.74
1971-12,1.83,1.83,1.83,1.83,1.83,1.83,1.83,1.83,1.83,1.84,1.83,1.83,1.83,1.84,1.91,1.79,1.93,1.83,1.83,1.9,1.93,1.93,1.78,1.57,2.05,2.37,1.9,2.39,2.16,2.03,2.15,2.16,2.43,2.15,1.99,2.39,2.61,2.61,2.52,2.49,2.48,2.45,2.47,2.58,2.57,2.41,2.57,2.08,2.21,2.06,2.11,2.18,2.68,2.68,2.65,2.46,2.4,2.49,2.52,2.43,2.24,1.96,1.71,1.42,1.16,1.22,2.43,2.38,2.41,2.44,2.44,1.9,2.13,2.17,1.82,1.86,1.37,1.14,2.11,1.56,1.61,1.95,1.94,1.91,1.49,1.99,2.52,2.01,2.06,2.61,2.82,2.47
1972-01,2.45,2.45,2.21,1.92,1.92,2.45,2.45,2.31,1.92,1.92,2.45,2.45,2.48,2.02,1.92,1.92,2.45,2.56,2.9,2.58,2,1.91,1.79,1.72,1.75,1.78,1.76,2.77,2.87,3.27,2.94,2.67,2.22,1.88,1.74,1.74,1.84,1.92,3.02,2.97,2.96,2.89,3.02,3.27,3.24,2.75,2.24,1.78,1.75,1.98,2.34,2.35,3.23,3.23,3.2,2.92,2.87,2.9,3.05,2.8,2.12,1.78,1.76,2,2.31,2.35,2.9,2.84,2.76,2.69,2.68,2.17,2.04,2.07,2.03,2.11,2.13,2.31,2.24,1.82,1.86,2.17,2.27,2.25,1.7,2.21,2.73,2.27,2.59,3.05,2.85,2.6
1972-02,3.14,3.14,3.21,3.39,3.39,3.14,3.14,3.2,3.39,3.39,3.14,3.14,3.25,3.39,3.37,2.88,3.24,3.21,3.57,3.4,3.16,2.73,2.78,2.8,2.74,2.7,2.7,3.43,3.52,4.19,3.8,3.31,3.03,2.84,2.91,2.74,2.71,2.7,3.53,3.51,3.5,3.43,3.71,4.19,4.15,3.61,3.44,3.01,2.92,2.73,2.68,2.69,3.61,3.61,3.58,3.28,3.33,3.8,3.96,3.64,3.05,2.83,2.6,2.37,2.2,2.3,3.25,3.19,3.41,3.59,3.59,3.37,3,2.91,2.51,2.54,2.33,2.2,3.09,2.52,2.61,2.52,2.45,2.71,2.12,2.71,3.17,2.45,2.86,3.61,3.86,3.9
1972-03,5.79,5.83,6.1,6.15,5.93,5.79,5.79,5.92,6.25,5.02,5.8,5.79,6.05,6.38,6.24,5.3,6.06,5.87,6.63,6.4,6.21,5.6,4.53,4.35,4.4,4.02,3.04,5.94,6.05,7.62,6.95,6.27,6.01,5.11,5.34,5.09,4.53,3.96,5.09,5.41,5.46,5.56,6.49,7.62,7.56,6.64,6.45,5.39,5.32,4.82,3.98,3.98,4.4,4.4,4.45,5.03,5.54,6.69,7.08,6.56,5.26,5.07,4.22,3.81,3.53,3.62,5.07,5.19,5.73,6.18,6.14,4.67,4.63,4.9,4.64,3.9,3.66,3.53,4.81,3.52,3.65,5.51,6.12,5.78,3.15,3.96,5.75,6.12,4.08,5.1,5.58,5.5
1972-04,6.71,6.69,6.69,6.1,5.24,6.63,6.5,6.64,6.05,5.7,7.24,6.35,6.37,6.88,7.03,7.01,7.48,6.8,7.65,6.88,6.93,6.56,5.32,5.48,5.59,4.56,3.52,8.1,8.29,9.78,7.99,6.88,7.21,5.78,5.89,5.65,5.1,4.52,6.44,7.15,7.25,7.49,8.6,9.78,9.61,7.2,7.31,6.11,5.94,5.41,4.62,4.63,5.1,5.1,5.22,6.5,7.21,8.22,8.87,7.73,6.03,5.8,5.26,4.52,4,4.13,6.6,6.86,7.13,7.36,7.33,6.15,5.66,5.57,5.19,4.75,4.28,4,6.32,5.42,5.52,5.57,5.57,5.44,5.03,5.42,5.82,5.57,6.41,6.35,6.07,6.13
1972-05,5.65,5.38,5.37,5.18,4.5,5.82,5.02,5.26,4.99,4.53,5.34,4.59,4.64,5.33,5.4,5.39,5.59,4.98,5.26,5.71,5.58,5.39,5.04,5.19,5.46,5.12,3.87,6.21,6.23,5.8,5.78,5.76,5.73,5.11,5.44,5.65,5.77,5.04,5.04,5.56,5.64,5.68,5.81,5.8,5.8,5.71,5.5,4.94,5.14,5.07,5.07,5.07,4.11,4.11,4.15,4.55,4.88,5.63,5.71,5.4,4.89,4.85,4.86,4.59,4.44,4.57,4.59,4.67,5.15,5.55,5.52,4.53,4.5,4.71,4.84,4.55,4.48,4.44,4.54,3.7,3.85,4.89,5.21,5.11,3.24,3.82,4.99,5.21,4.11,4.67,4.88,4.84
1972-06,6.48,7.3,7.52,7.69,6.73,8.53,7.07,7.37,7.32,6.8,7.47,6.42,6.49,7.91,8.27,7.81,7.21,6.74,7.49,8.19,8.16,8.08,7.31,7.13,6.47,5.64,4.69,7.48,8.06,8.39,8.27,8.15,7.95,7.3,7.26,6.88,6.16,5.64,5.19,4.96,4.11,5.03,7.67,8.39,8.38,8.18,7.71,7.32,7.88,6.95,5.86,5.87,3.95,3.95,4.02,4.83,5.67,7.88,8.1,7.75,6.22,6.12,6.45,5.63,5.36,5.47,4.9,5.06,6.47,7.62,7.59,6.26,5.69,5.86,5.89,4.89,5.17,5.36,6.98,5.56,5.57,6.33,6.62,6.35,5.6,5.7,6.2,6.62,5.64,5.76,5.87,5.82
1972-07,5.47,7.75,8.3,8.26,7.1,6.84,6.81,7.95,7.88,7.29,6.56,5.82,5.98,8.48,8.92,8.75,6.02,6.01,7.52,8.27,8.55,8.54,8.55,8.45,7.38,6.53,5.13,6.04,8.73,9.25,8.59,8.14,7.88,8.17,8.07,7.35,7.19,6.31,9.18,8.88,4.74,4.49,8.52,9.25,9.19,8.26,7.75,7.14,7,6.43,5.93,5.94,9.18,5.85,3.28,5.32,6.58,9.12,9.19,8.39,6.72,6.32,6.36,5.35,4.72,4.98,5.49,5.9,7.65,9.08,9.08,8.1,6.44,6.51,6.28,5.42,4.98,4.72,9.08,8.7,6.72,7.16,7.25,6.7,6.64,7.1,7.21,7.26,6.24,6.82,7.17,7.12
1972-08,7.12,7.97,7.98,8.08,6.98,6.34,6.41,7.62,8.11,6.71,5.88,5.39,7.19,9.4,8.54,7.32,5.66,5.48,7.79,9.25,9.38,7.62,5.66,5.8,7.17,6.77,5.18,5.91,5.94,6.31,6.71,6.95,6.8,7.6,7.9,7.88,7.46,6.31,5.07,5.09,5.18,5.38,5.91,6.31,6.34,6.77,6.73,7.46,7.32,6.64,5.21,5.15,3.43,3.43,3.53,4.63,5.24,6.4,6.37,6.19,4.9,6.02,5.51,4.93,5.09,5.23,4.72,4.94,5.78,6.47,6.46,6.06,5.82,5.89,5.58,4.64,4.63,5.05,6.29,5.88,5.88,6.6,6.89,6.53,6.82,6.65,7.02,6.89,7.65,7.38,7.21,7.25
1972-09,5.25,5.56,5.56,5.71,4.85,4.88,4.69,5.35,5.32,4.78,4.51,4.07,4.17,5.56,5.75,5.66,4.19,4.13,4.89,6.01,5.91,5.5,5.19,5.53,5.62,4.97,3.22,4.92,5.16,5.2,5.73,5.99,5.07,5.67,6.12,6.13,5.81,4.7,3.78,3.08,4.39,5.28,5.32,5.2,5.25,5.89,5.09,5.75,5.66,5.09,4.27,4.25,3.01,3.01,3.01,3.86,5.66,5.94,5.64,5.69,5.47,5.33,4.84,4.03,3.63,3.76,3.01,4.97,6.36,6.36,6.34,5.54,5.3,5.31,4.62,3.8,3.69,3.63,5.95,5.06,5.07,5.34,5.42,5.17,5.13,5.98,5.88,5.4,5.19,6.14,5.36,5.21
1972-10,4.1,4.3,4.3,4.54,4.47,3.99,3.76,4.1,4.5,4.11,3.65,3.42,3.61,3.89,4.56,4.29,3.51,3.6,3.63,3.67,4.6,4.61,4.53,4.6,3.79,3.31,2.48,3.63,3.64,3.78,4.47,5,4.68,4.78,4.99,4.5,3.88,3.47,5.67,5.56,4.06,3.49,3.91,3.98,4.04,4.89,4.65,4.44,4.6,4.35,4,4.02,5.67,4.46,3.47,3.56,4.6,4.63,4.26,4.01,4.16,4.18,3.9,3.55,3.3,3.45,3.47,4.36,4.99,4.99,4.91,4.05,4.16,4.25,3.99,3.66,3.53,3.37,4.71,4.09,4.1,4.16,4.06,3.87,6.81,5.19,4.84,4.05,9.18,6.97,5.6,5.82
1972-11,1.51,1.51,1.52,1.86,1.69,1.51,1.51,1.74,2.04,1.84,1.51,1.65,2.01,2.04,2.26,2.5,1.79,1.98,2.04,2.06,2.67,2.8,2.46,2.36,2.33,2.08,1.43,2.48,2.31,2.47,2.87,2.93,2.98,2.65,2.62,2.48,2.25,2.06,2.44,2.46,2.62,3.12,3.39,3.03,3.03,2.94,2.94,2.73,2.77,2.6,2.6,2.63,2.4,2.4,2.42,2.75,2.93,2.97,3.03,2.81,2.57,2.42,2.46,2.14,1.85,2.01,2.69,2.74,2.74,2.76,2.7,2.57,2.54,2.52,2.42,2.42,2.07,1.85,2.57,2.57,2.57,2.43,2.38,2.39,2.38,2.97,2.9,2.38,2.22,2.99,3.39,3.39
1972-12,2.95,2.95,2.95,2.79,1.93,3.08,2.95,2.95,2.95,2.76,3.2,2.99,2.95,2.95,2.95,2.28,3.21,3.15,2.96,2.95,2.95,2.28,1.66,1.63,1.6,1.64,1.66,3.21,3.21,3.08,2.95,2.93,2.59,1.69,1.71,1.73,1.74,1.77,2.54,2.54,2.94,3.2,3.21,3.16,2.96,2.93,2.61,1.78,1.69,1.65,1.87,1.9,2.54,2.54,2.58,3.04,3.14,3,2.97,2.78,2.07,1.65,1.45,1.32,1.11,1.28,3.05,3.14,3.05,2.97,2.97,2.59,1.93,1.89,1.66,1.71,1.36,1.11,2.97,2.84,2.05,1.94,1.94,2.07,2.08,2.74,2.69,2.17,1.89,2.57,3.77,3.78
1973-01,1.76,1.76,1.69,1.15,1.22,1.76,1.76,1.76,1.57,1.17,1.76,1.76,1.76,1.82,1.62,1.19,1.76,1.76,1.79,1.82,1.82,1.77,1.5,1.25,1.27,1.35,1.34,1.76,1.76,2.06,1.98,1.86,2.13,1.81,1.82,1.67,1.58,1.58,1.76,1.76,1.76,1.78,1.95,2.15,2.13,1.87,2.12,1.83,2.14,1.95,1.74,1.7,1.75,1.75,1.8,2.14,2.32,2.53,2.4,2.16,2.06,1.88,1.84,1.49,1.35,1.37,2.19,2.27,2.53,2.75,2.73,2.18,2.13,2.17,1.78,1.52,1.39,1.34,2.4,1.89,1.9,2.04,2.1,2.03,1.92,2.74,3.38,2.57,1.95,2.91,3.54,2.69
1973-02,1.93,1.93,1.89,1.86,1.86,1.93,1.93,1.89,1.86,1.86,1.94,1.93,1.89,1.86,1.86,1.81,2.27,1.99,1.88,1.85,1.86,2,1.94,1.9,2.02,2.08,1.45,2.03,1.95,1.92,1.81,2.2,2.62,2.09,2.2,2.32,2.38,2.02,2.14,2.11,1.95,1.95,2.03,2.26,2.17,2.33,2.57,1.86,1.96,2.12,2.32,2.22,2.14,2.05,1.95,1.96,2,2.14,2.19,2.07,1.69,1.69,1.6,1.61,1.66,1.69,1.97,1.97,2.02,2.07,2.06,1.78,1.98,2,1.69,1.93,2.02,1.69,1.85,1.53,1.55,1.71,2.27,2.39,1.89,2.28,2.76,2.5,2.25,2.57,2.79,2.5
1973-03,2.98,2.97,2.92,2.92,2.94,2.98,2.98,2.94,2.92,2.92,2.98,2.98,2.98,3.27,3.77,4.1,3.28,3.29,3.37,4.21,4.26,4.19,4.07,4.23,3.66,3.87,5.2,4.5,4.52,5.98,5.56,5.02,4.58,4.18,4.67,4.25,4.11,4.54,4.33,4.38,4.39,4.5,5.25,6.4,6.34,5.49,5,4.25,4.46,3.99,3.12,3.38,4.1,4.1,4.28,5.62,6.16,6.28,6.32,5.56,4.19,3.91,3.29,3.11,2.84,2.85,5.82,6.13,6.17,6.21,6.16,4.74,3.97,3.77,3.18,2.48,2.71,2.83,5.41,4.26,4.25,3.8,3.49,3.37,3.87,4.4,4.63,3.9,3.48,4.24,4.75,4.07
1973-04,3.7,3.79,4.09,4.09,3.43,3.86,3.7,3.78,3.15,2.64,4.11,3.7,3.51,2.63,2.72,2.89,4.29,4.23,4.2,4.62,4.74,3.57,3.17,3.48,3.13,2.93,2.36,6.28,6.27,5.34,4.98,4.86,4.28,3.57,3.76,3.15,2.98,2.74,7.25,7.05,5.92,5.97,5.79,5.07,5.06,4.9,4.4,3.67,3.53,3.57,3.75,3.55,7.25,6.11,4.97,5.11,5.26,5.66,5.47,4.62,3.33,3.17,3.06,3.07,3.14,3.17,5.13,5.16,5.61,6.01,5.94,4.17,3.35,3.36,3.26,3.16,3.13,3.12,4.98,3.5,3.71,3.95,3.78,3.7,3.97,4.39,4.44,4.15,4.44,4.97,5.32,4.85
1973-05,4.96,5.2,5.29,5.43,4.81,5.56,5.53,5.3,4.66,4.62,6.05,5.77,5.42,5.54,5.89,5.89,5.59,5.88,5.99,6.39,6.29,5.77,5.12,5.14,5.25,5.2,4.01,6.36,6.65,7.24,7.08,6.72,6.07,5.11,5.53,5.51,5.48,4.9,5.41,5.98,6.18,7.18,7.51,7.45,7.38,6.82,6.18,5.03,5.55,5.38,5.04,4.96,4.71,4.71,4.75,5.58,6.16,7.53,7.5,6.82,5.48,5.09,4.8,4.81,4.82,4.83,5.13,5.2,6.48,7.6,7.6,6.69,5.27,5.32,5.24,5,4.86,4.81,7.6,6.77,5.3,5.74,6.03,5.95,5.28,5.82,5.97,5.77,5.24,5.78,6.13,5.66
1973-06,7.56,7.99,8,8.34,7.51,7.56,7.26,7.92,7.16,6.41,7.49,6.73,6.71,6.92,7.08,7.08,6.82,6.92,6.93,6.82,6.89,6.36,5.2,5.23,5.05,4.89,4.3,7.56,7.71,7.49,7.03,6.63,6.11,5.45,5.36,5.3,5.28,4.9,6.62,6.98,7.03,7.2,7.45,7.43,7.39,6.74,6.21,5.56,5.36,5.13,4.84,4.75,5.29,5.29,5.41,6.31,6.67,6.74,6.97,6.52,5.31,5.26,5.23,4.49,2.94,3.04,6.45,6.65,6.48,6.33,6.31,5.69,5.12,5.11,5.16,4.42,3.38,2.89,6.03,5.59,5.57,5.55,5.57,5.43,5.9,5.96,6.08,5.76,6.2,6.16,6.14,6.17
1973-07,6.49,7.98,8.39,8.86,7.75,7.27,8.5,8.58,7.83,6.92,6.7,6.76,7.76,8.39,8.03,7.37,7.48,6.84,7.44,8.34,8.23,7.38,6.44,6.49,6.48,6.32,4.41,7.01,6.87,7.56,6.94,7.04,7.94,6.85,6.57,7.08,7.22,6.12,7.92,7.64,6.17,6.25,7.34,8.6,8.18,7.36,7.98,7.18,6.67,6.52,6.28,6.09,7.92,6.21,4.48,4.54,7.26,7.86,8.13,7.5,6.56,6.93,7.09,6.14,4.24,4.34,4.49,6.33,7.38,7.38,7.35,6.6,6.29,6.67,7.05,5.32,4.53,4.19,6.94,6.31,6.72,7.45,7.94,7.68,6.46,7.29,7.45,7.59,6.6,7.22,7.64,7.08
1973-08,6.51,8.23,8.73,9.08,8.21,7.5,8.68,8.79,8.36,6.9,6.83,6.85,8,9.29,8.07,6.59,6.47,7.03,7.77,8.94,9.03,7.35,6.95,7.02,7.07,6.56,3.95,8.35,8.65,8.92,7.65,7.55,7.35,7.27,7.45,7.53,7.48,5.92,7.85,7.75,7.4,7.36,7.63,8.72,8.05,7.96,7.38,7.44,7.38,6.61,5.31,5.86,7.85,6.15,4.43,5.66,7.36,8.33,8.33,7.53,6.83,6.6,5.65,4.8,4.28,4.98,4.44,6.91,8.32,8.32,8.27,6.87,6.27,5.37,5.13,4.44,4.46,4.33,7.5,6.32,6.03,5.46,5.64,5.41,5.82,5.43,5.39,5.48,5.32,5.05,4.87,5.11
1973-09,5.4,4.87,4.56,4.07,3.56,5.76,5.7,5.59,4.64,3.96,5.36,4.98,5.14,5.46,5.08,4,4.96,4.7,4.78,5.43,5.29,4.61,4.48,4.41,4.26,4.02,2.87,5.42,5.99,6.38,6.09,5.2,4.79,4.89,4.93,4.75,4.59,3.92,6.88,6.62,5.19,5.61,5.98,5.97,5.25,5.48,5.22,5.22,5.47,4.82,3.77,3.71,6.88,5.57,4.26,4.63,5.03,6,5.37,4.34,4.48,4.69,4.32,3.88,3.04,3.07,4.37,4.39,5.5,6.47,6.28,4.5,4.42,4.31,3.97,3.3,3.11,3.02,5.71,4.6,4.59,4.13,3.8,3.74,4.55,5.05,5.35,4.36,4.51,5.11,5.51,4.98
1973-10,5.13,5.32,5.31,4.95,4.57,4.95,5.38,5.4,5.04,4.1,4.85,4.76,5.23,5.09,4.33,3.93,4.73,5.03,5.09,4.52,4.16,3.88,3.5,3.49,3.34,3.2,2.54,5.06,5.06,4.63,4.01,4.16,3.52,3.64,3.57,3.48,3.45,3.1,4.97,4.96,4.92,4.95,4.92,4.09,3.91,4.28,3.62,3.75,3.57,3.67,3.97,3.76,4.97,4.79,4.63,4.84,4.87,4.4,4.23,4.1,3.62,3.54,3.43,3.16,2.63,2.71,4.84,4.88,4.79,4.71,4.71,4.23,3.47,3.53,3.51,3.04,2.73,2.6,4.71,4.17,3.41,3.84,4.04,3.92,3.13,3.79,4.16,4.08,3.1,3.74,4.17,3.6
1973-11,3.96,3.72,2.96,2.96,2.81,4.09,3.95,3.4,3.3,2.32,4.31,3.99,4.1,3.95,3.64,2.96,4.08,4.07,4.22,4.4,3.86,3.6,3.25,3.01,2.97,2.85,1.71,4.13,4.15,4.02,4.09,3.89,3.83,3.28,3.14,3.43,3.48,2.79,3.76,3.79,4.08,4.41,4.54,3.47,3.23,3.74,3.82,3.13,3.34,3.49,3.72,3.51,3.76,3.76,3.81,4.29,4.28,3.34,3.2,2.98,3.11,3.26,3.06,3.11,3.59,3.73,4.24,4.33,3.84,3.42,3.36,2.78,2.86,3.23,3.19,3.02,3.17,3.34,3.02,2.44,2.56,3.46,3.37,3.32,2.73,3.08,3.8,3.49,3.02,3.06,3.71,3.19
1973-12,3.22,3.16,3.16,3.16,3.16,4.1,3.65,3.22,3.16,3.16,4,4.22,4.18,3.44,3.13,2.61,3.96,4.26,4.26,4.15,3.18,2.81,2.84,2.7,2.29,2.06,1.22,3.96,4.42,4.54,4.23,3.71,3.31,2.96,2.97,2.62,2.51,2.01,3.17,3.28,3.93,3.97,4.44,4.04,3.17,3.73,3.59,2.96,2.95,2.83,2.74,2.56,3.17,3.54,3.94,4.19,4.16,3.55,3.38,3.53,3.44,2.89,2.6,2.4,1.95,1.99,4.22,4.28,4.02,3.8,3.77,3.11,3.08,3.05,2.57,2.55,2.41,1.99,3.37,2.74,3.13,3.38,2.87,2.84,2.56,3.46,3.44,3.13,2.39,3.05,3.6,3.74
1974-01,2.82,2.73,2.39,2.36,2.36,2.81,2.82,2.68,2.36,2.36,2.79,2.81,2.82,2.51,2.31,1.84,2.78,2.79,2.82,2.78,2.33,1.89,1.89,1.53,1.02,1.01,1.01,2.78,2.86,2.67,2.55,2.33,2.16,1.87,1.37,1.08,1,1,2.66,2.7,2.99,3.27,3.46,2.38,2,2.14,2.23,1.58,1.28,1.47,1.71,1.66,2.66,2.96,3.29,3.45,3.45,2.78,2.33,2.18,2.12,1.4,1.08,1.59,1.94,1.94,3.45,3.48,3.17,2.9,2.9,1.98,1.88,1.8,1.31,1.55,1.81,1.94,2.49,1.71,1.71,1.58,1.45,1.46,1.98,2.17,1.64,1.53,2.25,2.51,2.26,2.38
1974-02,4.59,4.64,4.64,4.64,4.64,4.11,4.63,4.64,4.64,4.64,3.9,4.46,4.65,4.64,4.58,3.94,3.9,4.53,4.91,4.72,4.4,3.73,3.46,3.65,2.94,2.5,1.96,3.9,4.71,4.95,4.82,4.49,4.23,3.62,3.52,3.06,2.89,2.71,3.75,3.73,3.77,4.37,4.73,4.78,4.42,4.44,4.3,3.61,3.7,3.04,2.85,3.21,3.75,3.43,3.2,4.11,4.37,4.82,4.59,4.26,3.9,3.43,3.25,2.76,2.19,2.66,4.03,4.19,4.59,4.93,4.93,3.91,3.55,3.43,3.32,3.1,2.85,2.25,4.52,3.74,3.83,3.88,3.64,3.37,3.8,4.03,3.5,3.52,3.86,4.22,4.13,4.07
1974-03,4.61,4.54,4.39,4.33,4.09,4.61,4.59,4.47,4.46,3.5,4.61,4.85,5.01,5.22,5.13,4.84,4.99,5.52,6.07,6.75,5.63,4.85,4.66,4.56,4.19,3.96,2.95,5.63,5.7,6.18,6.39,5.29,5.1,4.61,4.75,4.83,4.88,4.19,5.87,5.8,5.55,6.13,6.36,5.96,5.77,5.27,5.64,4.54,4.85,4.35,4.6,4.41,5.87,5.42,5.03,5.68,5.78,4.37,4.23,4.44,4.06,4.01,4.13,3.5,3,3.62,5.53,5.63,5.03,4.51,4.29,3.91,3.86,3.88,3.78,3.19,2.92,2.95,4.51,4.26,4.06,4,3.58,2.99,4.2,4.63,4.52,3.66,4.2,4.66,4.85,4.76
1974-04,6.4,8.52,7.33,5.61,5.38,6.65,8.52,8.59,6.23,5.47,7.11,7.45,8.5,7.98,6.76,6.3,7.74,8.17,8.62,9.03,7.52,6.3,6.22,5.84,5.41,4.98,4.11,8.2,8.78,8.89,7.62,7.55,6.9,5.97,5.97,5.59,5.42,4.91,8.06,7.95,7.32,8.29,8.56,8.96,8.61,8.32,7.79,5.66,5.91,5.64,5.16,5.08,8.06,6.97,6.01,7.44,7.8,8.31,8.76,8.2,6.71,5.34,5.05,4.64,3.92,3.9,7.29,7.54,7.84,8.11,8.11,6.04,5.46,5.47,4.96,4.54,4.48,4.02,7.24,5.59,5.53,5.37,4.71,5.13,5.52,5.61,5.49,5.28,5.47,5.77,5.9,6.17
1974-05,7.49,7.7,6.85,6.85,5.96,7.67,6.99,7.15,6,5.21,7.44,7.06,7.77,6.74,5.89,5.9,7.74,7.7,7.78,6.75,6.2,5.98,5.73,5.61,5.15,4.84,3.81,7.95,7.89,7.92,7.35,6.41,6.21,5.52,5.76,5.57,5.53,5.03,7.57,7.43,6.69,7.9,7.95,7.76,7.35,6.67,6.69,5.44,5.68,5.25,4.83,5.27,7.57,6.23,5.1,7.07,7.48,7.26,7.3,6.49,5.29,4.96,5.06,4.82,4.04,4.61,6.94,7.31,7.23,7.16,7.16,5.56,5.11,5.12,5.1,5.1,4.35,4.03,6.5,5.22,5.2,5.38,5.46,5.42,5.6,5.96,5.68,5.45,5.98,6.2,5.56,6.17
1974-06,6.58,8.73,9.37,8.7,6.68,7.83,9.22,9.49,9.59,6.62,8.34,8.46,9.43,10.01,9.13,8.76,9.91,8.88,9.11,9.7,9.59,9.07,8.06,6.73,6.31,5.02,4.43,10.49,10.82,11.21,8.73,8.86,8.33,7.83,7.39,6.67,5.03,5.28,10.36,10.18,8.89,9.76,10.37,10.89,9.68,9.48,8.11,7.71,7.36,6.55,5.96,6.72,10.36,8.67,7.09,8.44,8.91,10.31,10.22,9,6.67,6.11,6.16,5.32,4.8,5.7,8.17,8.38,9.45,10.38,10.38,7.75,6.77,6.42,6.1,4.54,4.68,4.81,9.33,7.31,7.42,6.62,6.18,5.98,7.51,8.05,7.6,6.56,7.72,7.18,7.01,7.54
1974-07,6.53,11.15,12.87,11.92,9.89,8.44,10.21,10.78,11.07,8.42,7.99,8.4,10.35,11.51,9.53,8.13,8.24,9.21,10.16,11.57,11.6,9.38,8.67,8.17,7.72,6.14,5.3,8.84,10.49,10.77,9.3,10.43,9.54,9.35,8.72,7.97,6.05,5.76,8.05,7.87,6.82,8.26,9.28,9.93,8.12,9.51,9.31,8.61,9.17,8.17,5.94,5.81,8.05,6.32,4.77,6.73,7.51,10.58,9.27,8.45,8.54,7.53,7.49,6.64,5.37,5.01,6.44,6.77,9.22,11.35,11.35,8.34,8.06,7.46,6.97,5.91,6.35,5.46,9.99,7.37,7.33,7.17,7.86,7.22,7.7,7.85,7.61,7.82,8.04,8.07,7.52,7.6
1974-08,6.25,6.83,6.84,6.87,6.28,6.26,6.63,7.2,7.26,7.26,6.78,5.32,6.48,7.94,8.32,6.38,5.84,5.17,5.37,7.63,7.96,7.02,6.79,6.19,5.8,5.53,4.17,6.22,7.29,7.74,7.37,6.95,6.54,6.63,6.48,6.01,5.85,5.5,6.17,6,4.87,6.01,6.73,6.89,5.09,6.26,6.25,6.23,7.56,5.9,5.33,6.16,6.17,4.51,2.83,4.53,6.83,7.66,6.17,5.68,5.65,5.52,5.69,5.09,4.47,5.29,2.84,6.39,8.42,8.42,8.42,6.49,5.45,5.51,5.3,4.25,4.36,4.45,8.42,7.73,5.82,5.85,6.44,6.02,8.49,8.53,7.46,6.51,8.49,8.76,7.89,8.21
1974-09,4.34,3.74,3.66,4.25,4.18,4.63,4.26,4.21,4.27,4,3.79,3.65,4.32,5.61,5.29,4.15,3.6,4.1,5.14,5.55,4.99,4.43,3.33,3.22,3.13,3.07,2.67,5.36,5.46,5.46,5.13,4.33,4.24,3.47,3.88,3.5,3.32,3.07,3.38,4.25,5.46,5.46,5.46,5.07,4.22,4.3,4.32,3.65,4.16,3.94,3.65,3.58,4.19,5.44,5.51,5.51,5.51,5.29,4.66,4.39,4.42,3.95,3.86,3.47,3.12,3.15,5.53,5.53,5.53,5.53,5.53,4.43,4.04,4.12,4.16,3.69,3.28,3.1,5.08,4.23,4.21,4.88,5.13,4.96,4.97,5.88,6.38,5.2,5.72,6.51,7.03,6.33
1974-10,4.14,4.58,4.65,4.2,3.7,3.77,4.06,4.08,3.93,3.41,3.21,3.22,3.96,4.13,4.33,3.5,2.9,2.82,3.7,4.6,4.99,4.56,3.76,3.89,3.67,3.49,2.71,2.89,3.1,3.39,3.99,4.14,3.95,3.81,4.02,3.91,3.87,3.42,3,3,3,3.03,3.4,3.42,3.46,4.07,3.97,3.91,4.06,3.76,3.64,3.56,3,3,3.04,3.33,3.51,4.19,3.78,3.88,3.89,3.68,4,3.56,2.97,2.84,3.37,3.44,3.98,4.46,4.36,4.1,3.79,3.75,4.22,4.02,3.96,3.21,4.19,3.54,3.85,4.82,5.08,4.7,3.38,4.8,5.05,5.1,3.34,4.56,5.37,4.28
1974-11,2.87,3,2.81,2.56,2.4,2.82,2.98,3,2.77,1.94,2.67,2.6,3.05,3.23,3.09,2.38,2.52,2.65,3.16,3.22,3.16,2.71,2.69,2.75,2.34,2.1,2.09,2.86,3.07,3.08,2.67,2.71,2.89,2.55,2.56,2.3,2.24,2.24,2.5,2.49,2.43,2.45,2.76,3.18,2.48,2.86,3.32,2.63,2.54,2.3,2.53,2.53,2.5,2.44,2.39,2.45,2.81,3.3,2.91,2.53,3.3,2.62,2.85,2.26,1.71,1.77,2.46,2.47,2.73,2.95,2.92,2.33,2.24,2.45,2.97,2.79,1.71,1.69,2.62,2,2.01,2.86,3.08,3.08,2.24,2.86,3.32,3.28,2.48,3.07,3.57,3.67
1974-12,1.66,1.66,1.66,1.66,1.94,1.66,1.66,1.66,1.91,2.4,1.66,1.66,1.68,2.37,2.42,1.98,2.57,2.38,2.53,2.38,2.3,1.8,1.64,1.41,1.51,1.25,0.66,2.74,2.76,2.76,2.05,2.07,1.95,1.97,1.8,1.74,1.54,1.2,1.99,1.99,1.99,2.3,2.73,2.6,2.15,2.17,1.96,1.85,1.91,1.95,2.19,2.07,1.99,1.99,2.02,2.24,2.35,2.46,2.24,1.85,1.89,1.7,1.91,2.01,2.33,2.42,2.27,2.32,2.43,2.52,2.48,1.72,1.6,1.89,1.98,2.03,2.35,2.51,2.12,1.35,1.55,2.03,2.11,2.45,1.51,2.07,2.1,2.09,1.67,2.04,2.17,2
1975-01,0.82,0.82,0.82,0.82,1.29,0.82,0.82,0.82,1.19,2.53,0.82,0.82,0.87,2.36,2.69,2.4,2.61,2.28,2.59,2.73,2.83,2.45,2.24,2.23,1.66,1.62,1.18,2.92,3.02,3.02,2.29,2.63,2.41,2.2,2.27,1.99,2.1,1.9,2.04,2.04,2.45,2.7,2.84,3,2.26,2.71,2.58,2.17,2.42,2.23,2.25,2.55,2.04,2.06,2.49,2.6,2.62,2.79,2.47,2.29,2.36,2.11,2.21,2.18,2.31,2.57,2.56,2.56,2.65,2.74,2.7,2.34,2.39,2.53,2.4,2.13,2.38,2.54,2.74,2.58,2.47,2.41,2.21,2.46,2.6,2.74,2.32,2.01,2.6,2.85,2.82,2.69
1975-02,1.45,1.45,1.45,1.45,1.45,1.45,1.45,1.45,1.45,1.49,2.14,1.51,1.45,1.68,2.03,2.2,2.93,2.64,2.3,2.16,2.15,2.16,2.01,2.03,2.48,1.73,1.34,2.93,2.77,2.71,2.62,2.49,2.65,2.21,2.26,2.38,1.65,1.5,2.98,2.97,2.85,3.02,2.91,2.71,2.69,2.68,2.76,2.32,2.35,2.32,1.99,1.85,2.98,2.74,2.57,2.83,2.94,3.15,3.11,2.78,2.7,2.57,2.23,2.01,2.06,2.14,2.8,2.83,3.12,3.42,3.42,2.86,2.8,2.81,2.46,2.13,2.1,2.16,3.06,2.56,2.83,2.61,2.2,2.01,2.81,3.25,2.29,1.88,3.09,3.41,3.47,3.07
1975-03,4.47,3.48,3.18,3.18,3.18,4.47,3.52,3.18,3.18,3.18,4.47,3.87,3.18,3.18,3.41,3.95,4.47,5.08,5.09,3.93,4.02,3.91,3.38,3.16,3.46,3.02,2.59,5.32,6,6.21,4.79,4.41,4.15,3.24,3.15,3.37,3.19,3.05,5.45,5.42,5.16,5.25,5.98,6,4.6,4.64,4.43,3.42,3.52,3.05,3,3.42,5.45,4.86,4.4,4.67,4.89,4.81,4.6,4.22,3.98,3.52,3.32,3.11,3.11,3.42,4.74,4.79,5.26,5.73,5.42,4.36,3.97,3.63,3.28,3.05,2.88,2.98,5.18,4.42,4.33,3.68,3.73,3.59,4.72,5.05,3.64,3.54,5.05,5.54,4.65,4.77
1975-04,5.65,5.27,5.15,4.95,4.6,5.47,5.23,5.63,5.92,3.87,4.68,4.82,5.86,4.03,4.63,5.17,4.38,5.13,6.1,6,5.74,4.59,4.13,4.54,4.11,3.7,3.16,6.56,6.85,6.77,6.24,5.27,4.69,3.67,4.03,4.3,4.37,3.81,6.36,6.34,6.59,7.05,6.98,6.82,6.01,5.25,4.82,4.07,4,3.81,4.09,4.11,6.36,5.78,5.28,5.68,5.87,6.23,5.9,4.99,4.36,4.23,4.13,3.61,3.32,3.44,5.3,5.3,5.75,6.2,6.2,4.75,3.87,3.94,3.91,3.33,3.3,3.29,5.69,4.98,4.96,4.76,4.19,3.66,4.98,5.03,4.83,4.79,5.1,5.2,5.03,5.32
1975-05,5.82,5.77,5.42,5.24,4.43,6.18,5.74,5.34,4.14,3.47,5.52,5.47,5.41,3.95,3.76,3.76,5.73,5.62,5.75,4.46,4.22,3.73,3.4,3.72,3.98,3.92,3.32,7.28,7.52,6.81,4.87,4.81,4.07,3.57,4.1,4.8,5.02,4.23,6.1,6.69,6.92,6.94,6.8,6.45,4.87,4.87,4.07,3.43,3.86,4.2,4.16,4,5.48,5.48,5.55,6.09,6.19,5.94,5.39,4.66,3.77,3.18,3.62,3.89,3.93,3.88,5.99,6.05,5.88,5.7,5.7,4.11,3.76,3.86,4.05,4.23,4.19,3.97,4.77,3.47,4.15,4.89,4.62,4.39,4.21,5.21,5.39,4.99,5.04,5.61,5.51,4.77
1975-06,7.7,6.35,5.62,6.62,6.35,7.74,8.37,7.84,6.04,4.95,6.88,7.31,8.45,7.63,5.47,5.96,7.32,7.51,8.43,8.5,7.63,6.85,6.52,6.12,5.37,5.32,4.64,9.47,9.4,7.9,6.81,6.69,7.1,6.41,6.5,5.83,5.56,5.13,9.31,9.24,8.4,8.28,8.02,7,6.31,6.87,7.02,5.96,6.35,5.41,5,5.03,9.31,7.57,6.18,7,7.32,8.04,7.75,6.66,5.77,5.46,5.35,4.93,4.41,4.48,6.87,6.97,7.66,8.35,8.35,6.61,5.57,5.63,5.63,5.28,4.66,4.39,8.35,7.12,6.27,6.49,6.64,5.84,5.66,6.55,6.7,6.73,5.57,6.46,6.65,6.06
1975-07,6.57,7.4,7.66,7.84,6.58,6.57,6.59,7.43,6.16,5.44,5.62,5.56,5.62,6.27,6.22,5.56,5.85,6.19,6.87,6.59,6.46,6.78,6.29,6.53,6.42,6.25,5.43,7.11,7.16,7.18,7.13,7.03,7.16,6.5,6.85,6.71,6.61,6.06,5.04,5.85,6.24,6.43,6.97,7.18,7.08,6.99,7.13,6.64,6.93,5.91,5.13,5.24,4.1,4.1,4.11,4.17,4.55,6.43,6.8,6.68,6.13,6.09,6.27,4.99,4.05,4.15,4.18,4.19,5.41,6.64,6.64,6.12,5.93,6.01,5.92,4.92,4.3,4.02,6.38,6.01,6,6.54,6.79,5.69,6.01,6.7,7.28,6.97,6.01,6.78,6.88,6.26
1975-08,7.46,7.33,7.07,8.06,7.44,7.68,8.62,8.38,7.07,6.47,6.64,7.13,7.43,7.86,8.15,6.5,4.99,6.47,6.52,7.91,7.93,7.08,5.96,6.58,6.33,5.87,4.43,7.59,7.42,6.75,7.64,7.91,7.48,6.37,7,6.71,6.56,5.68,7.59,7.52,7.18,7.43,7.3,6.83,7.93,7.93,7.54,6.73,7.18,5.85,5.47,5.84,7.59,6,4.71,5.15,5.57,7.01,7.88,7.37,6.16,5.77,5.58,4.61,4.14,4.96,5.26,5.34,6.59,7.85,7.85,6.6,5.94,5.75,5.16,4.12,4.1,4.09,7.35,6.66,6.6,5.89,5.7,4.77,5.86,6.27,6.36,5.93,4.96,5.83,6.04,5.53
1975-09,4.81,3.1,2.6,4.67,5.62,5.35,4.2,3.37,4.78,4.89,5.13,5.08,5.39,5.58,5.31,4.78,6.46,5.9,5.6,5.43,5.18,5.02,4.73,5,4.68,4.37,3.7,5.62,5.39,5.59,6.06,6.23,6.02,5.41,6.04,5.54,5.31,4.56,4.49,4.72,4.92,4.99,4.8,4.71,6.24,6.24,6,5.55,6.17,5.02,4.48,4.44,3.82,3.82,3.79,3.65,3.8,5.1,6.01,5.87,5.09,4.75,4.91,4.27,3.72,3.81,3.62,3.59,4.73,5.87,5.87,5.01,4.88,4.91,4.69,4.32,3.89,3.7,5.33,4.58,4.61,4.76,4.74,4.49,4.21,4.72,5.05,4.85,3.78,4.54,4.67,4.12
1975-10,6.15,7.45,7.26,6.95,6.41,5.83,7.27,7.44,6.23,5.24,4.71,5.56,6.24,5.49,5.55,5.37,4.96,5.61,5.89,6.17,6.19,5.92,5.08,5.08,4.75,4.05,3.1,5.44,5.81,5.95,6.07,5.99,5.8,5.2,5.47,5.34,4.49,3.84,5.28,5.26,5.14,5.24,5.76,5.93,5.96,5.94,5.42,5.27,5.32,4.27,3.82,3.74,5.28,4.68,4.2,4.42,4.69,5.65,5.88,5.64,5.27,5.1,4.92,4.21,3.53,3.54,4.47,4.51,5.15,5.8,5.8,4.75,4.84,5.03,4.76,4.35,3.9,3.52,4.98,3.85,3.94,5.21,5.48,4.48,4.28,4.92,5.6,5.59,4.77,5.24,5.12,4.46
1975-11,3.61,3.61,1.92,1.71,1.71,3.61,3.61,2.67,1.71,1.72,3.61,3.61,3.58,2.78,3,3.36,3.65,3.66,3.59,3.38,3.39,3.38,3.84,3.96,3.07,2.7,1.83,3.84,3.84,3.95,4.25,4.44,4.51,3.97,4.15,3.67,3.48,2.71,3.46,3.59,3.67,3.76,3.92,4.06,4.42,4.42,4.48,3.96,4.1,3.29,3.28,3.24,3.25,3.25,3.36,3.86,4.11,4.32,4.43,4.42,4.34,3.85,3.7,3.11,2.53,2.65,3.99,4.08,4.26,4.44,4.44,3.91,3.6,3.67,3.61,3.39,2.87,2.5,4.44,4.21,3.75,3.77,3.96,3.32,4.37,4.48,4.47,4.18,4.37,4.42,4.06,3.43
1975-12,2.18,2.18,2.18,2.6,2.72,2.18,2.18,2.22,2.71,2.72,2.18,2.18,2.24,2.72,2.72,2.72,2.25,2.42,2.73,2.75,2.72,2.72,2.34,2.2,1.96,1.57,1.6,2.53,2.76,2.85,2.85,2.66,2.06,1.94,2.17,2.05,1.96,1.96,2.32,2.32,2.52,2.6,2.8,2.8,2.65,2.22,1.87,1.8,1.94,1.93,2.1,2.16,2.32,2.35,2.81,3.02,2.96,2.54,2.43,2.2,2.84,1.98,2.17,2.06,1.87,1.92,3.02,3.02,3.05,3.09,2.91,2.5,2.12,2,2.25,2.26,2.13,1.86,3.09,3.09,3,2.51,2.5,2.39,3.02,3.3,3.45,2.82,2.93,3.29,3.31,3
1976-01,3.12,3.12,3.04,3,3,3.06,3.12,3.1,3.01,3,2.86,3.12,3.12,3.06,2.98,2.67,2.76,3.08,3.12,3.11,2.81,2.73,3.1,3.17,3.19,2.49,2.49,3.3,3.12,3.03,2.59,2.62,3.26,3.66,3.11,2.73,2.52,2.45,2.36,2.35,2.64,3.31,3.28,3,2.56,2.55,2.99,3.63,3.17,2.55,2.31,2.35,2.36,2.16,1.99,2.62,3.24,2.91,2.85,2.59,2.7,2.82,2.27,2.36,1.57,1.8,2,2.67,3.24,3.24,3.13,2.61,2.31,2.72,2.71,2.46,2.47,1.65,2.93,2.51,2.76,2.88,2.63,2.89,2.41,3.08,2.96,2.47,2.3,2.99,2.99,2.97
1976-02,4.13,4.39,4.8,3.82,2.57,4.13,4.26,4.8,4.55,2.81,4.13,4.15,4.8,4.08,4.3,4.02,4.24,4.49,5.45,5.52,4.98,4.58,4.71,3.83,3.56,2.74,2.74,4.64,5.03,5.08,4.56,4.6,4.59,3.84,3.58,3.39,3,2.85,3.72,3.7,4.14,4.65,4.91,4.66,4.01,4.32,4.28,3.78,3.72,3.12,2.76,3.03,3.72,3.15,2.84,3.98,4.28,4.02,3.93,3.47,3.76,3.72,3.17,2.99,2.78,2.85,3.93,4.09,4.29,4.5,4.21,3.79,3.68,3.63,3.51,3.49,3.24,2.88,4.19,4.02,4.07,3.72,3.36,3.35,4.13,4.19,3.75,3.35,4.25,4.27,4.35,4.4
1976-03,6.02,6.02,5.98,4.72,3.6,5.34,5.96,5.87,5.35,3.81,5.05,5.67,6.16,4.75,5.23,5.22,5.53,6.72,6.97,7.1,5.63,5.45,4.77,3.68,3.96,2.8,2.57,6.6,6.44,6.53,5.51,5.53,5.61,4.81,4.27,4.08,3.46,3,6.4,6.34,6,6.67,6.54,6.21,5.52,5.88,5.26,4.4,4.22,3.85,3.27,3.31,6.4,5.11,4.25,5.84,6.2,5.9,5.56,4.48,4.38,3.97,3.54,3.38,2.79,2.91,5.8,6.03,5.97,5.91,5.75,5.23,4.03,3.75,3.43,3.05,2.95,2.65,5.74,5.45,4.69,4.11,3.81,3.4,4.54,4.64,4.17,3.96,4.47,4.62,4.58,4.56
1976-04,6.01,6.32,5.95,5.36,4.49,5.84,6.25,5.95,5.18,4,5.2,5.59,5.71,5.46,4.8,4.66,5.49,5.8,6.07,6.31,5.04,4.96,4.68,4.15,4.47,3.73,3.54,6.55,6.99,6.43,5.21,5.09,4.83,4.07,3.98,4.17,4.06,4.03,6.47,6.43,6.15,6.85,7.03,6.23,5.06,5.43,4.51,3.86,4.07,3.92,4.25,4.73,6.47,5.52,4.84,5.87,5.99,4.68,4.64,3.68,3.87,3.86,3.85,3.93,3.86,4.27,5.67,5.79,5.49,5.19,4.75,3.98,3.72,3.79,3.99,4.1,3.94,3.81,4.58,4.33,4.78,4.54,4.48,3.88,5.02,4.96,5.01,4.66,5.08,5.04,4.66,4.63
1976-05,4.78,5.08,4.98,4.81,3.98,5.24,6.22,6.04,5.64,3.62,5.42,5.88,6.21,4.96,4.92,4.91,5.87,6.46,6.4,6.14,5.13,4.96,4.26,3.98,4.31,3.85,3.74,7.06,6.68,6.25,5.28,5.24,5.26,4.63,4.43,4.3,4.21,4.24,7.11,7.05,6.41,6.67,6.61,6.33,5.64,5.7,5.05,4.5,4.43,4.3,4.47,5.11,7.11,5.77,4.77,5.77,5.9,5.19,5.3,4.44,4.48,4.2,4.27,4.54,4.18,4.49,5.7,5.83,5.41,4.98,4.91,4.49,4.54,4.38,4.6,4.95,4.5,4.07,4.71,4.45,4.45,4.93,5.4,5.39,4.89,4.82,5.93,5.58,5.43,5.35,4.99,4.91
1976-06,6.37,8.52,8.96,8.21,6.87,8.38,9.84,9.33,7.89,6.06,8.28,8.7,8.5,6.57,7.42,6.96,8.39,8.29,8.75,9.41,7.85,7.11,6.61,5.68,5.46,5.26,4.24,8.93,9.59,8.99,7.57,7.44,6.82,6.48,6.34,5.78,5.83,5.41,9.21,9.11,7.91,8.8,9.34,9.02,7.99,8.2,6.75,5.87,5.88,5.92,5.7,6.06,9.21,6.89,5.09,6.69,7.27,7.16,7.06,6.83,6.5,5.86,5.55,5.43,4.84,5.26,6.26,6.43,7.45,8.46,8.03,6.91,6.42,6.06,5.98,5.29,5.26,4.74,7.88,7.07,6.97,6.61,6.76,5.77,6.64,6.93,6.72,6.23,6.16,6.9,6.83,6.93
1976-07,7.19,9.77,10.72,10.04,8.18,7.33,8.42,8.46,7.54,7.02,7.4,7.21,6.69,7.64,7.72,6.64,7.02,5.39,5.67,6.58,8.03,6.85,6.27,6.12,6.14,5.65,5.39,6.41,5.88,6.26,5.71,5.83,6.49,5.78,5.81,5.43,5.11,5.41,7.51,7.5,6.72,7.09,6.42,5.68,5.07,5.98,6.57,5.65,5.54,5.18,5.28,5.38,7.51,7.51,7.41,7.33,6.58,6.07,6.11,6.14,6.01,5.48,5.26,4.37,4.65,5.06,6.97,5.58,5.23,5.23,5.33,5.27,5.37,5.09,5.29,4.67,4.44,4.65,4.95,4.7,5.23,5.52,5.65,5.2,4.85,5.82,5.84,6.29,5.04,5.9,6.1,6.33
1976-08,6.93,9.26,9.88,10.1,9.05,7.49,9.51,9.55,9.12,7.77,7.09,7.68,8.27,9.04,8.56,7.36,7.19,6.88,7.26,7.98,8.95,8.16,7.9,6.73,7.27,6.34,5.73,7.85,9.1,8.84,7.69,7.7,8.13,7.13,7.34,6.46,6.17,6.24,5.55,6.31,6.86,7.52,8.55,8.57,7.46,7.82,8.16,7.24,6.86,5.79,5.76,6.18,4.34,4.34,4.5,5.77,6.41,7.46,7.34,7.04,7.41,6.79,6.37,5.85,5.13,5.39,5.43,5.57,6.87,8.18,7.57,6.87,6.61,6.39,6.38,5.74,6.07,5.06,7.33,6.78,6.59,6.39,6.47,6.71,6.93,6.85,6.45,6.04,6.97,7.09,6.33,6.47
1976-09,4.98,5.9,6.2,6.24,5.5,5.29,5.65,5.65,5.28,4.45,4.59,4.67,4.7,5.15,4.88,4.12,4.57,3.8,4.06,4.61,4.55,4.62,4.88,5.39,4.61,3.92,3.19,5.02,5.03,4.8,4.74,4.83,5.1,4.9,5.25,4.7,4.39,4.14,5.72,5.66,4.49,4.54,4.79,4.76,4.52,5.06,4.99,4.81,4.87,4.47,4.63,4.82,5.72,4.37,3.17,3.26,3.65,4.79,4.54,4.6,5.11,4.79,4.41,4.33,4.5,4.7,2.93,2.9,4.43,5.96,5.59,4.95,5.55,5.01,4.91,4.66,4.6,4.56,5.97,5.65,5.77,5.19,5.06,4.87,4.4,5.63,5.42,4.76,4.3,5.67,5.55,5.24
1976-10,4.3,4.57,4.39,4.1,3.71,4.25,4.54,4.71,4.83,3.31,4.08,4.13,4.39,4.53,3.86,3.58,3.98,3.77,3.91,4.16,3.85,3.74,3.63,3.75,3.4,2.74,2.35,3.87,4.89,4.41,4.13,3.81,3.79,3.25,3.43,3.22,2.97,2.95,3.07,3.31,3.62,4.3,4.8,4.58,4,3.57,3.56,3.37,3.25,3.07,3.25,3.86,2.68,2.68,2.76,3.45,3.72,3.8,3.68,3.75,3.75,3.61,3.17,3.51,3.2,3.39,3.2,3.27,3.79,4.31,4.14,4.15,4.88,4.05,3.65,3.47,3.31,3.02,3.96,3.47,4.28,4.19,4.27,3.75,3.08,3.92,4.03,4.31,2.64,3.84,4.05,4.04
1976-11,2.85,2.85,2.85,2.85,2.93,2.85,2.85,2.85,2.92,3.15,2.69,2.85,3,3.18,3.14,2.63,2.2,2.72,3,3.27,2.99,2.49,2.61,2.4,2.33,1.88,1.86,2.25,2.8,2.78,2.14,2.4,2.24,2.14,2.34,2.39,2.08,2.1,2.2,2.2,2.14,2.02,2.5,2.65,1.94,2.06,2.24,2.14,2.33,2.01,1.97,2.23,2.01,2.01,1.88,1.87,1.96,2.62,2.6,2.36,2.35,2.35,2.3,2.11,2.14,2.25,1.83,1.83,2.06,2.3,2.33,2.27,2.47,2.18,2.01,2.16,2.07,2,2.15,1.94,2.34,2.39,2.48,2.47,1.72,2.42,2.46,2.32,1.51,2.14,2.56,2.87
1976-12,2.8,3.05,2.95,2.9,2.9,2.37,3.05,3.03,2.91,2.9,2.14,2.89,3.05,2.97,2.83,1.91,2.14,2.63,2.93,3.03,2.64,1.97,2.19,2.74,2.87,1.58,1.58,2.19,2.66,2.71,2.28,2.03,2.16,2.28,2.56,2.38,1.87,1.68,1.83,1.83,2.13,2.15,2.65,2.72,2.14,1.99,1.94,2.03,2.08,2.09,1.88,1.84,1.83,1.84,1.95,1.97,2.09,2.39,2.41,2.2,2.02,2.05,2.09,1.95,1.5,1.51,1.97,1.97,2.1,2.24,2.28,2.21,1.86,1.98,1.74,1.75,1.89,1.42,2.08,1.57,1.9,2.32,2.36,1.97,1.43,2.22,2.24,1.98,1.42,1.69,1.7,1.77
1977-01,1.72,1.72,1.61,1.56,1.56,1.73,1.72,1.7,1.57,1.56,1.79,1.74,1.72,1.64,1.53,1.08,1.82,1.9,1.71,1.7,1.44,1.06,1.29,1.43,1.45,1.46,1.51,1.8,1.94,1.88,1.5,1.42,1.66,1.62,1.51,1.54,1.52,1.64,2.34,2.32,1.75,1.81,1.95,2.05,1.68,1.39,1.39,1.58,1.71,1.84,1.71,1.74,2.34,1.98,1.75,2.15,2.25,2.21,2.27,1.57,1.47,1.48,1.53,1.87,1.84,1.74,2.25,2.32,2.14,1.96,2.07,1.94,1.84,1.7,1.62,1.63,1.7,1.75,2.05,2.06,1.92,1.9,1.83,1.64,1.74,1.86,1.81,1.93,1.72,1.79,1.61,1.71
1977-02,3.7,3.71,3.71,3.71,3.71,3.48,3.61,3.71,3.71,3.66,3.45,3.46,3.6,3.51,3.04,2.76,3.53,3.45,3.5,3.67,3.11,2.88,2.92,2.8,2.92,2.67,2.45,3.73,4.02,3.33,2.72,3.02,3.02,2.92,3.05,3.11,2.72,2.34,3.53,3.52,3.46,3.59,4.03,3.57,2.9,3.02,3.06,3.02,3.31,3.23,3.03,2.64,3.53,3.17,2.97,3.5,3.71,3.14,3.05,2.81,3.19,3.14,2.81,2.78,2.64,2.62,3.63,3.73,3.61,3.49,3.2,2.71,3,3.21,2.91,2.87,2.85,2.64,2.96,2.29,2.86,3.32,2.97,2.91,2.54,3.26,3.39,3.27,2.96,3.12,3.19,3.2
1977-03,5.71,5.71,5.78,6.41,6.41,5.21,5.66,5.96,6.41,6.38,4.99,5.4,6.18,6.33,5.95,5.33,5.29,6.02,6.26,6.67,5.7,5.31,5.08,4.67,4.79,3.83,2.82,5.67,6.35,6.25,5.18,5.31,5.11,4.22,4.78,4.48,4.2,3.58,5.71,5.69,5.59,6.49,6.57,6.17,5.3,5.36,4.79,4.33,4.99,3.89,3.63,3.48,5.71,5.18,4.79,5.52,5.62,4.87,4.92,4.54,4.41,4.25,3.83,3.42,3.06,3.16,5.2,5.26,5.09,4.92,4.8,4.45,4.36,4.07,3.66,3.27,3.07,2.94,4.62,4.17,4.43,4.43,4.06,3.92,4.05,4.72,4.66,4.37,4.01,4.72,4.48,4.26
1977-04,4.79,5.3,5.33,5.39,4.6,4.69,5.24,5.42,5.51,4.32,4.37,4.68,5.25,5.44,5.37,5.32,4.79,4.78,5.03,5.45,5.01,4.87,5.04,4.98,4.8,4.59,3.66,6.69,6.38,5.52,4.63,4.85,4.59,4.69,5.01,4.69,4.69,4.34,6.85,6.79,6.09,6.48,6.4,6.03,5.48,5.2,4.82,4.54,4.92,4.45,4.49,4.56,6.85,5.47,4.47,5.72,5.94,5.01,4.97,5.18,4.98,4.6,4.17,4.47,3.78,3.96,5.7,5.88,5.78,5.67,5.29,4.85,4.3,4.43,4.53,4.12,4.1,3.56,5.02,3.98,4.5,5.04,4.82,4.69,4.51,5.34,5.31,5.18,5.36,5.69,5.63,5.36
1977-05,5.99,6.2,6.3,5.31,4.28,6.06,5.93,5.67,4.72,3.84,4.73,5.2,5.32,4.93,4.54,4.36,5.24,5.62,5.69,5.6,4.18,4.47,4.85,5.15,5.03,5.23,3.93,7.31,7.24,6.36,5.39,4.22,4.12,4.14,4.6,4.88,5.42,5.23,7.88,7.81,6.81,7.25,7.26,6.15,4.78,4.34,4.06,4.04,4.6,4.81,4.82,5.67,7.88,6.45,5.41,6.62,6.48,3.93,4.03,3.39,3.57,3.66,4.42,5.31,4.87,5.2,6.61,6.78,5.28,3.77,3.8,3.5,3.52,3.91,4.43,4.44,4.86,4.64,3.78,3.77,4,4.38,5.01,4.99,4.62,4.73,4.52,4.92,5.59,5.46,5.39,5.31
1977-06,7.13,8.6,8.9,8.47,7.8,7.75,9.3,9.1,8.36,6.74,6.28,7.52,8.62,8.74,7.73,7.15,7,8.41,8.57,8.58,7.63,7.69,8.44,7.09,7.02,6.13,5.46,8.66,9.51,9.5,8.74,7.59,7.68,7.27,6.73,6.5,6.33,6,9.58,9.46,7.53,8.05,8.93,9.32,8.8,8.39,7.61,6.89,6.93,6.19,5.96,6.6,9.58,6.95,5.08,7.32,7.99,8.74,8.35,6.6,6.6,6.3,6.37,5.88,5.79,6.2,7.49,7.84,8.3,8.76,8.15,6.75,6.36,6.11,6.01,5.73,6.08,5.77,7.88,7.12,6.31,6.13,6.57,6.51,7.21,6.24,6.08,6.28,7.33,6.69,6.34,6.29
1977-07,6.74,10.07,10.95,10.44,10.2,8.25,10.65,10.73,10.42,9.41,7.25,8.39,9.75,11.22,9.86,8.23,7.87,8.48,8.96,10.02,8.6,8.47,9.44,8.58,7.64,6.92,5.17,9.99,9.82,9.14,7.85,8.6,9.14,9.13,9.03,7.35,7.08,6.2,8.18,8.11,8.58,9.15,9.47,9.81,9.27,9.43,9.34,8.84,9.01,6.9,6.4,6.89,8.18,6.38,5.05,6.78,7.48,7.7,7.61,8.02,8.54,7.66,7.51,6.39,6.07,6.55,6.39,6.59,8.03,9.46,8.42,7.6,7.79,7.5,7.05,6.14,6.09,6,7.98,6.2,7.07,7.74,7.56,7.35,7.16,8,7.82,7.58,8.56,8.55,7.62,7.44
1977-08,5.63,7.23,7.57,7.25,6.82,6.9,8.11,8.02,7.64,6.07,6.04,6.66,7.35,7.81,6.86,6.24,6.64,6.49,7.14,8.06,6.85,7.01,7.37,6.42,6.68,5.89,4.33,9.81,10.27,9.04,7.48,7.54,7.71,7.42,6.66,6.58,6,4.82,7.26,7.22,8.38,8.73,9.6,9.69,8.78,8.66,7.83,7.55,7.29,6.08,5.34,5.74,7.26,6.01,5.1,6.47,7.26,8.21,7.97,7.79,8.15,7.51,6.57,5.21,4.84,5.35,6.1,6.25,8.26,10.26,9.09,7.93,7.49,7.06,6.11,4.67,4.6,4.64,9.05,8.48,8.05,7.53,6.86,4.97,8.55,8.37,7.93,7.48,8.58,8.87,7.71,7.43
1977-09,6.31,7.03,7.17,6.51,6.19,6.13,7.3,7.38,7.37,6.3,5.83,6.51,7.38,8,8.12,6.22,6.36,7.16,7.35,7.79,7.4,7.01,7.2,6.03,5.64,4.67,3.47,7.82,9.9,8.21,6.71,7.63,7.8,7.78,6.62,5.2,4.74,4.37,6.49,6.46,7.07,8.14,9.42,8.92,7.49,8.53,7.76,7.59,7.04,5.07,4.51,4.7,6.49,5.63,4.97,6.05,6.71,7.4,7.11,6.51,6.84,6.42,6.17,4.94,4.35,4.42,5.47,5.54,7.33,9.12,8.16,6.9,6.48,5.95,5.38,4.41,4.43,4.16,7.98,7,6.77,6.4,6.34,6.08,5.88,6.47,6.63,6.4,4.71,5.78,6.05,6.11
1977-10,5.14,5.74,5.56,5.27,5.31,4.98,5.65,5.49,5.18,4.95,4.4,4.9,5.33,6.1,5.88,4.93,4.52,5.26,5.53,5.97,5.31,5.33,5.39,4.74,4.7,4.05,2.96,4.37,5.96,5.67,4.94,5.14,5.38,5.13,4.87,4.42,4.18,3.52,4.67,4.64,4.26,5.09,5.82,5.59,4.91,5.2,5.58,5.42,5.37,4.14,4.14,4.19,4.67,4.1,3.63,4.13,4.39,5.05,5.11,4.68,5.42,5.15,4.98,4.06,3.83,4.04,3.78,3.8,4.23,4.66,5.17,5.33,5.26,5.11,4.76,3.95,3.86,3.73,5.42,5.7,5.34,4.95,5.54,4.24,4.84,5.06,4.8,5.16,3.93,5.13,5.1,5.17
1977-11,4.46,4.46,4.41,3.82,1.97,3.44,4.37,4.27,3.93,2.3,3.01,3.83,4.55,4.06,3.56,3.06,3.4,5.05,4.94,4.53,4.17,3.64,3.59,3.27,2.96,2.4,1.52,4.25,5.59,4.78,3.8,3.77,3.69,3.34,3.25,2.99,2.67,2.2,4.25,4.24,4.15,4.44,5.22,4.85,3.76,3.59,3.57,3.6,3.6,2.95,2.59,2.65,4.25,3.91,3.62,3.86,3.96,3.64,3.55,3.26,3.3,3.31,3.24,2.99,2.32,2.38,3.69,3.7,3.94,4.18,3.76,3.27,3.43,3.21,3.15,2.78,2.49,2.13,3.63,3.31,3.37,3.27,3.49,3.45,3.36,3.91,3.45,3.5,3.36,4.51,3.77,3.61
1977-12,3.01,3.01,3.04,3.27,3.27,3.01,3.01,3.1,3.27,3.38,3.7,3.62,3.83,4.07,4.74,3.25,4.85,4.64,4.6,4.67,4.32,3.59,3.49,3.74,3.46,2.31,2.28,5.43,5.44,4.37,3.48,3.79,4.14,3.53,3.46,3,2.44,2.71,4.11,4.09,3.67,4.48,5.42,4.84,3.18,3.04,3.65,3.31,3.45,3.06,2.4,3.01,4.11,3.76,3.51,3.79,3.99,3.63,2.98,2.95,2.98,3.22,2.89,2.51,1.89,2.25,3.86,3.91,3.36,2.8,2.76,2.74,2.63,2.78,2.87,2.45,2.53,1.84,2.6,2.16,2.67,3.18,3.33,3.23,2.37,3.68,3.42,3.35,2.74,4.04,3.45,3.25
1978-01,1.72,1.35,1.35,1.35,1.35,2.18,1.56,1.35,1.35,1.35,2.21,2.1,1.42,1.35,1.35,1.35,2.21,2.21,1.58,1.42,1.36,1.35,1.36,1.4,1.4,1.46,1.46,2.21,2.21,1.78,1.51,1.64,1.96,2.11,1.53,1.38,1.45,1.46,2.33,2.32,2,2.08,2.22,2.03,1.76,2,2.15,2.02,1.43,1.38,1.43,1.46,2.33,2.06,1.95,2.5,2.68,2.5,1.84,1.82,1.98,1.78,1.58,1.58,1.65,1.46,2.64,2.74,2.74,2.47,2.02,1.97,2.08,1.77,1.65,1.85,2.04,1.46,1.94,1.68,1.87,1.8,1.45,1.44,1.79,2.19,1.99,1.65,1.99,2.48,2.21,2.23
1978-02,1.82,1.82,1.79,1.74,1.74,1.82,1.82,1.79,1.74,1.74,1.82,1.82,1.97,1.76,1.74,1.74,1.82,1.91,2.04,1.64,1.67,1.56,1.46,1.42,1.47,1.47,1.47,2.38,2.09,2.07,1.65,1.49,1.25,1.38,1.77,1.65,1.64,1.79,3.19,3.16,2.39,2.46,2.11,2.06,1.76,1.87,1.67,2.11,2.23,1.93,2.06,2.1,3.19,2.55,2.15,2.84,2.83,1.9,1.97,2.17,1.83,1.76,1.88,1.81,1.8,2.04,3.01,3.14,2.35,1.55,1.87,2.14,2.2,1.91,1.76,1.74,1.84,1.93,1.92,1.87,2.2,2.25,2.12,1.88,2.11,2.59,2.43,2.21,2.49,2.83,2.26,2.14
1978-03,4.86,4.86,4.88,5.09,5.07,4.85,4.86,4.94,5.03,4.48,4.72,5.19,5.32,4.52,4.69,4.54,4.65,5.72,5.86,5.99,4.54,4.4,4.21,3.35,3.55,3.02,2.68,5.53,7.06,6.32,4.81,4.43,4.56,4.48,4.09,3.76,3.57,2.92,6.23,6.18,5.49,6.65,7.14,6.23,4.74,4.66,4.47,4.1,4.69,3.67,3.56,3.45,6.23,5.17,4.45,5.81,6.18,5.68,5.01,4.17,4.19,4.18,4.15,3.63,3.28,3.35,5.59,5.76,5.97,6.18,5.81,4.85,4.58,4.32,4.16,3.88,3.65,3.27,5.72,5.56,5.23,4.81,4.63,4.55,5.46,5.57,5.12,4.74,5.3,6.09,5.05,4.58
1978-04,7.31,8.34,7.44,5.96,5.99,7.27,8.34,8.03,7.32,5.92,7.57,8.2,7.86,7.6,7.01,6.28,7.68,7.97,8.22,8.69,7.21,6.35,5.61,5.3,4.87,4.63,3.68,7.62,8.17,8.55,6.67,6.25,6.14,5.48,5.23,4.79,5.06,5.21,8.52,8.46,7.56,8.76,9.11,8.73,7.5,6.87,6.22,5.25,5.44,4.53,4.74,5.22,8.52,7.32,6.47,7.81,7.96,6.17,6.2,5.65,5.37,4.68,4.79,4.41,4.39,4.78,7.54,7.7,7.4,7.1,6.49,5.29,4.61,4.37,4.39,4.42,4.66,4.42,6.38,5.86,5.43,4.96,3.84,3.86,5.74,5.98,5.66,4.44,5.74,6.34,5.53,5.28
1978-05,5,4.94,4.72,4.25,3.95,5.16,6.66,6.23,5.1,4.34,5.88,7.08,6.97,5.84,5.43,4.6,6.55,7.69,7.34,6.65,6.16,5.79,5.26,5.02,4.92,5.24,3.75,8.36,8.43,7.68,6.18,6.03,6.02,5.35,5.12,4.76,5.36,4.94,9.34,9.25,8.25,9.8,9.13,7.87,6.77,6.55,6.03,5.09,5.25,4.53,4.66,5.53,9.34,7.36,5.87,7.74,7.99,6.19,6.19,5.37,5.51,4.93,5.36,5.12,4.7,5.09,7.21,7.41,7.06,6.71,6.46,5.96,5.82,5.54,5.48,5.34,5.4,4.75,6.28,5.43,5.79,6.13,6.32,6.15,5.6,6.28,6.18,6.27,6,6.53,6.27,6.18
1978-06,7.32,8.21,8.48,8.35,8.4,7.81,8.24,8.26,8.19,7.81,7.87,8.8,8.78,7.83,8.64,7.72,7.44,9.67,9.27,8.66,8.92,8.15,7.46,7.05,6.84,6.8,5.13,9.17,9.59,9.01,8.03,8.2,7.73,7.59,6.95,6.69,7.16,6.54,11.04,10.9,8.4,8.74,9.54,9.21,8.44,8.66,7.72,7.19,7.17,6.08,6.42,6.68,11.04,8.04,5.67,6.74,7.62,7.83,7.73,7.74,7.56,6.45,6.26,5.62,5.33,5.93,7.02,7.21,8.03,8.85,8.15,7.46,7.19,6.48,6.13,5.54,5.45,5.25,7.64,5.98,6.53,6.85,7.14,5.9,6.67,7.13,6.82,7.02,7.8,7.9,7.19,6.89
1978-07,8.15,11.97,13.28,12.02,11.12,8.73,10.8,10.89,10.24,10.8,8.95,10.29,9.95,10.23,10.4,9.88,8.12,9.46,9.72,10.24,11.37,10.47,10.42,9.6,9.14,8.72,6.32,9.43,10.3,9.87,9.79,10.43,9.95,9.93,9.47,8.28,8.23,6.86,9.27,9.18,8.86,10.88,10.76,10.43,10.58,9.82,9.95,9.64,8.99,7.46,6.96,7.03,9.27,7.09,5.34,7.2,8.04,10.17,10.19,8.56,9.11,8.4,7.35,5.91,6.13,6.74,6.13,6.25,8.33,10.41,9.68,8.55,8.22,7.78,6.89,5.71,5.66,6.18,9.38,8.95,8.59,8.14,7.95,7.66,8.77,8.94,8.52,8.17,8.5,9.41,8.76,8.8
1978-08,8.22,10.44,11.3,10.38,9.38,7.02,8.7,9.21,8.96,8.19,4.99,6.48,8.45,8.67,7.63,7.36,6.56,7.65,8.24,8.91,8.04,7.57,7.87,7.83,7.97,7.79,5.86,7.48,9.15,8.66,7.73,7.27,7.47,8.24,8.36,7.17,7.42,6.06,7.18,7.09,6.5,7.94,8.86,8.31,7.11,6.85,7.74,8.32,8.37,6.67,6.68,6.54,7.18,5.04,3.34,5.03,5.82,7.35,7.21,6.82,7.14,6.8,6.82,6.24,5.25,5.73,4.28,4.42,6.15,7.88,7.43,6.76,6.94,6.72,6.45,5.65,5.6,5.04,7.14,6.55,6.88,7.01,6.95,6.76,6.95,7.34,7.06,6.97,7.47,7.84,7.12,7.06
1978-09,7.59,8.39,8.88,8.07,7.24,5.34,6.25,6.75,6.51,6.3,2.84,4.34,6.27,6.19,5.66,5.44,4.27,5.93,6.09,6.02,5.28,5.25,5.53,5.52,5.23,4.68,3.36,4.84,6.27,5.57,4.7,4.77,4.88,5.18,5.6,5.23,4.51,3.5,5.23,5.16,4.36,5.73,6.28,5.51,4.7,4.81,4.77,5.07,5.34,4.56,4.16,4.15,5.23,3.67,2.31,3.09,3.59,4.83,4.78,4.26,4.56,4.01,4.33,4.11,3.66,3.86,2.23,2.22,3.67,5.12,4.86,4.49,4.25,3.88,4.11,3.53,4.11,3.6,4.74,4.52,4.48,4.48,4.69,4.51,4.35,4.72,4.63,4.7,4.32,4.79,4.8,4.8
1978-10,5.09,5.45,5.67,6.04,6.24,4.6,5.26,5.36,5.31,5.74,2.63,3.71,5.08,5.61,5.82,5.36,3.78,4.64,5.07,5.7,5.3,5.45,5.73,4.71,5.62,4.69,3.31,4.12,5.79,5.15,5,5.12,5.66,5.78,6.24,5.43,4.75,3.8,4.68,4.63,3.72,4.4,5.41,5.3,4.95,5.36,5.3,5.77,6.19,4.99,4.07,4.59,4.68,3.59,2.64,3.09,3.37,3.68,3.73,3.82,4.91,4.81,5.03,4.75,4.07,4.33,2.67,2.67,3.37,4.07,3.96,3.96,4.56,4.45,4.47,4.32,4.31,3.97,4.14,4.35,4.53,4.59,5.05,4.96,4.04,4.24,4.39,4.82,3.64,3.88,4.1,4.16
1978-11,1.64,1.64,1.7,2.2,2.19,1.64,1.64,1.84,2.2,2.25,1.8,1.78,2.03,2.39,2.85,2.48,1.89,2.01,2.07,2.22,2.57,2.56,2.59,2.54,3.07,2.07,1.41,1.78,3.17,2.55,2.2,2.43,2.81,2.67,2.83,2.72,2.22,1.64,2.75,2.74,2,2.09,2.88,2.7,2.19,2.43,2.78,2.92,3.06,2.73,2.5,2.26,2.75,2.73,2.64,2.23,2.17,2.22,2.19,2.53,2.55,2.48,2.62,2.62,2.21,2.18,2.15,2.08,2.2,2.33,2.28,2.34,2.46,2.46,2.48,2.31,2.45,2.09,2.32,2.4,2.68,2.82,2.73,2.67,2.42,3.13,3.01,2.8,2.41,3.24,2.86,2.63
1978-12,2.9,2.9,2.9,2.88,2.66,2.76,2.9,2.9,2.9,2.67,2.4,2.97,2.9,2.9,2.74,2.64,2.37,3.4,2.91,2.9,2.81,2.67,2.42,2.52,2.54,2.17,2.17,2.18,3.46,3.16,2.77,2.81,2.91,2.61,2.48,2.35,2.06,2.59,2.04,2.04,2.04,2.18,3.45,3.31,2.68,2.19,2.41,2.21,2.79,2.08,2.02,3.79,2.19,2.19,2.28,2.33,2.46,2.29,2.22,1.88,2.13,2.06,1.94,2,2.28,4.01,2.33,2.33,2.43,2.53,2.33,2.01,2.03,2.04,1.97,2.09,1.8,2.39,2.18,1.74,2.16,2.36,1.81,1.86,1.88,2.84,2.76,2.11,2.14,2.97,2.6,2.37
1979-01,1.67,1.67,1.67,1.67,1.67,1.67,1.67,1.67,1.67,1.67,1.67,1.67,1.67,1.67,1.69,1.73,1.67,1.67,1.67,1.68,1.74,1.74,1.93,2.29,2.29,1.86,1.57,1.67,1.67,1.68,1.74,1.74,1.75,2.03,2.24,2.29,1.82,1.57,1.92,2.1,1.7,1.7,1.74,1.74,1.74,1.74,1.93,2.09,2.17,2.29,1.78,1.57,2.11,1.92,1.79,1.91,1.93,1.74,1.74,1.84,2.06,2.08,2.11,2.27,1.72,1.57,1.94,1.96,1.96,1.83,1.81,1.92,2.03,2.03,2.07,1.97,1.67,1.57,1.74,1.34,1.91,2.18,1.87,1.87,1.83,2.71,2.73,2.17,2.52,2.84,2.74,2.59
1979-02,1.77,1.74,1.74,1.74,1.74,2.11,1.74,1.74,1.74,1.74,2.3,2.63,1.8,1.74,1.74,1.74,2.26,3.05,2.71,2.23,1.85,1.75,1.53,1.43,1.47,1.43,1.39,2.13,3,3.1,2.51,2.21,2.19,1.74,1.7,1.75,1.29,1.73,2.61,2.46,2.23,2.23,2.99,3.12,2.37,2.21,2.19,1.95,1.82,1.46,1.63,2.15,2.66,2.71,2.65,2.34,2.27,2.43,2.54,2.27,2.18,2.04,2.2,1.81,1.85,2.11,2.26,2.2,2.02,1.83,2.18,2.31,1.99,1.91,1.68,1.86,2.02,2.05,2.22,2.41,2.01,1.55,1.78,2.01,2.37,2.52,2.21,1.92,2.35,2.89,2.29,2.19
1979-03,4.2,4.2,4.2,3.48,2.72,4.2,4.2,4.2,3.26,2.86,4.37,4.35,4.46,4.26,3.65,3.85,4.35,4.61,4.66,4.74,4.13,4.3,4.26,3.69,3.83,3.15,2.19,3.93,5.27,4.94,4.19,4.29,4.5,3.67,3.68,3.77,3.54,3.29,5.16,5.33,4.15,4.67,5.22,5.23,4.82,4.59,4.63,3.74,4.31,3.99,3.81,3.82,5.34,5.32,4.93,4.84,4.72,4.02,4.15,3.92,3.99,3.7,3.97,3.85,3.49,3.7,4.76,4.76,4.33,3.89,3.88,3.92,3.95,3.75,3.85,3.95,3.62,3.53,3.88,4.03,4.13,3.92,4.1,4.11,4.29,5.08,4.66,4.23,4.53,5.62,4.46,3.93
1979-04,4.73,5.56,5.1,4.36,4.06,4.58,5.46,5.27,4.64,3.87,4.12,4.86,5.44,5.02,4.49,4.3,5.59,5.96,6.04,5.9,4.57,4.4,4.32,4.01,4.23,3.66,3.03,5.68,6.99,6.7,5.28,4.59,4.39,4.16,4.04,4.37,3.8,3.37,7.32,7.51,5.66,6.98,7.27,6.55,5.47,5.07,4.43,3.79,4.49,3.95,3.64,3.9,7.59,6.14,5.02,6.12,6.23,4.94,4.99,4.27,4.19,3.69,3.71,3.92,3.19,3.7,5.81,5.92,5.52,5.12,4.79,4.2,3.84,3.67,3.51,3.71,3.78,3.73,4.54,4.13,3.84,3.28,3.66,3.66,4.51,4.71,4.52,3.95,4.96,5.17,4.79,4.56
1979-05,4.46,4.69,4.61,4.45,4.65,5.06,5.65,5.42,5.08,4.68,4.54,5.22,5.83,5.73,5.57,4.72,5.26,6.34,6.49,6.71,5.17,4.79,4.8,4.98,4.43,4,3.32,6.18,6.44,6.5,5.02,4.89,4.56,4.3,4.26,4.57,4.46,3.91,7.66,7.56,6.58,7.78,6.96,6.87,6.36,5.51,4.78,3.89,4.39,4.27,4.67,4.93,7.65,5.59,4.14,6.29,6.69,5.68,5.73,4.7,4.58,3.97,4.47,4.64,4.39,4.82,6.12,6.41,6.28,6.14,5.53,4.54,4.59,4.31,4.63,4.51,4.48,4.54,5.26,4.96,4.69,3.99,5.25,5.22,5.42,5.2,5.02,5.22,5.85,5.67,5.51,5.51
1979-06,6.25,7.54,7.96,6.77,6.23,6.68,7.19,7.44,7.26,6.58,4.44,5.96,7.85,7.68,7.48,6.09,6.3,8.34,8.37,8.05,6.46,6.39,6.77,6.8,5.93,5.51,4.47,6.86,8.81,8.58,6.63,5.98,6.12,6.55,6.35,6.03,5.96,5.69,9.3,9.04,6.49,8.13,8.86,8.48,7.18,6.87,6.08,5.99,6.73,5.87,6,6.27,9.16,6.7,4.69,6.04,6.49,6.24,6.28,6.13,6.09,5.79,5.68,5.44,5.41,6.09,5.38,5.48,6.13,6.79,6.42,6.05,6.42,6.06,5.98,4.89,5.98,6.35,6.29,5.78,6.15,6,6.89,6.65,6.19,6.54,6.66,6.86,6.73,6.5,6.62,6.81
1979-07,8.04,9.17,9.13,8.44,7.66,7.69,9.34,9.12,8.27,7.29,6.8,7.77,8.6,8.81,8.4,6.89,7.26,8.24,8.91,9.85,8.31,8.04,7.58,6.83,6.06,6.28,4.77,9.05,9.73,9.14,8.74,7.81,7.63,7.26,6.48,6.25,6.15,4.85,9.06,8.38,8.22,9.49,9.72,9.41,9.22,8.14,7.61,6.33,6.12,5.95,5.77,5.88,8.46,6.36,4.6,5.88,6.68,7.88,7.79,7.06,7.24,6.17,5.66,5.25,5.02,5.69,4.9,4.94,7.09,9.24,8.36,7.33,6.46,6.24,5.52,4.54,5.63,5.69,8.2,7.57,6.77,5.84,6.66,6.42,7.4,7.18,6.66,6.7,7.19,7.91,7.22,7.21
1979-08,6.13,8.18,8.87,8.27,7.72,6.36,7.47,7.54,6.92,7.01,5.14,5.93,6.75,7.47,8.13,7.17,6.17,6.17,6.81,7.87,8.48,7.53,6.93,6.52,5.9,5.43,4.48,5.82,7.2,7.75,6.76,6.91,6.99,6.55,6.27,6.02,5.62,5.37,6.76,6.36,5.51,7.53,7.7,7.7,7.39,7.74,6.5,6.18,6.2,5.44,5.43,5.9,6.43,4.95,3.82,5.47,6.21,8.01,7.73,6.38,6.47,5.83,5.69,5.14,4.95,5.54,4.78,4.92,6.86,8.8,8.21,6.78,6.26,5.97,5.49,4.54,5.08,5.16,8.02,7.69,6.99,5.94,6.86,6.58,7.87,7.68,7.22,7.02,8.02,8.13,6.43,6.71
1979-09,5.25,7.22,7.8,7.38,6.97,5.32,6.99,7.01,6.49,6.26,4.88,5.53,6.19,6.78,6.82,5.62,5.54,5.4,6.1,7.28,6.15,6.08,5.36,5.43,5.48,4.79,3.81,5.53,6.89,7.04,6.24,6.25,6.28,6.02,5.88,5.22,4.69,4.04,6.73,6.78,5.33,6.83,7.17,7.21,6.93,6.85,5.88,5.25,5.87,4.91,4.64,5,6.86,5.32,4.04,5.04,5.68,6.73,6.52,6.36,5.85,5.17,4.56,4.75,4.32,4.79,4.41,4.46,6.34,8.21,7.36,6.27,5.72,5.09,4.67,4.32,4.6,4.53,7.12,6.04,5.74,4.83,4.22,4.18,5.25,5.66,5.87,4.78,4.5,4.94,4.61,4.46
1979-10,5.47,8.08,7.77,7.27,7.24,5.27,7.87,7.69,7.01,6.72,4.81,5.85,6.84,7.46,7.56,6.36,5.9,5.93,6.73,8,7.77,6.68,6.03,5.83,4.69,4.48,3.33,5.56,7.85,7.85,6.51,7.12,7,6.43,5.86,5.1,4.8,4.22,6.66,6.72,5.56,6.88,7.84,7.86,7.06,7.57,7.07,5.72,6.31,4.62,4.27,4.72,6.76,5.97,5.29,5.79,6.23,6.83,6.66,6.23,6.21,5.37,4.71,4.44,4.6,4.9,5.28,5.28,6.75,8.21,7.56,6.43,5.63,5.27,5.02,5.03,5.12,5.35,7.42,6.37,5.8,5.14,5.64,5.62,5.74,6.41,5.86,5.66,5.23,6.92,5.7,5.25
1979-11,2.12,2.93,2.88,2.46,2.46,2.06,2.86,2.77,2.46,2.51,1.9,2.37,2.77,2.82,3.17,2.9,2.4,2.89,3.1,3.33,3.46,3.11,2.89,3.18,2.86,2.54,1.92,3.99,3.94,3.68,3.03,3.11,3.19,2.85,2.87,2.77,2.5,2.13,4.17,4.13,3.62,4.14,4.03,3.61,2.98,2.89,2.81,2.77,3.02,2.48,2.54,4.21,4.17,3.19,2.44,3.15,3.42,3.49,3.35,2.97,3.11,2.8,2.82,3.02,2.81,3.93,2.95,3.02,3.5,3.98,3.69,3.23,3.26,2.98,2.91,2.78,3.15,3.4,3.59,3.21,3.45,3.46,3.15,2.8,3.31,4.7,4.01,3.39,3.48,5.59,4.17,3.7
1979-12,2.82,2.82,2.81,2.75,2.75,2.82,2.82,2.8,2.75,2.74,2.83,2.82,2.77,2.69,2.56,2.33,2.99,2.96,2.48,2.43,2.47,2.33,2.3,2.17,2.61,2.38,2.38,2.99,3,2.62,2.04,2.21,2.24,1.97,2.47,2.25,2.23,2.24,2.58,2.57,2.59,2.91,2.97,2.78,1.91,2.05,2.17,1.76,2.39,2.31,1.94,2.04,2.58,2.35,2.14,2.28,2.32,2,1.93,2.13,2.28,2.05,1.8,2.17,1.92,2.04,2.11,2.1,2.16,2.23,2.25,2.18,1.86,2.03,2.05,2.08,2.39,2.48,2.26,1.93,2.14,2.35,2.41,2.47,1.64,2.52,2.64,2.51,1.43,2.28,2.65,2.66
1980-01,2.34,2.34,2.31,2.02,2.02,2.34,2.34,2.23,2.02,2.03,2.19,2.21,2.08,2.14,2.14,1.96,1.99,1.99,2.14,2.4,1.97,1.91,1.77,2.16,2.11,1.68,1.68,2.36,2.22,2.3,1.75,1.72,2.06,1.86,2.13,1.78,1.68,1.88,2.8,3.14,2.86,2.99,2.52,2.3,1.61,1.71,1.94,1.63,2.19,1.87,1.76,2.24,3.16,2.72,2.37,2.61,2.56,1.83,1.81,2,1.97,1.81,1.86,1.69,1.53,1.93,2.52,2.54,2.23,1.92,1.99,2.04,1.95,2.01,1.91,1.72,1.74,1.73,2.05,1.97,2.1,2.13,2.47,2.39,1.96,2.41,2.52,2.49,2.01,2.19,2.5,2.42
1980-02,3.15,3.15,2.84,2.33,2.33,3.14,3.15,3.11,2.41,2.33,3.04,3.1,3.15,2.71,2.33,2.37,2.99,2.75,3.04,3.08,2.62,2.52,2.73,2.77,2.77,2.69,2.69,3.04,2.69,3.09,2.48,2.57,2.8,2.75,2.72,2.64,2.58,2.6,3.42,4.02,3.16,3.75,3.19,3.08,2.48,2.3,2.44,2.62,3,2.74,2.39,2.47,4.06,3.38,2.82,3.21,3.25,2.85,2.86,2.54,2.35,2.39,2.47,2.43,2.36,2.39,3.01,3.04,2.93,2.81,2.84,2.56,2.3,2.31,2.14,2.17,2.36,2.41,2.82,2.75,2.7,2.5,2.34,2.2,2.57,2.87,2.92,2.57,2.38,2.72,2.91,2.99
1980-03,5.69,5.66,5.66,5.66,4.16,6.22,5.9,5.66,5.66,3.36,6.3,6.28,5.96,5.73,4.45,3.87,6.15,6.3,6.28,6.26,5.28,4.5,4.53,4.05,4.03,3.64,2.62,5.73,7.04,6.68,5.02,4.91,4.89,3.96,4.03,3.99,3.56,2.4,5.91,6.27,5.65,6.51,7.03,6.38,4.83,4.72,4.75,3.76,4.69,3.58,3.27,3.47,6.31,5.61,4.98,5.32,5.36,4.99,5.08,4.4,4.61,3.8,3.29,3.46,2.81,3.22,4.88,4.86,4.64,4.41,4.77,4.65,4.37,3.99,3.54,3.19,2.9,2.73,4.79,4.9,4.65,3.93,3.3,3.07,4.74,4.96,4.86,3.79,4.61,5,4.61,4.31
1980-04,6.27,6.27,6.28,6.23,4.33,5.1,6.16,6.29,6.34,5.52,4.62,5.56,6.73,6.86,6.46,5.58,5.7,7,7.42,7.86,6.6,5.92,5.4,5.1,5.22,4.59,3.76,6.07,8.17,8.22,6.67,6.82,6.12,5.39,4.84,4.95,4.75,3.79,7.3,7.66,5.86,7.34,8.17,8.23,7.36,7.55,6.16,4.87,5.08,4.51,4.48,4.47,7.75,6,4.47,6.13,7.89,6.94,6.83,5.49,5.64,5.1,4.85,4.8,4.23,4.54,4.51,6.41,8.04,8.04,7.59,6.42,5.55,5.31,4.92,4.87,4.93,5.23,7.6,7.05,6.26,5.47,5.44,4.72,6.34,6.08,6.05,5.64,5.64,5.92,5.94,5.8
1980-05,5.23,4.56,4.49,4.38,4.29,5.39,5.1,5.23,5.6,4.19,4.88,4.93,5.41,5.84,4.77,4.67,5.33,4.97,5.57,6.46,4.7,5.14,4.85,4.74,4.69,4.08,3.2,6.61,7.32,6.72,5.22,4.94,5.15,4.67,4.34,4.36,4.43,3.85,8.2,8.39,7.42,8.05,7.63,6.54,5.16,5.44,4.75,4.11,4.65,4.38,4.03,4.45,8.46,6.87,5.59,6.51,6.58,5.15,5.08,4.88,4.63,4.24,4.37,4.91,4.37,4.49,6.16,6.24,5.89,5.54,5.5,5.25,4.69,4.47,4.54,4.73,4.75,4.63,5.55,5.23,5.16,4.81,5.19,5.01,5.14,5.63,5.69,5.36,5.17,5.5,5.36,5.29
1980-06,7.47,8.9,8.78,8.42,8.11,7.34,9.75,9.69,9.57,8.13,8.18,8.84,9.52,9.84,9.51,8.71,8.83,9.13,9.21,9.41,8.96,9.22,9.33,8.25,6.42,6.08,5,10.61,10.55,9.49,7.77,7.6,8.45,8.86,7.99,6.63,6.73,6.26,10.22,10,9.48,9.99,10.27,9.19,7.7,7.86,7.79,7.71,7.87,6.35,6.19,7,10.08,8.14,6.84,9.03,9.48,7.96,7.64,7.6,7.77,6.97,7.13,6.85,6.66,7,9.14,9.47,9.58,9.68,8.91,7.83,7.33,7.41,7.33,6.94,7.07,7.01,8.86,7.89,8.02,8.32,8.8,7.71,8.17,8.56,8.59,8.73,8.66,8.59,8.34,8.31
1980-07,9.17,14.56,14.74,13.67,12.76,8.37,12.9,13.02,12.12,11.85,8.91,10.39,11.8,12.68,12.91,10.97,9.11,10.71,11.71,13.28,13.1,11.32,10.94,10.47,9.34,9.04,6.65,8.76,11.96,12.06,12.24,11,10.58,10.97,9.49,8.97,9.2,7.08,10.28,9.89,8.44,10.55,11.88,11.6,11.02,10.92,10.1,9.79,10.42,8.14,7.23,7.76,9.97,8.24,6.99,9.04,9.85,11.22,10.74,9.03,9.58,8.5,8.57,8.02,7.35,7.64,8.58,8.81,10.27,11.75,11.13,9.32,8.84,8.77,7.7,7.35,7.39,7.58,10.61,9.15,9.2,9.05,8.76,7.57,9.09,9.49,9.36,8.89,9.3,9.58,8.7,8.41
1980-08,7.7,11.45,11.65,11.23,10.87,7.18,9.7,10.21,10.31,9.96,6.59,7.96,9.86,10.8,10.93,9.94,7.02,9.12,9.94,11.18,10.56,9.98,10.37,9.92,8.73,7.97,6.64,7.29,9.78,10.23,8.68,8.54,9.33,9.78,9.28,8.02,7.93,6.71,8.07,7.41,6.75,8.02,9.35,9.78,8.77,9.31,8.84,8.62,9.54,7.44,6.83,7.19,7.47,6.07,4.98,6.26,6.87,8.62,8.85,8.09,7.83,6.86,7.45,6.95,6.64,7.01,5.77,5.88,7.15,8.44,8.4,7.33,7.02,7.01,6.63,6.13,6.53,6.72,7.59,6.4,6.67,6.36,7.28,6.77,6.76,7.52,7.58,7.31,7.17,7.43,6.92,6.39
1980-09,5.7,8.41,8.5,8.04,7.65,4.86,7.45,7.51,6.82,6.77,3.91,5.27,6.61,6.72,6.81,6.87,4.65,5.99,6.24,6.47,7.45,7.41,7.95,7.43,7.2,6.04,4.95,4.52,5.52,6.52,6.52,6.44,6.72,6.98,7.3,6.67,5.99,5.18,5,4.66,4.95,5.86,6.23,5.91,5.3,5.49,5.92,6.15,7.34,5.71,5.32,5.67,4.66,4.61,4.29,4.26,4.62,6.28,6.01,5.63,5.4,4.97,5.35,5.29,4.69,5.22,3.33,3.33,5.27,7.22,6.93,5.31,4.73,4.66,4.59,4.9,5.05,4.83,6.51,5.51,5.3,4.93,5.82,5.59,6.3,6.31,5.95,5.93,7.19,7.03,6.29,6.39
1980-10,4.78,5.87,6.14,5.75,5.73,4.78,6.27,6.38,6.31,5.65,4.74,5.17,5.76,6.36,6.29,5.35,4.61,4.84,5.16,5.87,5.82,5.3,5.42,5.21,4.42,4.11,3.15,4.13,5.47,5.23,4.4,4.89,5.16,5.41,5.2,4.45,4.42,3.86,4.13,4.41,3.7,4.1,5.03,5.16,4.43,5.04,4.58,4.81,5.37,3.96,3.95,4.52,4.45,3.63,2.96,3.41,3.85,5.01,4.82,4.29,4.5,4.05,4.4,4.38,3.98,4.38,3.24,3.28,4.53,5.8,5.55,4.55,4.51,4.34,4.2,4.14,4.22,4.28,5.4,4.85,4.62,4.21,4.62,4.34,4.66,4.67,4.63,4.7,4.44,4.68,5.03,5.35
1980-11,3.01,3.23,3.23,3.23,3.23,3.1,3.23,3.23,3.23,3.28,2.7,3.23,3.35,3.63,3.99,2.54,1.96,2.6,3.75,4.13,3.77,2.83,3.23,2.82,3.12,3.48,3.14,1.96,2.51,3.24,2.85,3.46,3.49,3.44,3.1,3.09,3.2,3.05,2.52,3.05,2,1.96,2.61,3.08,2.59,2.99,3.38,3.21,3.57,2.63,2.45,2.56,3.06,3.06,2.7,2.29,2.92,3.15,3.18,3.16,3.08,2.46,2.82,2.71,2.31,2.44,2.93,2.61,2.61,2.61,2.79,2.47,2.29,3.06,3.26,2.71,2.74,2.64,2.53,2.43,2.76,2.95,3.39,3.07,2.42,3.34,3.7,3.53,2.41,2.71,3.22,3.45
1980-12,2.65,2.65,2.65,2.65,2.65,2.65,2.65,2.65,2.65,2.66,2.64,2.65,2.65,2.68,2.74,2.14,2.62,2.61,2.52,2.64,2.41,2.25,2.41,2.12,2.43,2.52,2.52,2.56,2.62,2.34,2.15,2.27,2.47,2.21,2.08,2.25,2.26,2.32,2.47,2.46,2.31,2.3,2.5,2.53,2.37,2.36,2.2,1.78,2.43,2.07,1.89,2.16,2.47,2.31,2.19,2.27,2.23,1.97,1.78,2.26,2.21,1.69,1.85,2.04,1.9,2.13,2.27,2.28,1.95,1.62,1.62,1.85,1.9,2.03,2.12,2.08,2.38,2.52,1.51,1.35,1.83,2.21,2.68,2.63,1.62,2.23,2.29,2.58,1.93,2.16,2.01,1.94
1981-01,2.26,2.26,2.26,2.26,2.55,2.26,2.26,2.26,2.51,3.36,1.81,1.86,1.75,3.04,3.46,2.9,1.33,1.2,1.7,2.64,2.69,2.29,2.18,2.06,2.81,2.29,2.29,1.87,2.34,2.2,2.07,2.23,2.28,1.91,2.06,2.18,2.06,2.19,1.88,2.18,1.82,1.99,2.26,2.27,2.02,1.99,1.97,1.84,2.96,2.28,1.78,2.05,2.2,1.9,1.68,1.93,2,1.92,1.87,2.01,2.03,1.93,2.28,2.51,2.03,2.07,1.92,1.96,2.03,2.11,2.05,1.81,2.34,2.43,2.31,2.54,2.53,2.57,1.92,1.66,2.17,2.41,2.34,2.37,1.59,2.24,2.43,2.41,1.52,1.9,2.47,2.7
1981-02,3.42,3.42,3.41,3.31,3.31,3.1,3.39,3.38,3.31,3.36,2.96,2.89,2.85,3.46,4.01,2.96,2.61,2.13,2.45,3.2,3.1,2.69,2.25,2,2.98,1.84,1.84,2.26,3.75,3.01,2.25,2.26,2.63,2.17,1.99,2.48,2.14,2.04,3.34,3.67,2.49,3.32,3.83,2.99,1.99,2.12,2.12,1.73,2.62,2.68,2.06,2.27,3.71,3.09,2.62,3.14,3.09,2.14,2.18,2.56,2.21,1.95,2.29,2.26,1.8,2.01,3,3.05,2.4,1.74,1.87,1.93,2.01,2.35,2.29,2.15,2.23,2.01,1.65,1.52,2.05,2.04,2.09,2.39,1.82,2.46,2.7,2.33,2.15,2.21,2.64,2.76
1981-03,4.43,4.43,4.01,3.3,3.26,4.26,4.41,4.45,4.36,3.5,4.18,4.39,4.65,4.59,4.11,3.86,4.37,4.83,4.84,4.87,4.05,3.95,3.67,3.97,4.46,3.46,2.39,4.38,5.59,4.97,4.01,3.96,4.28,4.02,4.06,4.24,3.96,3.33,4.87,5.6,4.16,4.67,5.35,5.04,4.05,4.15,3.91,3.47,4.25,4.32,3.31,3.89,5.67,4.48,3.44,3.7,3.87,3.85,3.79,3.74,3.8,3.45,3.56,3.66,3.55,3.92,3.39,3.38,3.84,4.3,4.16,3.97,3.82,3.59,3.43,3.44,3.92,4.22,4.06,3.39,3.58,3.53,3.38,3.63,3.63,4.24,4.12,3.66,4.09,4.58,4.56,4.45
1981-04,6.14,6.75,6.77,6.34,6.33,6.13,6.97,6.91,6.65,5.7,6.03,6.43,6.72,6.41,5.69,5.16,5.91,6.68,6.41,6.09,5.15,4.72,4.27,4.83,4.85,4.47,3.74,5.33,5.61,5.35,4.91,5.17,5.1,4.67,4.79,4.7,4.85,4.04,6.32,6.52,5.04,5.66,5.71,5.27,4.71,5.33,4.67,4.08,4.55,4.38,4.02,4.31,6.59,5.25,4.06,4.33,4.41,3.99,4.01,3.83,4.08,3.48,3.94,4.07,4.18,4.41,3.89,3.86,4.04,4.22,4.1,3.89,3.73,4.08,4.29,4.29,4.53,4.87,4.02,3.64,3.93,4.25,4.83,4.26,3.78,4.63,4.68,4.79,4.02,4.68,4.92,4.71
1981-05,6.34,6.43,6.36,5.61,4.97,6.22,6.9,6.48,5.45,4.92,5.75,6.19,6.2,5.88,5.42,4.69,6.04,6.46,6.59,6.93,4.93,5.05,4.41,4.37,5.1,3.88,3.3,5.55,6.56,5.91,5.05,5.11,5.5,4.98,4.37,5.31,4.74,4.33,8.34,8.36,5.39,6.24,6.62,6.36,5.98,5.73,4.94,4.79,4.95,4.83,4.43,5.68,8.46,6.45,4.81,5.67,5.83,5.1,5.13,4.66,5.17,4.3,4.84,4.96,4.84,5.52,5.5,5.6,5.55,5.5,5.43,4.98,5.09,4.92,4.6,5.1,5.3,5.29,5.19,3.98,4.59,4.76,4.21,4.76,3.99,5.03,5.28,4.77,4.37,4.85,6.22,7.27
1981-06,8.44,10.65,10.67,9.5,8.5,8.56,10.4,10.18,9.21,7.39,8.67,9.4,9.68,8.95,7.61,5.84,8.58,9.83,9.45,8.82,6.99,6.12,6.05,6.17,6.25,5.09,4.46,8.64,9.1,8.17,6.73,6.22,6.08,5.44,5.48,6.22,5.61,5.62,9.39,9.23,7.74,8.44,8.86,7.93,6.4,6.67,6.23,4.94,5.53,5.55,5.03,5.79,9.33,7.14,5.49,7.16,7.33,5.48,5.52,5.26,4.84,3.96,4.82,5.64,4.59,5.22,7.01,7.23,6.54,5.84,5.64,5.24,4.96,4.84,4.62,4.83,5.42,5.62,5.42,4.55,4.9,4.86,5.41,5.46,4.65,5.67,5.85,5.54,4.98,5.49,5.56,5.35
1981-07,7.56,9.32,9.3,8.61,8.02,7.76,9.24,9.42,8.82,8.55,6.16,7.62,9.59,10.59,10.19,7.83,7,9.29,9.86,10.69,9.42,7.97,8.11,7.77,6.97,6.1,4.88,6.37,10.37,9.49,8.05,8.43,8.86,8.13,7.48,6.98,6.62,5.97,8.42,8.22,5.71,7.48,9.68,9.88,8.98,9.46,8.36,7.27,7.2,6.22,5.92,6.24,8.33,5.98,4.21,6.23,7.01,7.8,7.86,7.42,7.32,5.74,5.76,5.71,5.39,5.84,5.9,6.15,7.29,8.44,7.96,7.05,6.07,5.95,5.95,5.84,5.91,5.68,7.6,6.45,6.03,5.72,7.1,6.52,6.44,6.81,6.75,7.01,6.66,7.06,7.16,6.87
1981-08,5.97,8.1,8.24,7.77,7.36,5.85,7.04,7.32,7.53,7.12,6.23,7.04,7.24,7.72,8.05,6.57,6.4,7.07,7.09,7.19,7.1,7.27,7.12,7.08,7.12,5.66,4.5,5.34,7.61,7.5,6.67,7.05,8.09,7.8,7.17,6.75,6.14,5.33,7.09,6.54,4.6,5.77,7.14,7.7,7.4,8.2,7.86,6.89,7.34,6.5,5.91,6.17,6.63,4.62,3.13,4.82,5.63,7.06,6.95,6.36,7.28,6.2,6.4,6.46,5.76,6.05,4.66,4.88,6.48,8.1,7.64,6.97,6.78,6.42,6.4,5.72,5.96,6.06,7.55,6.78,6.51,6.22,7.48,6.03,6.48,6.9,6.67,7.14,6.32,7.19,6.6,6.04
1981-09,5.76,6.74,7.01,6.62,6.29,5,4.62,5.51,6.61,6.39,3.89,4.46,6.05,7.01,7.39,6.15,4.45,5.78,6.25,6.98,7.03,6.39,5.78,5.54,5.92,4.91,3.79,4.67,6.59,6.56,5.72,6.27,6.13,5.74,5.58,5.26,5.17,4.23,5.3,5.27,4.87,5.51,6.39,6.25,5.4,6.97,5.76,5.42,5.03,4.6,4.29,4.7,5.27,5.24,4.91,4.85,5.12,6.12,5.87,5.54,5.22,4.89,4.74,5.25,4.6,4.65,4.39,4.39,5.74,7.1,6.38,5.63,5.64,5.17,5.09,5.12,4.89,4.59,5.96,4.74,4.94,4.94,6.07,5.49,4.38,6.07,6.12,6.02,4.16,5.87,5.64,5.09
1981-10,3.96,3.91,3.7,3.38,3.36,3.75,3.82,3.97,4.05,3.09,2.91,3.26,3.91,4.48,4.32,4.51,3.49,3.57,3.91,4.53,4.04,4.58,4.03,3.97,4.91,2.94,2.67,3.96,4.69,4.28,3.79,3.91,4.09,3.49,3.61,4.54,3.46,2.76,4.97,5.23,3.52,4.21,4.59,4.19,3.57,4.21,3.77,3.53,4.41,3.69,3.54,3.73,5.32,3.52,2.16,3.42,3.89,4.39,4.21,4.31,4.19,3.45,3.74,3.5,3.48,3.79,3.33,3.5,4.2,4.91,4.68,4.06,3.77,3.97,3.79,3.73,3.81,3.81,4.34,3.06,3.73,4.1,4.84,4.07,3.02,4.62,4.92,4.95,3.33,4.36,5.3,5.45
1981-11,2.86,3.06,2.92,2.01,1.95,2.86,3.04,3.82,3.62,2.45,2.87,3.28,4.11,4.17,3.8,2.83,3.29,4.33,4.43,4.57,3.59,2.92,3,3.12,3.29,1.96,1.48,3.68,4.81,4.2,3.64,3.25,3.41,3.29,3.33,3,2.55,1.99,4.03,4.04,3.74,4.04,4.62,4.2,3.47,3.39,3.28,3,3.31,2.91,2.45,2.62,4.05,3.87,3.71,3.79,3.86,3.76,3.67,3.28,3.05,2.76,3,3.19,2.72,2.76,3.68,3.67,3.86,4.06,3.89,3.32,2.85,2.96,3.14,2.85,3.01,3.03,3.61,2.62,2.68,2.64,3.38,3.06,2.51,3.66,3.4,3.41,3.84,4.56,3.69,3.64
1981-12,2.54,2.54,2.54,2.78,2.83,2.54,2.54,2.55,2.8,2.83,2.54,2.54,2.6,2.96,2.8,2.02,2.54,2.54,2.75,3.09,2.72,2.19,2.32,2.72,2.81,2.68,2.68,4.25,4.28,3.44,2.95,2.73,2.71,2.32,2.12,2.43,2.45,2.41,2.85,2.92,3.63,4.35,4.33,3.92,3.19,2.4,2.39,2.27,2.63,2.21,1.89,2.26,2.93,3.01,3.03,3.42,3.48,3.25,2.68,2.49,2.22,2.39,2.59,2.37,2.16,2.22,3.18,3.2,3.02,2.83,2.73,2.5,2.53,2.56,2.33,2.51,2.58,2.52,2.62,2.35,2.6,2.59,2.87,2.35,2.38,3.19,3.08,2.93,3.16,3.58,3,2.8
1982-01,2.38,2.38,2.38,2.52,2.67,2.38,2.38,2.39,2.64,2.67,2.38,2.38,2.5,2.67,2.67,2.67,2.38,2.45,2.66,2.67,2.67,2.67,2.67,2.4,2.1,2.1,2.1,2.5,2.63,2.67,2.67,2.67,2.67,2.67,2.33,2.1,2.1,2.1,2.38,2.46,2.55,2.57,2.67,2.67,2.67,2.67,2.67,2.65,1.99,2.1,2.1,2.1,2.47,2.56,2.57,2.64,2.65,2.54,2.59,2.67,2.66,2.49,1.66,1.92,2.1,2.1,2.66,2.67,2.57,2.47,2.58,2.65,2.5,1.99,1.71,1.91,2.22,2.1,2.45,1.92,2.29,2.47,1.78,2.24,1.88,3.26,3.31,2.35,2.89,3.51,3.47,3.36
1982-02,3.03,3.03,3.02,2.31,1.87,3.03,3.03,2.91,2.27,2.07,3.03,3.03,2.7,2.27,2.26,1.96,3.31,3.53,2.57,2.3,2.27,2.31,2.3,1.92,1.71,0.99,0.9,3.58,2.38,2.49,2.63,2.27,2.27,2.61,2.63,2.06,1.77,1.29,3.83,4.44,2.84,2.04,2.46,2.49,2.78,2.45,2.27,2.4,2.73,2.57,2.16,1.88,4.51,3.15,2.03,2.34,2.51,2.7,2.79,2.75,2.23,2.12,2.35,2.14,1.94,1.97,2.42,2.48,2.64,2.81,2.96,2.85,2.34,2.32,2.23,2.14,2.29,2.1,2.77,1.95,2.18,2.22,2.21,2.15,1.99,2.74,2.7,2.39,2.33,2.84,2.73,2.67
1982-03,5.74,5.76,5.76,5.76,4.19,5.47,5.63,5.76,5.76,3.36,5.43,5.44,5.62,5.48,4.02,3.54,5.35,5.43,5.47,5.55,4.42,3.93,3.39,3.44,3.72,2.78,2.35,5.17,6.47,5.76,4.2,3.87,4.12,3.77,3.58,3.41,3.02,2.47,6.05,6.34,4.95,5.65,6.31,5.56,3.94,4.18,3.76,3.23,3.66,3.33,2.86,3.19,6.4,5.15,4.22,5.2,5.21,3.5,3.51,3.75,3.41,2.87,3.19,3.25,3.19,3.36,5.13,5.26,4.5,3.73,3.6,3.34,2.86,2.94,2.85,3.11,3.39,3.63,3.5,3.11,3.09,2.92,2.66,2.84,3.6,3.82,3.56,2.94,4.24,4.41,3.88,3.55
1982-04,5.95,6.41,6.12,5.29,5.25,5.96,6.62,6.64,6.53,5.02,6.1,6.65,6.69,6.6,5.56,4.83,6,6.7,6.74,6.79,4.98,4.81,4.18,3.99,4.28,3.07,3.01,6,8.12,7.29,5.54,5.2,5.14,4.3,4.07,3.78,3.68,2.89,7.55,7.72,6.21,7.13,8.03,7.18,5.51,6,4.8,3.78,4.15,3.9,3.21,3.51,7.77,6.98,6.23,6.25,6.29,5.81,5.46,4.57,4.49,3.47,3.7,3.91,3.24,3.46,5.8,5.74,5.71,5.67,5.38,4.47,3.94,3.94,3.96,3.61,3.83,3.54,5,3.93,3.75,3.61,4.19,4.4,4.31,4.24,3.98,4.19,4.99,4.89,4.82,4.89
1982-05,5.68,5.43,5.38,4.72,4.16,5.8,5.85,5.82,5.77,4.28,5.84,6.15,6.22,5.92,4.88,5.67,5.83,6.63,6.51,6.29,4.54,5.02,4.96,3.97,4.36,3.59,3.61,5.72,7.06,6.57,4.72,4.68,4.92,4.54,4.37,4.17,4.56,4.67,7.45,7.71,5.62,6.3,6.93,6.17,4.41,5.38,4.49,4.36,4.7,3.92,4.2,4.89,7.79,6.33,5.02,5.2,5.31,4.93,4.69,4.6,4.43,3.74,4.5,4.58,4.42,4.75,4.78,4.75,4.88,5.01,4.81,4.08,4.07,4.25,4.48,4.61,4.95,5.03,4.53,3.8,4.1,4.04,4.35,4.37,3.85,4.44,4.69,4.47,4.07,4.15,4.69,4.04
1982-06,6.46,6.63,6.54,5.35,4.34,6.84,7.3,6.77,5.58,4.95,6.9,7.09,6.62,6.17,6.14,5.58,7.46,7.28,7.05,6.76,6.11,5.95,5.93,5.23,5.98,4.83,4.3,7,8.45,7.15,5.99,5.86,6.19,6.24,5.77,5.63,5.58,5.21,9.8,9.85,6.84,8.53,8.83,7.81,6.94,6.25,5.57,5.91,6.26,5.19,5.27,6.38,9.97,7.64,5.83,7.42,7.77,6.21,6.01,6.34,6.33,5.31,6.23,6.17,5.43,6.11,7.06,7.24,7.6,7.95,7.05,6.03,5.91,6.03,6.01,5.46,5.76,5.84,6.86,5.67,5.88,6.22,7.58,6.53,6.14,6.19,6.25,7.18,6.87,6.47,6.84,6.84
1982-07,7.67,10.11,10.31,9.01,7.89,7.53,8.57,8.68,8.24,7.94,7.73,8.25,8.09,8.63,9.17,7.19,7.63,7.77,7.89,8.31,8.22,7.2,7.48,6.79,6.34,5.25,4.98,8.06,9.56,8.49,7.08,7.19,7.27,7.31,7.18,6.48,6.21,5.42,8.92,8.4,7.27,8.83,9.49,8.75,7.47,7.75,7.58,7.55,7.31,5.61,5.48,6.04,8.5,6.24,4.55,6.63,7.46,8.54,8.26,8.07,8.27,6.92,7.62,6.89,6,6.15,6.14,6.37,7.91,9.46,8.85,8.03,8,7.82,7.27,6.69,6.58,6.54,8.59,8.24,8.4,8.79,8.66,7.3,8.98,8.62,8.79,8.63,9.74,8.57,8.25,7.7
1982-08,6.89,9.21,9.48,8.36,7.4,7.24,7.12,7.7,8.15,7.98,7.33,7.16,7.72,8.64,8.95,7.8,7.65,7.31,7.9,9.03,7.6,7.58,7.66,7.35,6.21,6.25,4.71,7.82,8.72,8.43,7.16,7.33,7.91,7.75,7.87,6.86,6.64,5.38,8.13,7.6,7.12,8.39,8.75,8.52,7.76,8.33,7.99,8.11,7.45,5.68,5.73,5.98,7.67,6.04,4.85,6.6,7.42,7.83,7.39,7.73,7.6,7.2,7.36,6.74,5.77,5.87,6.21,6.41,8.44,10.47,9.18,8.2,7.23,7.26,7.08,6.15,5.85,5.68,9.12,7.99,7.79,7.83,7.88,6.66,8.39,8.32,8,7.79,8.95,8.75,7.21,6.38
1982-09,6.69,8.63,8.78,7.44,6.29,5.89,7.51,7.67,7.46,6.68,6.38,7.19,7.22,7.73,7.6,6.34,6.57,6.68,7.06,7.76,6.9,6.37,6.84,5.81,5.78,4.39,3.93,6.73,8.15,7.61,6.17,6.07,6.76,6.57,7.05,5.96,5.69,4.74,6.81,6.67,6.18,7.62,8.19,7.77,6.87,6.71,6.38,6.41,7.08,5.12,5.05,5.43,6.74,5.25,4.16,5.86,6.4,6.16,6.1,6.04,6.17,5.73,6.25,5.69,5.39,5.57,5.42,5.6,6.36,7.12,6.88,6.77,6.66,6.2,5.94,5.77,6.06,6.02,7,6.49,6.61,6.68,6.45,6.17,6.97,7.06,6.81,6.5,7.68,7.49,6.4,5.95
1982-10,4.21,5.31,5.62,5.29,5.27,4.22,5.82,5.88,5.92,5.23,4.61,5.76,5.83,6.15,6.07,4.76,4.53,5.63,5.75,5.97,5.34,4.92,4.76,4.27,3.34,3.05,2.61,4.9,7.29,6.29,5.17,5.06,5.28,4.91,4.71,4.39,3.56,2.91,4.97,5.5,4.73,5.42,6.77,6.42,5.31,5.65,4.96,4.66,5.33,4.43,4.34,3.83,5.54,4.75,4.06,4.84,5.8,5.29,5.15,4.32,4.52,3.98,4.41,4.31,3.86,3.99,4.08,5.18,6.12,6.12,5.98,5.6,4.57,4.24,4.01,4.29,4.5,4.36,5.78,4.24,4.59,4.94,4.64,4.6,3.89,5.21,5.45,4.85,4,4.83,4.61,4.31
1982-11,4.41,4.11,2.91,2.79,2.79,4.41,4.41,4.02,2.83,2.79,4.41,4.41,4.41,4.83,4.26,3.3,4.04,4.41,4.39,4.87,4.7,3.51,2.84,2.81,2.29,2.05,1.67,2.8,4.49,4.25,4.18,3.79,3.34,2.97,2.89,3.13,2.55,1.73,2.96,3.17,2.64,2.79,4.51,3.95,3.28,3.87,2.69,2.53,2.49,3.44,3.54,2.39,3.18,3.18,3,3.11,3.94,3.37,3.24,3.36,4.34,2.74,2.87,3.31,2.39,2.38,3.21,3.3,3.3,3.3,3.31,3.3,2.89,3.09,2.59,2.62,2.68,2.59,3.18,2.76,3.07,3.35,2.67,2.6,2.84,3.44,3.39,2.93,3.05,3.58,3.6,3.51
1982-12,2,2.06,2.06,2.06,2.06,1.6,2.06,2.06,2.06,2.06,1.49,1.85,2.06,2.06,2.06,2.08,1.49,2.28,3.02,2.13,2.15,2.42,2.18,1.67,1.73,1.82,1.7,1.49,2.25,3.47,2.86,2.42,2.82,2.4,2.08,2.27,2.32,2.76,1.49,1.49,1.49,1.49,1.95,2.7,1.97,2.03,2.37,2.16,2.65,2.46,2.32,2.77,1.49,1.49,1.49,1.58,1.72,1.79,1.95,2.29,2.34,1.95,2.17,2.6,1.95,2.3,1.63,1.68,1.68,1.68,2.13,2.67,2.26,2.31,2.38,2.48,2.55,2.14,2.3,2.42,2.56,2.57,2.52,3.08,2.37,3.16,3.18,2.8,2.42,3.13,3.39,3.73
1983-01,2.06,2.06,1.92,1.68,1.68,2.06,2.06,2.04,1.72,1.68,2,2.06,2.06,1.85,1.68,1.68,1.94,2.03,2.05,2.03,1.78,1.68,1.76,1.95,1.45,1.03,0.81,2.15,2.07,1.99,1.74,1.55,1.92,1.69,2.03,1.9,1.4,1.27,1.57,1.7,2.14,2.17,2.17,2.04,1.79,1.57,1.61,1.58,2.32,2.35,1.66,2.1,1.57,1.91,2.17,2.17,2.16,2.44,2.51,2.01,1.71,1.51,1.85,2.56,1.89,1.88,2.1,2.06,2.06,2.06,2.13,1.98,1.96,1.8,1.92,2.38,2.3,1.89,1.97,1.84,1.99,1.81,1.95,2.59,1.73,2.27,2.4,2.12,1.62,2,2.2,2.21
1983-02,1.73,1.73,1.73,1.73,1.73,1.73,1.73,1.73,1.73,1.73,2.15,1.78,1.81,1.85,1.66,1.45,2.65,2.9,2.5,2.32,1.65,1.64,1.54,1.71,1.99,2.04,1.79,2.59,3.04,3,2.27,1.87,2.13,1.95,2,2.29,2.13,1.79,2.77,3.12,2.77,3.15,3.19,2.73,2.03,2.05,2.1,1.87,2.26,2.16,2.02,2.39,3.13,3.13,3.31,3.39,3.13,2.45,2.37,2.17,2.62,2.02,2.3,2.45,2.37,2.57,2.98,2.67,2.65,2.65,2.6,2.48,2.51,2.5,2.4,2.6,2.87,3,2.65,2.65,2.68,2.58,2.54,2.59,2.65,2.99,3.1,2.76,2.64,2.91,3.46,3.38
1983-03,3.47,3.47,3.5,3.8,2.78,3.53,3.47,3.59,3.8,2.24,4.38,3.82,4.01,3.91,3.07,3.06,4.86,4.42,4.42,4.31,3.18,3.39,3.36,3.46,4.06,2.8,2.5,5.08,6.39,5.37,4.14,3.77,3.64,3.6,3.78,3.99,3.59,3.11,5.73,6.67,5.41,6.09,6.5,5.65,4.65,4.4,4.19,3.77,4.11,3.9,3.49,4.25,6.69,6.69,6.61,6.53,5.89,4.25,4.23,3.85,4.12,3.35,3.73,3.95,3.89,4.29,5.95,4.76,4.71,4.71,4.53,4.24,3.69,3.76,3.84,4.06,4.23,4.27,4.56,4.37,4.39,4.19,3.9,4,4.21,5.15,5.2,4.34,4.06,5.06,5.21,4.9
1983-04,5.08,5.31,5.34,4.71,4.31,5.08,5.41,5.17,4.71,4.09,5.43,5.64,5.43,5.26,4.86,4.51,5.99,6.01,6.21,6.43,4.92,4.95,5.28,4.13,4.06,3.43,2.92,5.6,8,7.26,5.78,5.31,5.47,5.28,4.85,4.32,3.91,3.23,6.49,7.56,5.76,6.53,7.73,7.53,6.48,5.91,4.78,5.12,5.16,4.51,3.84,4.16,7.58,7.58,7.27,7.09,7.1,6.06,5.91,5.6,4.75,4.69,4.63,4.7,4.04,4.24,7.44,7.32,7.33,7.32,6.72,6.14,5.54,4.95,4.74,4.41,4.28,4.37,6.75,6.3,6.07,5.6,5.35,4.54,6.27,6.64,6.41,5.69,6.28,6.9,6.26,5.93
1983-05,5.95,5.96,5.92,5.2,4.59,5.96,6.29,6.05,5.52,4.77,6.21,6.32,6.08,6.15,5.91,4.8,6.6,6.35,6.62,6.98,5.73,5.43,5.38,4.33,4.7,4.01,3.54,7.63,8.64,7.96,6.1,5.67,5.41,5.08,4.72,4.69,4.54,4.04,8.43,8.99,7.82,8.17,8.49,8.11,6.87,6.51,4.89,4.61,5.46,5.21,4.6,5.14,9.07,7.5,6.14,6.51,7.61,7.52,6.94,5.1,5.03,4.31,4.89,5.32,4.58,4.97,6.14,6.15,7.2,7.46,6.62,5.23,5.05,4.95,4.84,4.45,4.74,4.78,6.11,5.07,5.06,5,4.99,4.75,5.07,4.84,4.91,4.96,5.15,4.74,4.75,4.78
1983-06,6.7,6.74,6.66,6.06,5.54,6.72,7.33,7.24,7.11,6.05,6.92,7.2,7.22,7.55,7.07,5.61,7.03,6.98,7.37,7.95,5.91,5.63,5.49,5.27,5.87,4.59,4.47,8.53,10.17,8.81,6.65,5.72,6.13,5.89,5.52,5.16,4.88,4.65,9.68,10.05,9.49,9.18,9.82,8.61,6.45,5.95,5.74,5.33,5.4,4.94,4.68,5.26,10.05,10.05,9.49,9.11,8.34,5.07,4.86,5.43,5.9,4.67,5.17,5.46,4.98,5.21,8.9,7.19,7.14,7.13,6.16,5.63,5.63,5.43,5.2,5.07,5.47,5.39,6.42,6.39,6.52,6.68,6,5.6,6.57,7.09,7.08,6.34,6.56,6.57,6.47,6.43
1983-07,9.57,12.05,12.1,10.74,9.58,8.62,11.63,11.62,11.26,8.66,9.35,10.65,10.5,11.33,10.09,7.54,9.38,9.06,9.74,10.87,8.84,7.84,8.09,7.1,6.7,5.35,4.97,10.54,11.77,11.09,8.84,7.92,8.44,7.63,7.31,6.9,6.25,5.23,9.83,9.68,8.93,10.89,11.48,10.57,8.56,8.54,7.54,6.94,7.1,6.1,5.58,5.9,9.78,7.44,5.41,6.4,9.4,7.99,7.74,6.97,6.68,5.99,6.38,6.25,5.62,5.8,5.41,5.45,8.97,9.83,8.39,6.73,6.43,6.18,5.88,6.03,6.24,5.88,7.91,6.74,6.62,6.28,6.4,6.42,6.46,6.44,6.6,6.45,6.14,6.22,7.22,5.65
1983-08,6.92,10.97,11.16,10.26,9.49,7.45,9.53,9.8,9.78,8.9,8.11,8.66,8.78,10.11,10.06,7.73,8.55,7.28,8.25,9.97,8.58,8.54,8.61,6.69,6.1,5.77,5.46,8.59,10.25,9.9,8.03,7.5,7.94,6.9,6.64,6.32,5.81,5.58,7.75,7.98,7.59,9.38,10.18,9.54,7.94,7.83,7.09,6.41,6.56,5.62,5.17,5.91,8.07,6.05,4.29,5.3,8.31,7.08,6.93,6.57,6.77,5.59,5.52,5.46,4.76,5.21,4.29,4.33,7.69,8.52,7.6,6.67,6.68,6.08,5.83,5.53,5.22,4.24,7.53,7.17,6.9,6.11,6.24,6.7,7.34,6.61,6.36,6.28,7.43,6.93,6.33,6.3
1983-09,6.41,9.07,9.11,7.96,6.98,7.28,8.78,8.58,7.86,7.19,7.57,8.3,7.99,8.75,9.71,7.7,7.49,7.5,8.21,9.52,7.84,7.96,7.4,6.29,6.27,5.12,4.55,9.1,9.41,8.72,7.08,6.95,6.83,6.54,6.36,5.83,5.59,4.61,6.46,6.31,6.36,7.94,8.88,8.61,7.33,7.7,6.15,5.74,5.72,5.08,4.69,4.96,6.36,5.21,4.21,4.88,7.09,6.68,6.58,6.21,5.86,4.85,5.13,4.78,4.34,4.67,4.21,4.24,7.09,7.8,7.11,6.33,5.63,5.29,4.73,4.36,4.62,4.56,6.86,5.87,5.79,5.17,5.14,5.02,5.46,6.15,6.16,5.39,5.14,5.81,4.94,4.53
1983-10,4.03,4.82,4.76,4.04,4,4.04,5.18,5.25,5.24,3.92,4.48,5.24,5.38,5.86,5.53,5.21,5.02,5.35,5.58,6.08,5.19,5.49,5.31,4.42,4.2,3.46,3.16,4.18,6.3,5.89,4.68,5.01,4.95,4.82,4.83,4.55,4.04,3.32,4.36,4.29,3.96,4.61,5.83,5.9,4.98,5.53,4.96,4.53,5.18,4.56,3.67,3.78,4.31,3.81,3.37,3.65,4.74,4.91,4.84,4.76,5.36,4.15,4.11,3.98,3.63,3.82,3.37,3.39,5.09,5.51,5.04,4.57,4.27,4.14,4.06,3.76,3.91,4.09,4.98,4.91,4.33,4.18,5.19,4.24,4.58,4.85,5.27,5.29,4.12,4.67,5.55,5.52
1983-11,3.75,3.75,3.72,3.48,2.82,3.75,3.75,3.66,3.48,2.47,3.69,3.69,3.59,3.67,3.34,3.06,3.6,3.6,3.67,3.83,3.66,3.51,3.34,3.35,3.81,2.18,1.97,4.69,4.89,4.03,3.27,3.39,3.86,3.64,3.43,3,2.65,2.11,3.75,3.96,3.97,3.99,4.56,4.16,3.32,3.47,3.49,3.26,3.52,3,2.7,3.4,3.96,3.96,3.97,3.97,3.9,3.52,3.45,3.4,3.73,3.17,3.09,3.25,2.72,3.24,3.9,3.79,3.79,3.79,3.59,3.4,3.63,3.4,3.46,3.11,3.03,3.03,3.52,3.34,3.68,3.51,3.74,3.17,3.54,4.17,4.17,3.91,3.77,4.38,4.71,4.42
1983-12,1.66,1.66,1.66,1.66,1.66,1.66,1.66,1.66,1.66,1.64,1.66,1.66,1.65,1.57,1.38,1.53,2.01,1.73,1.64,1.57,1.13,1.48,1.61,1.76,1.71,1.75,1.9,2.55,2.18,1.97,1.63,1.08,1.62,1.62,1.87,1.63,1.94,2.09,2.59,2.59,2.59,2.59,2.53,2.07,1.85,1.71,1.76,1.95,2.23,2.25,2.07,2.2,2.59,2.59,2.59,2.59,2.53,1.72,1.72,1.88,2.02,1.99,2.08,2.44,2.34,2.22,2.59,2.59,2.46,1.83,2.11,2.29,2.18,1.99,2.2,2.34,2.25,2.26,2.5,2.49,2.28,2.17,2.2,2.33,2.35,2.32,2.36,2.34,2.57,2.94,2.76,2.43
1984-01,2.04,2.04,2.04,2.04,2.63,2.04,2.04,2.04,2.25,2.72,2.04,2.04,2.12,2.57,2.72,2.72,2.2,2.57,2.84,2.72,2.72,2.72,2.72,1.59,1.21,1.21,1.21,2.88,2.89,2.61,2.71,2.72,2.72,2.72,1.9,1.21,1.21,1.21,2.5,2.89,2.89,2.89,2.78,2.33,2.49,2.72,2.72,2.7,2.32,1.45,1.21,1.21,2.89,2.89,2.89,2.89,2.55,2.32,2.32,2.6,2.72,2.64,2.27,1.98,1.34,1.34,2.89,2.83,2.34,2.32,2.32,2.32,2.2,2.11,2.07,2.04,1.52,1.52,2.26,2.06,1.71,2.03,1.9,1.89,1.85,2.06,2.63,2.16,1.68,1.52,1.8,1.61
1984-02,4.92,4.92,4.92,4.52,4.26,4.92,4.92,4.92,4.52,4.39,4.92,4.92,4.92,4.53,4.41,3.95,4.92,4.92,4.8,4.36,4.23,3.93,3.72,3.02,3.73,1.89,1.74,4.91,4.86,4.44,4.04,3.99,3.88,3.11,3.42,3.39,2.52,2.08,4,4.82,4.83,4.54,4.23,4.62,4.5,4.3,2.95,3.2,3.96,3.11,2.91,3.34,4.83,4.83,4.8,3.96,3.8,3.82,3.9,3.3,3.59,2.99,3.2,2.97,2.56,3.18,4.42,3.8,3.8,3.8,3.83,3.66,3.37,3.34,2.95,3.19,3.04,3.04,3.85,3.88,3.55,3.49,3.52,3.14,3.41,3.68,3.76,3.53,2.87,3.53,3.3,2.85
1984-03,3.01,2.84,2.84,2.84,2.84,4.82,3.83,3.21,2.87,2.84,5.13,4.98,4.75,4.42,3.85,3.74,5.13,5.25,5.33,4.98,3.9,4.19,3.66,3.51,4.2,2.74,2.64,5.13,5.44,5.8,4.77,4.12,4.4,4.29,4.32,3.84,3.22,2.76,6.69,6.68,5.47,5.94,6.1,5.45,4.65,4.19,4.18,4.39,4.89,4.31,3.21,3.75,6.69,6.69,6.43,6.26,5.94,4.76,4.65,4.48,4.85,4.27,3.99,3.99,3.38,3.74,6.19,5.45,5.43,5.43,5.33,5.26,4.87,4.59,4.22,3.61,3.67,3.79,5.66,5.99,5.32,4.71,4.55,3.9,5.74,5.62,5.58,4.86,5.39,5.8,5.32,4.91
1984-04,7.08,7.08,6,4.19,4.11,7.08,7.08,7.02,6.61,5.06,7.06,7.08,7.08,7.09,6.19,6.43,7.12,8.5,7.77,7.78,6.45,6.63,5.52,4.9,4.92,4.05,3.89,6.88,8.8,8.42,6.66,7.12,6.89,6.02,5.25,5,5.18,4.61,7.98,8.94,6.5,6.67,8.76,8.96,8.13,8.56,6.84,6.18,6.38,5.36,4.71,5.34,9.03,7.41,6,6,7.32,6.91,6.75,6.95,6.83,5.94,5.75,5.28,5.16,5.44,6,6.03,8.31,8.87,7.99,7.33,7.1,6.24,5.87,5.17,5.44,5.68,7.91,6.71,6.52,6.38,6.12,5.49,6.73,7.06,6.99,6.36,6.97,7.37,6.9,6.33
1984-05,6.05,6.45,6.27,5.6,5.03,5.97,7.82,7.55,7.26,5.7,6.61,7.79,7.69,7.65,6.74,5.2,7.44,7.71,7.9,8.2,6.92,5.9,5.96,5.36,5.43,4.79,4.71,6.84,8.56,8.32,6.68,7.06,7.49,6.63,6.23,5.7,5.6,4.82,9.18,9.55,6.82,7.99,8.61,8.58,7.77,8.4,6.77,6.32,6.87,5.79,5.21,5.7,9.65,7.74,6.07,6.52,7.72,6.97,7.06,6.71,6.37,5.62,6,5.86,4.92,5.32,6.07,6.08,7.11,7.37,7.28,7.1,6.55,6,5.87,5.77,5.18,4.82,7.26,6.8,6.55,6.15,5.94,5.81,6.5,6.49,6.69,6.23,6.3,6.14,6.34,6.48
1984-06,6.97,9.39,9.49,8.43,7.53,6.85,8.62,8.81,8.18,7.39,7.36,8.38,8.35,9.09,8.59,8.67,7.48,7.99,8.46,9.24,7.59,8.65,8.18,6.62,6.87,5.84,5.03,5.99,8.61,9.09,7.79,8.16,8.82,8.76,7.23,6.46,6.39,5.45,8.7,9,5.48,6.86,8.21,8.81,8.18,9.26,8.24,7.49,6.82,6.01,5.67,5.94,9.15,6.19,3.61,4.29,7.02,8.73,8.43,7.31,7.25,6.37,6.16,5.93,5.6,6.03,3.61,3.66,7.85,8.89,8.64,7.93,7.37,6.8,6.31,6.42,6.57,6.75,8.46,7.91,7.65,7.2,7.74,7.13,7.68,7.6,7.57,7.69,7.53,7.41,7.18,7.25
1984-07,9.28,11.1,11.39,10.32,9.4,8.46,8.88,9.17,8.96,9.31,8.35,8.6,8.67,9.69,11.08,10.59,7.88,8.2,8.92,10.18,8.79,9.3,8.54,7.57,6.32,5.63,5.84,7.91,10.01,10.12,8.42,8.18,8.87,9.21,8.56,7.57,6.54,5.37,9.03,9.19,6.96,7.76,9.26,9.95,8.96,9.27,7.76,8.44,8.26,6.53,6.54,6.52,9.31,6.78,4.58,5.17,7.78,9.74,9.27,7.83,8.27,7.52,6.61,6.44,5.97,6.46,4.58,4.63,8.97,10.05,9.66,8.67,8.69,7.86,6.93,6.13,6.25,6.38,9.36,8.5,8.16,7.46,7.83,6.72,8.57,8.25,8.18,7.85,8.81,8.33,7.22,6.7
1984-08,6.58,9.07,9.32,8.61,8,6.57,7.1,7.43,7.43,7.94,6.73,7.03,7.22,8.07,8.81,8.51,6.96,6.97,7.53,8.67,8.2,8.4,7.41,7.55,6.96,4.84,4.13,8.09,8.26,8.04,7.06,8.13,8.49,8.52,8.05,6.98,5.71,4.85,6.35,5.98,5.74,7.47,7.99,8.45,8.13,8.84,8.04,8.17,7.75,5.7,5.72,5.84,6.05,4.46,3.08,3.87,7.38,9.62,8.73,7.03,8.14,6.55,6.48,6.1,5.7,5.92,3.08,3.15,9.2,10.7,9.87,8.08,7.99,7.05,6.16,5.66,5.8,5.82,9.13,7.09,7.46,7.21,7.27,6.13,7.42,7.91,7.81,7.38,8.18,8.11,7.29,6.77
1984-09,6.13,8.6,8.77,9.02,9.24,6.04,7.26,7.55,7.81,7.66,6.26,6.84,7.06,7.98,7.77,8.23,5.93,6.17,7.07,8.51,7,7.52,7.11,6.85,6.47,4.77,3.91,5.28,7.89,8.16,6.95,6.65,6.82,7.23,7.12,6.19,5.76,4.32,6.45,6.57,4.67,4.92,7.85,7.82,7.05,7.46,6.53,6.46,6.79,5.5,5.05,5.15,6.65,5.11,3.77,3.77,6.35,6.92,6.51,6.2,6.3,5.86,5.57,5.03,4.92,5.25,3.77,3.82,8.39,9.51,8.1,6.72,6.88,6.08,5.39,4.93,5.15,5.52,7.7,5.74,6.16,5.98,5.51,4.9,5.75,6,6.3,5.67,6.06,5.39,4.77,4.53
1984-10,3.38,4.28,4.45,4.04,3.99,3.39,4.7,4.99,5.37,4.08,3.94,4.88,5.21,5.19,4.49,4.29,4.75,5.18,4.94,4.64,4.53,4.05,3.48,3.71,4.72,2.45,2.07,3.52,4.69,4.33,4.04,3.68,3.54,3.73,3.97,5.36,3.64,2.5,4.5,4.75,3.34,4.04,4.58,4.19,3.6,3.56,3.58,3.53,4.89,4.37,3.23,3.29,4.81,3.62,2.58,2.89,3.89,3.5,3.37,3.55,3.18,3.26,4.38,4.86,3.58,3.48,2.58,2.59,3.84,4.15,3.92,3.88,3.94,4.46,3.86,3.7,3.95,3.95,3.77,2.83,3.59,3.86,3.8,3.72,3.45,4.3,4.31,3.91,4.41,4.45,4,3.69
1984-11,3.87,3.87,3.87,3.35,2.9,3.87,3.87,3.87,3.18,2.9,4.12,4.09,4.22,4.15,3.69,3.17,4.08,4.45,4.38,4.46,3.46,3.5,3.03,3.33,4.83,2,1.8,2.85,4.59,3.68,3.26,3.09,3.37,3.13,3.07,3.49,2.19,1.73,3.3,3.44,2.7,2.85,4.61,3.77,2.94,3.05,2.77,3,3.45,3.15,2.42,3.03,3.45,3.45,3.22,3.19,3.69,3.05,2.94,2.89,2.74,3.02,3.38,3.63,2.87,3.15,3.43,3.41,3.41,3.41,3.24,3.06,3.27,3.39,3.09,3.09,3.24,3.35,3.17,2.83,2.92,3.4,3.67,3.07,3.45,3.91,3.88,3.73,4.23,4.34,3.74,3.59
1984-12,1.92,1.94,1.94,1.94,1.94,1.87,1.94,1.94,1.94,1.94,1.91,1.98,1.94,1.94,1.94,1.9,1.88,2.02,2.01,1.98,1.88,1.91,1.7,1.56,2.1,1.5,1.38,1.93,2.02,2.02,1.93,1.59,1.55,1.99,1.98,3.23,1.74,1.56,1.79,2.04,1.64,1.44,1.69,1.79,1.57,1.57,1.37,1.85,3.21,2.48,1.95,1.93,2.06,1.72,1.42,1.42,1.65,1.77,1.72,1.95,1.63,1.81,2.54,2.91,2.23,2.1,1.42,1.42,1.84,1.94,2,2.08,2.23,2.4,2.54,2.54,2.53,2.56,2,1.95,2.24,2.72,2.64,2.45,2.3,3.09,3.41,2.88,2.73,2.92,2.78,2.64
1985-01,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,1.5,2.01,1.77,1.57,1.5,1.5,1.5,2.3,2.37,2.34,2.19,1.92,1.62,1.5,1.5,1.5,1.5,1.5,1.96,2.24,2.37,2.37,2.37,2.37,2.24,1.99,1.72,1.39,1.39,1.94,1.94,1.94,1.94,1.95,2.16,2.37,2.37,2.37,2.37,2.37,2.1,1.21,1.21,1.94,1.94,1.94,1.94,1.94,1.94,2.28,2.48,2.37,2.37,2.65,2.34,1.58,1.58,1.94,1.94,1.94,1.94,1.98,2.72,2.83,2.61,2.34,2.11,2.13,2.13,1.94,2.22,2.94,2.92,2.37,2.11,1.94,2.54,2.83,2.75,1.94,1.91,2.1,2.09
1985-02,3.49,3.49,2.75,1.25,1.25,3.49,3.49,3.34,1.55,1.25,3.49,3.49,2.87,2.09,1.56,1.25,3.49,3.45,2.33,2.09,2.08,1.63,1.25,1.25,1.25,1.25,1.25,3.47,2.49,2.02,2.09,2.09,2.09,1.59,1.29,1.29,1.25,1.25,3.49,3.49,3.49,2.97,1.99,2,2.09,2.09,2.09,1.61,1.46,2.87,2.5,2.08,3.49,3.49,3.44,2.22,1.99,1.99,2.05,2.09,2.09,1.62,1.61,2.86,2.49,1.99,2.89,1.99,1.99,1.99,2.19,2.36,2.07,2.24,2.04,1.8,1.58,1.58,2.22,2.06,1.71,2.2,2.25,2.17,2.07,2.38,2.68,2.37,2.19,2.35,2.47,2.18
1985-03,5.09,5.09,5.09,4.07,3.19,5.09,5.09,5.09,3.71,3.19,5.05,5.06,5,4.08,3.51,3.2,4.76,5,4.81,4.5,3.07,3.19,3.37,3.62,3.11,2.82,2.52,4.04,5.96,4.77,3.66,3.28,3.55,3.59,3.99,3.9,3.28,2.8,5.42,5.77,3.53,3.73,5.93,4.95,3.77,3.64,3.74,3.45,3.85,3.89,2.96,3.77,5.86,4.18,2.71,2.71,3.77,4.05,3.87,3.57,4.32,3.07,3.54,4.25,3.3,3.59,2.71,2.72,3.71,3.95,3.84,3.62,3.8,3.32,3.07,3.14,3.26,3.18,3.66,3.16,3.31,3.2,3.3,3.24,4.15,3.97,3.7,3.49,5.38,4.74,4.25,4.25
1985-04,5.31,6.27,6.75,6.92,4.76,5.32,6.72,6.83,7.04,5.36,6.05,7.19,7.28,6.51,5.41,5.19,7.37,7.96,7.23,6.04,5.32,5.03,4.44,4.67,3.9,4.01,3.76,5.63,6.76,6.86,5.54,5.56,5.42,4.64,5.26,5.03,4.77,4.46,7.26,7.54,5.53,6.58,6.89,7.06,6.49,6.21,5.01,4.34,5.02,5.34,4.5,4.78,7.62,6,4.6,5.04,6.13,4.96,5.05,4.44,4.18,3.8,4.34,4.54,4.39,4.71,4.6,4.61,5.42,5.62,5.31,4.82,4.4,3.99,3.88,4.6,4.9,5.06,5.21,4.53,4.54,4.01,4.16,4.45,5.26,5.06,4.91,4.41,6.24,5.58,4.81,4.63
1985-05,4.8,5.64,5.51,5.47,5.43,4.9,6.62,6.37,6.13,5.77,5.61,7.03,6.89,6.45,6.24,6.07,6.1,7.64,7.34,6.98,5.77,5.78,5.17,4.86,4.72,4.19,3.99,6.69,7.62,6.75,5.51,5.63,5.66,5.27,5.05,5.18,4.78,4.52,8.01,8.24,6.42,7.08,7.5,7.52,7.02,6.51,5.48,5.36,5.72,5.29,4.97,5.31,8.33,6.53,4.97,5.38,6.72,6.07,6.01,5.27,5.55,4.79,5.29,5.45,5.2,5.4,4.97,4.99,6.82,7.27,6.76,6.02,5.14,4.8,5.07,5.29,5.3,5.52,6.53,5.12,5.46,5.01,5.87,5.17,5.19,5.66,5.69,5.86,5.63,5.59,5.63,5.71
1985-06,6.61,9,9.05,8.66,8.33,6.39,8.62,8.33,7.55,7.44,6.99,8.48,8,7.96,8.08,7.25,7,8.25,8.23,8.47,7.56,7.17,6.54,6.82,6.24,5.42,5.25,8.01,9.56,7.79,6.5,6.75,7.03,6.98,6.85,6.59,6.77,6.19,9.19,9.31,6.64,6.95,9.48,8.34,6.98,7.35,6.31,6.24,6.95,6.03,6.16,6.75,9.41,7.1,5.1,5.1,6.85,7.61,7.17,6.37,6.27,5.77,6.46,6.62,5.94,6.44,5.1,5.12,7.17,7.68,7.38,6.67,5.93,5.79,5.91,6.14,6.24,6.31,6.97,5.79,5.8,5.55,6.6,6.46,5.91,5.98,6.03,6.41,6.33,6.17,6.38,6.12
1985-07,7.21,10.99,11.1,9.73,8.56,7.3,10.11,10.33,9.4,8.36,7.99,9.51,9.27,9.76,9.35,8.83,8.33,8.52,8.91,9.82,8.8,8.42,7.23,7.32,7.39,5.75,5.3,8.07,10.92,9.19,7.43,7.4,7.75,7.93,7.34,6.9,6.21,5.78,8.33,8.43,7.03,7.39,10.86,9.48,7.53,7.91,7.55,7.75,7.78,6.33,6.15,6.75,8.52,6.71,5.13,5.13,7.02,6.38,6.19,7.02,7.87,6.86,7.09,5.87,5.59,6.4,5.13,5.16,7.58,8.17,7.55,7.36,6.54,6.72,6.36,6,5.98,6.02,7.55,6.26,7.19,6.57,7.56,6.64,6.5,7.18,7.09,7.41,7.1,7.18,7.13,7.27
1985-08,6.56,9.66,9.76,8.48,7.38,6.31,8.85,8.55,7.45,7.79,7.12,8.76,8.27,8.57,9.2,9.44,7.42,8.62,9.16,10.2,9.13,9.17,8.4,8.48,7.63,6.57,5.31,7.65,12.09,9.85,7.81,8.38,8.72,9.45,8.78,8.25,7.45,5.95,7.27,7.01,6.66,8.27,10.98,10.73,8.98,9.23,8.57,9.12,9.28,7.52,6.73,6.94,7.08,5.42,3.97,4.83,8.2,9.9,9.45,8.41,9.11,8.03,8.3,6.87,6.02,6.52,3.97,4.03,8.8,9.98,10.25,9.85,8.56,8.03,7.14,6.44,6.23,6.02,9.88,8.05,8.48,8,8.37,6.93,7.76,8.44,8.72,8.52,8.09,7.94,8.35,8.57
1985-09,5.1,6.94,6.92,6.26,5.69,5.14,7.02,7.14,7.15,5.95,5.87,6.32,6.91,7.59,7.5,6.45,5.35,6.32,6.66,7.34,7.68,6.79,6.87,6.72,6.71,5.05,4.18,4.92,6.41,6.7,5.79,5.9,6.49,7.14,7.27,6.33,5.53,4.74,5.42,5.32,4.23,4.44,6.35,6.62,6.18,6.43,6.53,6.47,7.41,5.86,5.41,5.97,5.38,4.11,3,3,5.22,6.98,6.58,5.84,5.38,5.66,6.3,5.35,5.01,5.68,3,3.04,6.46,7.31,7.69,7.44,5.88,5.87,5.33,5.46,5.57,5.32,7.56,6.41,6.35,6.62,6.28,5.92,6.54,6.79,6.83,6.43,7.16,6.85,6.25,6.06
1985-10,3.19,3.77,3.81,3.28,3.28,3.41,4.13,4.13,3.42,3.22,3.61,4.01,4.03,4.54,4.11,3.9,3.68,3.82,4.12,4.75,3.94,4.03,3.8,3.82,4.28,3.05,2.65,3.34,4.64,3.93,3.64,3.84,4.06,3.82,4.04,4.57,3.28,2.54,4.39,4.61,3.19,3.74,4.43,4.18,3.82,4.14,3.94,3.75,4.12,3.64,3.18,3.51,4.67,3.57,2.62,2.86,3.9,3.89,3.71,3.99,3.88,3.51,4.2,4.12,2.98,3.47,2.62,2.64,4.45,4.9,4.74,4.85,5.09,4.21,3.8,4.19,3.93,3.58,4.94,4.54,4.76,4.76,4.31,4.34,4.59,5.02,5.39,4.7,4.8,4.76,5.34,5.22
1985-11,2.71,2.71,2.27,2.03,2.03,2.71,2.71,2.51,2.05,2.03,2.71,2.71,2.8,3.06,2.96,2.45,2.77,3.15,2.98,2.93,3.21,2.72,2.43,2.75,3.37,2.03,1.6,2.91,3.66,3.36,2.6,2.46,2.72,2.51,2.53,2.89,2.29,1.66,3.15,3.78,2.81,2.87,3.64,3.12,2.3,2.64,2.4,2.43,2.95,2.38,2.21,2.26,3.82,3.24,2.74,2.74,3.04,2.85,2.45,1.98,1.88,2.03,2.56,2.61,2.31,2.46,2.74,2.74,3.03,3.1,2.77,2.19,2,2.3,2.85,2.51,2.68,2.76,2.66,2.5,2.39,2.71,2.74,2.59,2.9,3.19,3.12,2.88,3.31,3.69,3.37,3.22
1985-12,1.78,1.65,0.16,0.46,2.11,1.78,0.77,0,0.57,2.12,1.54,0.01,0,1.12,2.12,2.12,0.78,0,0,1.11,2.12,2.12,2.11,1.61,1.61,1.61,1.69,0.03,0,0,1.56,2.12,2.12,2.12,1.72,1.61,1.61,1.84,1.78,1.39,0.09,0,0,0.05,1.78,2.05,2.12,2.06,1.42,1.64,1.65,2.15,1.78,0.76,0,0,0,0.09,1.95,1.94,2.09,1.74,1.14,1.91,1.65,1.99,0,0,0.01,1.28,2.06,2,1.82,1.71,1.71,1.95,1.81,1.58,2.01,1.85,1.44,1.77,2.18,2.24,1.93,2.09,2.28,2.25,2.06,2.23,2.44,2.49
1986-01,3,3,3.04,4.01,4.13,3,3,3.11,4.13,4.13,3,3,3.39,4.13,4.13,4.09,3,3.27,3.88,4.09,3.92,3.31,3.32,2.81,2.22,2.77,2.86,3.22,3.95,4,4.02,3.4,3.11,2.85,2.97,2.56,2.63,2.56,2.9,3.24,3.24,3.34,3.75,3.98,3.68,2.69,2.19,2.37,2.89,2.51,2.08,2.32,3.24,3.24,3.23,3.1,3.07,3.21,2.82,2.56,2.3,2.42,2.71,2.63,2.1,2.23,3.17,3.07,3.07,3.07,2.95,2.71,2.66,2.68,2.46,2.53,2.52,2.52,2.87,2.67,2.55,2.71,2.95,2.68,2.7,2.91,2.99,2.97,2.75,2.97,3.01,2.86
1986-02,3.12,3.12,4.11,2.86,2.51,3.12,3.22,4.22,3.46,2.51,3.12,3.34,4.27,3.98,2.52,2.51,3.12,3.59,4.27,4.27,2.61,2.52,2.51,2.45,3.16,1.82,1.69,3.12,3.56,4.27,3.97,2.66,2.62,2.65,2.5,3.06,2.41,2.09,3.82,4.33,3.17,3.12,3.3,3.68,3.11,2.91,2.61,2.78,2.89,2.89,2.47,2.75,4.34,4.34,3.95,3.31,3.41,3.28,3.12,2.92,2.6,2.62,2.78,2.97,2.47,2.63,3.98,3.43,3.43,3.43,3.48,3.32,2.9,2.82,3.16,2.89,2.71,2.42,3.31,2.61,2.89,3.04,3,3.06,2.93,3.38,3.48,3.16,3.51,3.41,3.25,3.19
1986-03,6.11,6.11,6.16,6.62,5.12,5.18,6.02,6.29,6.62,4.33,4.78,5.48,6.51,6.46,5.24,4.59,5.15,6.46,6.55,6.34,5.69,5.1,4.44,4.81,4.62,3.97,3.77,4.49,6.87,7.04,5.64,5.33,5.19,4.77,4.65,4.78,4.73,4.02,5.71,6.31,3.89,4.13,6.81,7.05,6.35,6.21,5.09,4.89,4.98,4.45,4.15,4.39,6.41,4.58,2.98,2.98,5.06,6.75,6.42,4.89,4.57,4.46,4.66,4.4,4.07,4.27,2.98,3.01,5.93,6.65,6.47,5.72,4.88,4.53,4.5,4.51,4.39,4.24,6.26,5.48,5.4,5.13,5.34,4.85,5.65,5.94,5.76,5.51,6.04,6.38,5.97,5.78
1986-04,5.06,6.6,6.18,4.3,4.24,5.12,7.18,6.94,6.03,4.81,5.31,6.16,6.73,6.24,5.69,5.09,6.43,6.93,7,6.24,5.74,5.51,3.84,4.02,4.31,3.82,3.85,6.53,8.12,7.62,6.04,5.56,5.54,4.75,4.46,4.63,4.17,4.09,7.28,8.06,6.06,6.22,8.09,7.79,6.8,6.02,5,4.37,4.81,4.8,4.23,4.62,8.14,6.68,5.41,5.41,6.42,7.05,6.69,4.86,5.09,4.18,4.7,4.62,4.14,4.49,5.41,5.42,6.51,6.78,6.19,5.12,4.82,4.52,4.45,4.41,4.51,4.59,5.9,5.29,5.39,5.32,5.69,4.89,5.43,5.46,5.48,5.59,5.61,5.49,5.53,4.99
1986-05,5.04,7.06,7.07,5.89,4.89,4.92,6.86,6.83,6.3,4.71,5.28,6.21,7.02,6.32,5.38,4.71,6.16,7.52,7.56,6.44,5.09,4.95,4.1,3.94,5.19,3.97,3.71,6.37,8.45,8.02,6.13,5.14,4.79,4.67,4.38,4.72,4.58,4.23,8.25,9.44,6.2,6.68,7.93,8.06,6.6,5.37,4.27,4.18,4.5,4.83,4.2,4.64,9.56,7.54,5.79,5.99,6.71,6.95,6.54,5.01,4.16,3.6,4.5,5.46,4.44,4.55,5.79,5.8,6.58,6.78,6.1,4.97,4.14,4.27,4.48,5,4.78,4.8,5.5,4.09,4.43,4.84,4.67,4.64,4.51,5.23,5.42,4.94,5.22,5.35,5.73,5.36
1986-06,5.66,8.19,8.36,7.32,6.44,5.26,6.76,6.87,6.35,5.81,5.37,5.97,6.44,6.68,6.79,5.77,5.31,6.38,6.45,6.99,5.76,5.85,6.26,5.76,5.55,4.67,4.03,4.36,6.46,6.82,6.22,5.73,5.66,5.88,5.49,5.3,4.81,4.13,6.34,5.01,3.95,4.12,6.43,6.64,6.22,5.64,4.99,5.5,5.38,5.42,5.31,5.39,5.2,3.97,3.97,3.97,5.25,6.25,6.15,5.68,5.17,4.91,5.45,5.24,4.32,5,3.97,3.99,5.74,6.17,6.29,6.13,5.2,5.04,5.18,4.83,4.7,4.37,5.9,4.37,4.91,5.27,5.91,5.42,4.91,5.98,5.97,5.94,6.02,6.29,5.91,5.76
1986-07,7.18,11.68,11.76,10.59,9.59,6.8,10.83,11.29,11.4,9.65,7.31,8.93,11.03,12.05,11.72,9.97,8.23,10.33,10.45,11.59,11.21,9.96,8.13,8.92,7.08,7.22,5.82,8.03,9.81,9.88,8.19,8.06,9.29,9.27,8.29,7.75,7.09,6.48,7.07,7.34,6.79,7.23,8.8,9.71,8.77,8.75,8.08,8.97,8.59,7.2,6.26,6.77,7.42,5.6,4.01,4.55,7.12,9.47,9.23,8.16,7.93,7.8,7.9,6.98,6.45,6.65,4.01,4.06,8.53,9.64,9.73,9.23,8.1,7.94,7.47,6.69,6.67,6.68,9.44,8.09,8.25,8.5,9.02,7.42,8.06,9.21,9.27,8.98,8.47,9.36,8.97,7.72
1986-08,6,8.84,8.98,8.04,7.24,6.04,7.67,7.78,7.36,6.79,6.5,6.86,7.12,7.96,8.39,7,6.65,6.68,6.75,8.16,7.73,7.83,6.85,7.53,8.32,6.27,4.7,7.13,7.9,7.9,6.62,6.91,7.77,7.38,7.39,7.11,6.55,5.57,6.53,6.73,6.38,7.07,7.63,8.03,7.37,7.32,6.91,7.3,7.41,6.53,5.75,5.99,6.79,5.42,4.23,4.75,6.86,8.07,7.58,6.19,6.3,6.21,6.64,6.05,5.6,5.91,4.23,4.27,7.57,8.39,8.39,7.65,7.23,6.41,6,5.77,5.86,5.99,8.39,8.02,7.42,7.17,7.7,6.44,8.11,7.66,7.62,7.67,8.34,7.95,7.21,7.13
1986-09,5.3,8.02,8.34,6.73,5.36,4.86,5.5,5.93,5.69,4.63,4.52,4.75,5.14,5.97,5.75,5.32,4.96,4.5,4.55,5.78,5.34,5.95,4.93,5.11,7.78,3.98,3.55,4.9,5.47,5.07,4.59,5.07,5.75,5.64,5.45,5.01,4.45,4.19,6.33,6.57,4.27,4.4,5.43,5.31,5.03,5.28,4.84,5.2,5.44,4.43,4.35,4.48,6.67,4.69,2.97,2.97,4.24,5.22,5.37,5.89,5,4.25,4.76,4.31,3.84,4.15,2.97,2.99,4.74,5.18,5.71,6.31,4.93,4.52,4.25,4.09,4.23,3.92,5.89,5.94,6.42,5.26,5.62,5.14,5.96,6.7,6.61,5.96,6.12,6.68,6.24,5.92
1986-10,3,3.38,3.58,3.64,3.63,3.07,3.54,3.66,3.84,3.39,3.33,3.36,3.53,3.97,3.81,3.32,3.39,3.19,3.2,3.73,3.27,3.27,3.25,3.09,2.73,2.76,2.31,3.92,4.08,3.71,3.29,3.37,3.62,3.96,4.21,3.77,3.22,2.57,4.17,4.23,3.47,3.76,3.96,3.71,3.18,3.46,3.34,3.95,4.32,3.52,2.86,3.37,4.28,3.17,2.21,2.48,3.39,3.45,3.35,3.65,3.23,3.06,3.71,3.62,3.19,3.36,2.21,2.22,3.33,3.6,3.87,4.09,3.94,3.41,3.27,3.87,3.81,3.24,3.83,3.34,3.95,4.24,3.78,4.49,3.95,5.04,5.23,4.36,4.87,5.09,5.62,5.71
1986-11,2.64,2.64,2.64,2.64,2.7,2.64,2.64,2.64,2.7,2.89,2.61,2.64,2.8,2.93,2.92,2.79,2.24,3.04,3.1,3.06,2.89,2.83,2.24,1.87,1.81,1.53,1.23,2.09,3.03,2.98,2.79,2.76,2.76,2.59,2.35,2.18,1.84,1.42,2.68,2.68,2.17,2.43,2.89,2.85,2.47,2.59,2.49,2.52,2.37,2.08,1.85,1.49,2.68,2.68,2.64,2.61,2.65,2.34,2.25,2.29,2.4,2.41,2.23,1.96,1.66,1.64,2.72,2.79,2.8,2.8,2.62,2.46,2.4,2.39,2.07,2.16,2.11,2.07,2.54,2.02,2.16,2.36,2.47,2.17,2.05,2.63,2.9,2.61,2.22,2.54,3.44,2.51
1986-12,1.96,1.94,1.75,1.73,1.57,1.89,1.96,1.88,1.73,1.69,1.53,1.9,1.95,1.77,1.71,1.27,1.44,1.56,1.94,1.93,1.67,1.36,1.45,1.37,1.32,1.44,1.39,1.44,1.44,1.58,1.64,1.58,1.54,1.47,1.51,1.74,1.76,1.79,1.44,1.44,1.44,1.44,1.44,1.45,1.58,1.56,1.42,1.47,1.99,1.7,1.5,1.78,1.85,1.88,1.91,1.93,1.95,1.96,1.74,1.56,1.36,1.31,1.53,1.54,1.27,1.55,2.14,2.14,2.14,2.14,2.16,1.97,1.6,1.7,1.56,1.38,1.4,1.4,2.07,1.64,1.41,1.82,1.85,1.79,1.48,1.96,2.32,2.03,1.43,1.64,1.63,1.63
1987-01,2.24,2.24,2.17,1.91,1.91,2.24,2.24,2.23,1.96,1.91,2.24,2.24,2.24,2.05,1.91,1.91,2.2,2.24,2.24,2.15,1.91,1.91,2.14,2.35,1.73,1.72,1.65,2.13,2.21,2.24,2.18,1.91,2.06,1.96,2.3,2.1,2.04,2.2,2.22,2.22,2.16,2.13,2.14,2.23,2.25,2.2,2.02,1.52,2.29,2.33,1.94,1.83,2.22,2.22,2.16,2.14,2.21,2.31,2.31,2.28,2.1,2.03,2.58,2.73,1.8,1.78,2.27,2.37,2.38,2.38,2.37,2.22,2.27,2.33,2.27,2.67,1.97,2.07,2.17,1.88,1.9,2.25,2.36,2.22,1.98,2.29,2.37,2.4,2.09,2.39,2.76,2.8
1987-02,2.3,2.31,2.31,2.31,2.31,2.05,2.2,2.31,2.31,2.3,2.01,2.02,2.18,2.27,2.17,1.76,2.01,2.01,2.06,2.3,2.03,1.82,1.75,2.25,2.72,1.65,1.33,2.33,2.28,2.37,2.17,1.93,2.1,2.05,2.09,2.36,1.72,1.22,3.56,3.56,2.97,2.6,2.4,2.28,1.95,2.01,1.75,1.96,2.46,2.54,1.86,2.06,3.56,3.56,2.97,2.61,2.53,2.39,2.15,2,2.07,2.09,2.17,2,1.81,2.15,3.05,2.41,2.4,2.4,2.36,2.02,2.28,2.31,2.16,2.13,2.28,2.25,2.07,1.62,2.04,2.32,2.39,2.35,2.24,2.83,3.01,2.63,2.93,2.89,2.83,2.97
1987-03,3.92,3.92,3.94,4.15,4.15,3.92,3.92,4,4.15,4.12,4.2,4.17,4.29,4.03,3.75,3.59,4.58,4.58,4.54,3.99,3.6,3.77,3.16,2.94,3.01,3.39,3.1,4.15,4.19,4.39,3.57,3.25,3.7,3.5,3.86,4,3.75,3.19,4.66,5.66,4.61,3.96,4.09,3.93,3.15,3.29,3.65,3.44,4.27,3.97,3.27,3.74,5.67,5.67,4.59,3.94,3.84,3.49,3.28,3.16,3.71,3.61,4.14,4.06,3.83,3.9,4.75,3.6,3.59,3.59,3.55,3.16,3.61,3.75,3.91,3.93,4.09,4.15,3.23,2.73,3.33,3.78,4.47,4.17,3.04,3.9,4.08,4.31,3.38,3.83,3.89,3.67
1987-04,6.33,6.33,6.04,5.57,5.54,4.33,6.14,6.35,6.3,4.94,3.47,4.96,6.7,6.2,5.2,5.12,4.85,6.99,7.02,5.79,5.42,5.54,5.29,5.37,5.14,4.57,4.37,4.85,6.15,6.58,5.28,5.37,5.69,5.81,5.59,5.43,5.19,4.93,6.08,6.16,4.4,4.88,5.18,6.21,5.17,5.56,4.99,5.48,6.01,5.36,4.55,5.25,6.24,4.66,3.28,3.59,4.61,5.01,5.06,4.56,5.07,5.24,5.97,5.45,5.18,5.34,3.28,3.29,4.55,4.86,4.91,4.52,5.47,5.61,6.05,5.81,5.79,5.73,4.31,3.54,4.81,5.45,5.68,6,3.91,5.54,5.74,5.61,4.33,5.3,5.28,5.03
1987-05,4.44,4.83,4.83,4.75,4.68,4.37,4.84,4.99,5.27,5.1,4.7,5,5.5,5.35,5.31,4.88,5.16,5.84,5.81,5.21,5.02,4.79,4.24,4.19,4.3,4.22,4.08,5.14,5.85,5.3,4.49,4.43,4.57,4.47,4.22,4.33,4.05,4.14,7.48,7.44,4.71,5.09,5.6,5.72,5.37,4.87,4.31,4.14,4.64,4.28,3.93,4.5,7.54,5.48,3.68,3.94,4.56,4.39,4.61,4.92,4.81,3.64,4.41,4.17,4.01,4.28,3.68,3.68,3.91,3.97,4.09,4.24,4.93,4.19,4.55,4.25,4.18,3.91,3.69,3.31,4.45,4.72,4.6,4.61,4.12,5.09,5.11,5,5.03,5.25,5.21,4.82
1987-06,5.48,7.15,7.24,6.7,6.24,5.32,6.37,6.59,6.61,6.15,5.42,6.01,6.71,6.79,6.8,6.05,6.01,6.93,6.58,6.21,6.52,6.32,5.57,5.86,4.97,4.92,4.42,5.81,6.46,6.48,5.7,5.35,5.57,5.64,5.36,5.41,5.28,5.1,9.06,9.06,5.3,5.41,6.41,6.22,5.49,5.34,4.59,5.19,5.71,5.09,5.3,5.51,9.19,6.61,4.36,4.36,5.09,5.47,5.5,4.55,4.42,4.67,5.21,5.6,4.67,4.97,4.36,4.37,5.12,5.31,5.36,4.38,5.18,5.09,5.62,5.25,4.9,4.38,4.22,2.71,4.28,4.16,4.85,5.49,3.73,5.37,5.2,4.81,4.88,5.56,5.58,5.15
1987-07,7.54,10.6,10.64,9.48,8.49,7.35,10.11,10.33,9.46,8.48,8.04,8.66,9,9.72,10.07,7.83,8.1,8.25,7.65,7.25,9.18,7.89,7.3,6.83,6.21,5.21,4.76,7.42,9.2,9,7.37,7.03,7.82,7.65,7.17,6.43,5.73,5.4,9.24,9.13,6.61,7.79,8.86,8.35,6.58,7.23,7.38,7.27,7.25,6.05,5.71,5.92,9.25,6.69,4.46,5.12,7.16,7.12,7.03,5.65,6.83,6,6.52,5.86,5.51,5.81,4.46,4.49,6.68,7.23,7.19,5.92,6.35,6,5.72,5.58,5.83,5.92,7.23,6.74,6.66,5.89,5.84,5.67,6.76,6.9,6.75,6.67,6.77,7.17,6.96,6.86
1987-08,6.08,8.99,9.19,8.41,7.75,5.84,7.42,7.64,7.52,7.78,6.64,7.53,7.57,7.98,8.78,8,7.54,7.77,7.81,8.69,8.44,8.29,8.27,7.98,7.15,6.39,5.83,6.59,8.68,8.88,7.38,7.61,7.89,8.94,8.35,7.32,6.72,6.1,6.57,6.54,5.37,5.68,8.61,8.91,8.15,7.76,7.46,8.29,8.19,5.93,6.39,6.39,6.61,5.08,3.75,3.75,6.34,8.1,8.09,6.19,8.21,7.23,7.92,6.77,5.98,6.23,3.75,3.79,7.54,8.47,8.34,6.84,8.09,7.32,6.72,6.56,6.45,6.41,8.47,8.08,7.96,6.87,6.83,6.65,7.03,8.07,7.83,7.62,6.88,8.19,7.65,7.38
1987-09,4.17,5.06,5.03,5.14,5.23,4.37,5.23,5.26,5.38,5.64,3.93,4.48,5.17,6.13,6.24,5.85,5.33,5.01,5.03,5.22,5.8,5.86,5.76,4.95,4.48,4.69,4.35,5.45,6.25,5.95,4.82,5.38,5.75,5.69,5.93,5.24,4.95,4.35,5.19,5.16,4.9,5.34,5.97,5.74,4.6,5.64,5.56,5.56,5.64,3.94,4.44,4.83,5.19,4.42,3.75,4.05,5.2,4.92,4.68,4.39,5.48,5.27,5.47,4.74,4.38,4.73,3.75,3.77,5.6,6.06,5.69,4.98,5.78,5.41,5.16,4.82,4.76,4.69,6.06,5.86,5.71,5.69,5.34,4.88,5.77,6.45,6.63,6.51,5.8,6.54,6.72,6.59
1987-10,4.56,5.01,4.91,4.38,4.36,4.51,5.16,5.2,5.07,4.66,4.26,4.78,5.36,5.3,5.27,5.12,4.73,5.58,5.5,5.36,5.81,5.64,5.42,4.64,4.47,4.05,3.93,4.18,6.2,6.22,4.98,4.77,5.38,5.79,5.5,4.76,4.3,3.99,4.67,4.84,3.81,4.25,5.6,5.62,4.27,5,4.63,5.26,5.61,4.59,4.06,4.8,4.88,4.14,3.49,3.67,4.51,4.74,4.57,4.28,5.3,4.87,5.15,4.25,4.23,4.72,3.49,3.51,5.02,5.39,5.18,4.68,5.25,5.09,4.58,4.45,4.5,4.58,5.39,5.44,5.64,5.71,5.13,4.46,5.29,5.95,6.09,5.82,5.23,5.37,5.1,4.78
1987-11,3.46,3.46,3.21,2.8,2.8,3.46,3.46,3.46,3.01,2.98,3.51,3.51,3.54,3.8,3.61,3.02,3.52,3.58,3.63,3.66,3.51,3.17,2.93,3.03,2.12,1.87,1.85,2.45,3.17,3.82,3.49,3.11,3.19,3.05,2.98,3.05,2.18,2.02,3.11,3.83,2.43,2.37,2.81,3.4,2.85,2.81,2.88,2.78,3.17,3.35,2.48,2.74,3.85,3.85,3.4,3.13,3.41,3.05,2.93,2.4,3,2.99,3.09,3.08,2.81,2.86,3.75,3.59,3.59,3.59,3.42,2.53,2.81,2.91,2.65,2.37,3.06,3.1,3.59,3.22,3.14,3.1,2.87,2.49,3.54,3.48,3.32,3.29,3.61,3.81,3.41,3.37
1987-12,2.32,2.32,2.32,2.32,2.32,2.32,2.32,2.32,2.32,2.32,2.32,2.32,2.32,2.32,2.32,2.32,2.38,2.32,2.32,2.32,2.31,2.26,1.77,1.4,1.21,1.03,1.05,2.59,2.56,2.47,2.38,2.18,2.15,2.17,2.28,2.22,1.81,1.98,2.53,2.53,2.55,2.58,2.59,2.59,2.59,2.06,2.1,1.99,2.28,2.01,1.91,2.32,2.53,2.53,2.53,2.53,2.55,2.58,2.59,2.04,2,1.87,1.93,1.57,1.69,2.08,2.53,2.53,2.53,2.53,2.55,2.08,1.98,2.05,1.94,1.68,1.62,1.55,2.53,2.1,1.91,2.1,1.94,1.75,2.31,2.46,2.48,2.44,2.38,2.76,2.94,2.8
1988-01,1.68,1.68,1.68,1.68,1.68,1.68,1.68,1.68,1.68,1.68,1.96,1.68,1.68,1.68,1.68,1.68,2.64,1.71,1.68,1.68,1.68,1.68,2.02,2.14,1.85,1.85,1.85,2.83,2.26,1.91,1.77,1.99,2.13,2.47,2.71,2.37,1.86,1.85,2.83,2.83,2.83,2.73,2.53,2.46,1.99,2.25,2.39,2.29,2.31,2.76,2.48,2.06,2.83,2.83,2.82,2.58,2.53,2.53,2.2,2.01,2.34,2.31,2.08,1.97,2.17,2.2,2.71,2.53,2.53,2.53,2.48,2.06,2.14,2.18,2.18,2.17,2.24,2.2,2.53,2.09,2.09,2.35,2.38,2.33,2.22,2.55,2.69,2.7,2.33,2.58,2.8,2.82
1988-02,2.72,2.71,2.71,2.71,2.71,2.46,2.71,2.71,2.71,2.71,2.16,2.53,2.71,2.71,2.71,2.71,2.16,2.22,2.64,2.71,2.72,2.92,2.69,2.32,2.09,1.87,1.82,2.16,2.16,2.25,2.64,2.82,2.94,2.97,2.35,2.41,2.21,2.2,2.89,2.49,2.16,2.16,2.28,2.44,2.38,2.44,2.41,2.3,2.5,2.27,2.06,1.99,2.89,2.36,2.18,2.48,2.67,2.67,2.49,2.38,2.2,2.34,2.4,2.22,1.84,1.84,2.58,2.67,2.67,2.67,2.64,2.4,2.42,2.44,2.23,2.25,2.29,2.24,2.67,2.28,2.27,2.34,2.3,2.24,2.46,2.62,2.57,2.5,2.62,2.91,3.18,3.17
1988-03,4.73,4.36,3.92,3.12,2.95,4.39,4.36,4.29,3.31,3.21,4.36,4.36,4.42,4.69,3.58,3.31,4.36,4.36,4.88,5.53,4.77,3.98,3.66,3.5,2.99,3.4,3.32,4.36,4.37,5.51,5.75,5.17,5.14,4.91,4.32,4.13,2.97,2.77,5.88,5.06,4.36,4.36,4.86,5.79,5.79,5.44,5.06,4.39,4.11,3.85,3.14,3.82,5.88,4.78,4.42,5.52,5.99,5.57,5.48,4.69,4.1,3.66,3.58,3.55,3.47,3.84,5.9,6.21,6.21,6.21,5.8,5.16,4.66,4.33,4.06,3.79,3.66,3.67,5.72,5.28,4.82,4.58,4.19,3.66,5.24,5.07,4.6,4.08,5.39,5.3,4.13,3.81
1988-04,4.22,4.28,5.5,5.03,4.99,4.22,4.71,6.16,6.03,5.1,4.22,5.59,6.16,6.16,5.2,5.04,6.81,7.95,6.85,6.39,5.6,5.5,5.19,5.1,4.51,4.13,4.07,6.05,8.07,7.81,6.31,6.51,6.46,5.77,5.23,4.77,4.5,3.9,6.86,6.8,5.39,5.6,8.01,7.86,6.8,7.04,6.2,5,5.3,4.38,4.29,4.05,6.86,5.73,4.75,4.75,6.4,7.43,6.85,5.21,4.93,4.66,4.69,4.62,4.37,4.39,4.75,4.78,7.01,7.56,7.33,5.36,5.21,5.03,4.88,4.3,4.56,4.84,7.54,5.64,5.49,5.23,5.05,4.52,5.55,5.78,5.98,5.28,5.61,5.42,4.61,4.33
1988-05,5.8,6.57,6.57,6.27,6.01,5.49,6.05,6.62,6.59,5.77,5.49,6.28,6.65,6.65,5.87,6.16,5.76,6.17,6.63,6.93,7.13,6.71,5.81,5.79,5.48,5.28,4.1,5.88,5.89,6.5,6.78,6.76,5.95,6.17,5.8,5.8,5.99,5.5,7.94,6.72,5.8,5.82,6.03,6.64,6.65,6.79,5.63,5.45,5.98,5.64,5.35,5.92,6.82,5.6,5.6,5.6,6.12,6.27,6.18,5.09,4.8,4.95,5.29,5.73,5.37,5.86,5.6,5.61,6.7,6.97,6.73,6.21,5.09,5.27,5.46,5.44,5.75,6.25,6.86,6.42,5.19,5.66,5.6,5.03,5.94,5.61,5.73,5.57,6.06,5.74,5.36,4.97
1988-06,6.05,8.42,8.42,8.04,7.72,5.9,6.99,8.43,7.89,7.53,5.89,6.58,9.38,9.33,8.61,7.02,9.2,9.6,9.4,9.16,7.23,6.78,6.38,7.42,7.29,6.22,4.91,8,6.97,7.38,7.29,6.83,6.72,6.4,6.63,7.02,6.75,6.24,9.11,9.99,6.71,8.67,9.27,7.71,7.45,6.94,6.4,6.05,6.65,6.27,6.17,6.57,10.17,7.11,4.45,5.38,8.07,6.7,6.53,6.32,5.98,5.92,6.04,5.86,5.91,6.42,4.45,4.48,7.4,8.12,7.77,7.1,5.46,6.3,6.06,5.69,6.14,6.68,8.16,7.83,6.66,6.89,6.64,5.6,7.47,7.46,7.36,6.87,7.57,7.82,7.21,6.45
1988-07,6,8.7,8.83,7.73,6.79,5.8,7.67,7.92,7.85,7.57,6.62,7.98,8.17,8.18,7.99,7.31,7.99,8.52,8.46,8.3,8.61,8.05,7.62,7.19,6.22,6.25,4.99,6.81,7.53,7.87,7.73,7.44,7.83,8.19,7.85,7.28,6.43,5.83,7.53,6.34,5.95,6.12,6.68,7.28,7.22,7.22,7.2,7.47,8.01,7.15,5.11,5.46,5.81,3.94,3.94,3.94,5.91,7.13,6.92,6.98,6.58,6.36,7.15,6.3,5.63,5.59,3.94,3.98,7.46,8.32,7.93,6.82,6.8,6.85,6.62,6.14,6.42,6.44,8.32,7.18,7.23,7.26,6.94,6.83,7.98,8.3,8.13,6.94,8.48,8.85,8.4,7.43
1988-08,4.93,6.89,7.55,6.6,6.6,5.66,8.12,8.11,7.47,7.85,6.52,8.09,8.08,9.14,9.07,8.16,7.65,8.05,8.05,8.8,9.29,8.04,8.22,7.77,6.05,5.56,4.82,6.27,7.26,7.75,7.23,7.1,7.8,8.38,8.46,7.66,6.66,5.13,5.37,5.17,4.98,5.18,7.17,7.66,7.7,7.5,8,7.95,8.48,6.81,5.43,5.17,4.29,3.12,3.12,3.12,5.46,7.67,7.59,6.4,6.63,6.9,7.58,6.26,5.53,5.42,3.12,3.16,6.57,7.42,7.86,7.68,6.53,6.62,6.52,5.96,6,6.07,8.25,8.73,7.46,7.04,7.58,7.42,7.4,7.2,7.34,7.61,6.8,7.11,6.74,5.81
1988-09,4.75,6.5,6.5,6.09,5.74,4.71,5.61,6.47,5.99,5.73,5.11,6.25,6.36,6.02,5.78,5.39,6.17,6.36,6.39,6.41,6.14,5.88,5.44,5.05,4.92,4.98,3.83,5.97,6.46,6.69,6.65,6.35,6.71,6.32,6.52,6.01,5.58,4.24,5.37,4.97,5.33,6.69,6.78,6.72,6.68,6.36,6.66,6.51,7.27,6.06,4.66,4.47,4.54,3.65,3.65,4.21,5.98,5.64,5.62,5.57,5.79,6.27,6.63,5.38,4.5,4.58,3.65,3.67,5.83,6.37,6.45,6.51,5.89,5.97,5.98,5.27,5,4.92,6.94,7,6.05,5.47,6.36,6.26,5.48,6.05,5.99,6.38,4.74,5.67,5.86,5.23
1988-10,3.84,4.6,4.71,4.09,4.07,4.28,5.09,4.91,4.53,3.94,4.67,5.3,5.1,4.92,5,4.05,5.48,5.64,5.55,5.31,5.09,4.8,4.1,4.41,3.43,3.25,2.94,4.63,5.89,5.37,4.95,5.14,5.1,4.41,4.55,4.6,4.11,3.01,4.71,4.33,4.09,5.2,5.88,5.69,5.43,5.41,5.24,4.71,5.25,4.46,3.77,3.92,3.97,3.17,3.17,3.64,4.9,4.63,4.74,4.99,5.52,5.07,5.03,4.48,3.84,4.1,3.17,3.18,4.21,4.47,5.11,5.71,4.93,5.25,5.03,4.67,4.44,4.32,5.69,6.14,5.22,4.99,5.56,4.79,5.63,5.4,5.41,5.53,5.62,5.5,5.45,5.43
1988-11,4.68,4.68,4.68,3.98,3.22,4.68,4.68,4.68,3.75,3.38,4.68,4.68,4.71,4.76,4.3,3.37,4.65,4.67,4.72,4.9,4.74,4.02,3.41,3.6,2.33,2.43,2.46,4.65,4.89,5.11,4.64,3.9,4.43,3.92,3.38,2.77,2.37,2.55,3.76,3.94,4.26,4.71,4.8,4.85,4.26,4.17,3.87,3.98,4.24,3.39,2.75,2.64,3.96,3.44,2.99,3.31,4.24,4.25,4.27,3.88,4.8,4.1,3.66,2.88,3.26,3.32,2.99,3,3.94,4.17,4.08,3.83,3.76,4.14,3.63,3.29,3.75,4.03,3.95,3.83,3.8,4.12,3.83,3.54,3.65,4.17,4.2,3.93,3.52,4.22,4.62,4.85
1988-12,3.46,3.46,3.46,3.46,3.46,3.44,3.46,3.46,3.46,3.46,3.09,3.33,3.46,3.46,3.46,3.36,3,3.02,3.15,3.44,3.46,2.99,2.21,2.09,1.85,1.36,1.07,2.99,3.01,3.01,2.82,2.63,2.55,2.44,2.11,2.29,2.23,1.35,2.97,2.97,2.97,2.88,2.68,2.53,2.08,2.21,2.32,2.13,2.31,2.28,1.96,1.75,2.97,2.97,2.97,2.87,2.77,2.58,2.47,2.24,2.44,2.26,2.34,1.94,2,2.01,2.93,2.86,2.86,2.86,2.74,2.56,2.67,2.54,2.14,2.3,2.41,2.42,2.75,2.68,2.74,3,2.51,2.47,2.55,3.23,3.45,2.8,2.46,3.16,3.63,3.78
1989-01,3.19,3.19,3.23,3.33,3.33,3.19,3.19,3.24,3.33,3.32,2.73,2.43,2.7,3.26,3.24,2.46,1.77,1.77,2.13,2.71,2.79,2.17,2.16,2.24,1.75,1.52,1.28,2.43,2.31,2.88,2.6,2.15,2.6,1.98,1.97,1.77,1.79,1.11,2.66,2.66,3.08,3.26,2.69,2.67,2.24,2.12,2.32,1.95,2.01,1.79,1.73,1.98,2.66,2.66,2.98,3.26,2.97,2.3,2.24,2.14,2.02,2,1.92,1.93,1.74,1.94,2.66,2.63,2.56,2.56,2.41,2.24,2.19,1.86,1.71,2.01,1.85,1.66,2.38,2.13,1.84,2,2.17,2.09,2.02,2.2,2.23,2.15,2.09,2.33,2.24,1.91
1989-02,1.9,1.9,1.9,1.89,1.89,1.9,1.9,1.9,1.89,1.89,1.89,1.88,1.9,1.93,1.94,2.28,1.88,1.87,2.04,2.25,2.03,2.18,2.26,2.36,2,1.99,2.09,2.08,2.65,2.31,1.9,1.86,2.36,2.19,2.15,1.91,2,2.4,2.77,2.65,2.36,3.18,3.08,2.24,1.7,2.03,2.5,1.73,2.04,1.91,1.7,2.82,2.49,2.49,3.14,3.73,3.27,2.48,2.42,2.06,2.87,2.2,2.35,2.1,2.06,2.47,2.55,2.57,2.43,2.43,2.52,2.35,1.74,1.95,1.96,1.75,1.82,1.88,2.59,2.53,2.07,2.01,1.44,1.7,2.44,2.76,2.75,1.81,2.56,2.82,2.16,2.17
1989-03,6.29,6.29,6.01,5.24,5.24,6.29,6.29,5.88,5.24,5.24,6.84,7.2,6.44,5.27,5.22,3.27,7.68,8,6.97,5.46,4.88,3.55,3.54,3.82,3.51,2.98,2.63,5.2,5.54,5.5,4.76,4.29,4.48,3.7,3.64,3.86,3.57,2.64,5.17,5.15,4.16,5.11,5.56,5.16,4.45,4.18,3.73,3.22,3.85,3.52,2.98,3.08,5.23,4.13,3.19,3.67,4.91,4.6,4.45,3.85,3.39,3.24,3.26,3.39,3.14,3.14,3.19,3.19,4.71,5.16,4.9,4.27,3.58,3.49,3.25,3.22,3.26,3.17,4.92,4.62,4.29,4.06,3.09,3.36,4.96,5.2,4.99,3.67,5.32,5.75,5.23,4.89
1989-04,6.07,6.27,5.74,5.45,5.45,7.11,6.16,5.8,5.46,5.68,7.41,7.6,6.85,6.04,6.46,5.68,8.08,8.77,8.45,7.83,6.75,5.79,5.12,5.23,4.54,4.32,4.27,6.41,6.68,6.99,5.27,5.42,5.53,5.28,5.45,4.7,4.59,4.3,6.98,6.77,5.59,6.9,7.08,7.06,5.95,5.63,5.58,4.95,5.24,4.46,4.36,4.36,6.75,5.68,4.76,5.34,6.62,5.92,5.81,5.04,5.05,4.36,4.77,4.19,4.28,4.42,4.76,4.76,6.11,6.51,6.24,5.54,4.72,4.69,4.37,4.45,4.58,4.84,6.28,5.97,5.49,5.2,5.08,4.35,6.09,5.48,5.32,5.16,6.29,5.89,5.64,5.53
1989-05,6.34,6.29,6.28,5.47,5.14,7.11,6.18,5.68,4.94,4.64,6.46,5.63,5.34,5.3,5.23,5.13,7.29,5.4,6.2,7.12,5.54,5.95,4.95,5.07,4.22,3.76,3.84,7.58,8.51,7.2,6.06,5.88,6.07,5.21,5.23,5.23,4.81,4.38,8.01,8.28,7.66,10.08,9.24,7.79,7.32,6.37,5.84,5.18,5.77,5.07,4.7,4.87,8.43,7.3,6.33,7.07,8.48,6.84,6.73,5.95,5.97,4.62,5.29,4.82,4.54,4.83,6.33,6.33,7.33,7.63,7.52,7.12,5.92,4.87,4.84,4.79,4.97,5.11,7.84,7.77,7.02,6.35,6.46,5.3,7.05,6.97,6.89,6.51,6.71,6.86,5.99,5.52
1989-06,6.16,6.33,6.32,5.67,5.41,6.83,6.3,5.87,5.31,5.54,7.92,7.12,6.38,5.73,6.15,5.26,9.35,7.77,7.37,6.7,5.74,6.26,5.42,5.13,4.77,4.37,4.19,9.22,9.34,8.65,6.88,6.24,6.07,5.98,5.42,5.06,4.85,4.71,9.63,9.65,8.08,9.75,9.8,8.5,7.08,6.6,6.21,5.63,5.78,4.69,4.35,5.05,10.1,7.68,5.59,6.52,8.69,7.88,7.66,7.53,7.18,5.58,5.34,5.06,4.4,4.76,5.59,5.59,7.86,8.54,8.74,8.72,7.02,5.89,5.16,5.38,5.28,4.91,9.32,9.45,8.09,6.94,5.2,5.78,7.96,7.74,7.81,5.91,7.32,7.32,6.5,5.89
1989-07,7.31,9.32,9.47,7.81,7.14,8.42,8.39,8.53,8.37,7.73,9.4,9.01,8.94,8.64,8.39,7.63,9.83,9.53,9.37,9.04,8.24,8.24,6.35,5.66,5.4,4.92,5.03,9.41,10.85,10.03,8.24,7.67,7.69,7.11,6.07,5.53,5.31,4.8,8.13,8.12,8.31,9.87,10.6,10.2,9.2,8.12,7.72,7.14,6.25,5.3,4.86,5.25,7.95,6.38,5.02,6.01,8.96,9.17,8.9,8.02,8.08,6.91,6.5,5.63,5.07,5.42,5.02,5.02,9.28,10.55,10.15,9.38,8.08,7.1,6.03,5.36,5.71,6.13,10.48,10.02,8.68,7.41,5.92,5.55,8.54,8.23,8.46,6.63,7.9,7.8,7.93,7.02
1989-08,5.65,6.95,7.04,6.36,6.07,6.35,6.41,6.43,6.3,6.03,6.97,6.81,6.69,7.07,7.66,6.66,8.09,7.16,7.25,7.53,7.96,7.06,6.2,6.2,6.07,5.16,4.7,7.82,7.94,8.5,7.19,6.93,6.35,6.9,6.86,6.4,5.33,3.9,6.18,5.93,6.68,8.16,8.17,8.4,8.06,7.7,6.91,6.74,7.06,6.77,4.79,5.01,5.72,4.48,3.41,4.37,7.3,8.07,7.84,6.78,7.63,6.58,6.18,5.37,5.22,5.31,3.41,3.41,8,9.37,8.93,8.06,7.49,7.13,5.93,5.08,5.36,5.49,9.14,8.84,8.31,7.37,6.27,5.58,8.06,8.18,8.01,6.55,7.6,8.01,6.26,4.9
1989-09,5.15,6.5,6.6,6.07,5.86,5.52,5.93,6.23,6.41,5.76,6.1,5.96,6.29,6.86,6.81,5.65,6.52,6.01,6.43,7.01,6.25,6.69,5.4,5.12,5.28,4.4,3.61,5.69,6.69,7.65,6.14,5.91,6.01,5.95,5.92,5.39,4.85,3.63,5.6,5.5,4.93,6,6.6,7.21,6.33,6.29,6.33,6.22,6.43,5.29,3.91,4.73,5.36,4.31,3.41,4,6.04,7.01,6.77,6.19,6.66,6.07,5.93,5.2,5.09,5.25,3.41,3.41,6.93,7.97,7.8,7.51,7.3,6.52,5.55,5.06,5.57,6.02,8.11,8,7.32,6.89,5.36,5.17,6.59,7.15,6.96,5.7,5.85,6.96,5.81,5.08
1989-10,4.5,5.92,6.5,6.26,5.28,5.4,6.5,6.46,6.21,5.59,5.98,6.5,6.44,6.18,5.83,5.4,6.44,6.57,6.64,6.66,6.37,6.12,5.85,5.6,4.58,3.62,2.48,5.83,6.29,6.71,5.29,5.37,6.12,5.91,5.38,4.81,4.1,2.49,4.5,4.63,4.94,5.62,6.11,6.49,5.85,5.63,6.07,5.58,5.45,4.35,3.38,3.92,4.54,4.1,3.73,4.14,5.42,5.69,5.62,4.97,5.5,5.12,5.14,4.38,4.2,4.36,3.73,3.73,5.64,6.21,6.02,5.65,5.52,5.08,4.55,4.51,4.51,4.57,6.1,6.02,6.02,5.95,4.34,4.55,4.74,5.87,6.11,4.83,3.82,5.11,5.3,4.99
1989-11,5.22,5.22,5.44,6.04,4.31,5.22,5.22,5.54,6.04,4.52,5.42,5.55,5.83,5.89,5.5,3.69,5.66,5.84,5.7,5.37,3.84,3.97,3.72,3.62,3.56,2.8,2.48,4.36,5.41,5.08,4.54,4.33,4.04,3.93,3.57,3.31,3.09,2.68,3.6,3.94,3.62,5.2,5.64,4.82,3.9,4.25,3.76,3.53,3.53,3.12,2.1,2.6,4.2,3.22,2.38,3.08,4.54,3.23,3.1,2.95,3.23,3.05,3.38,3.09,2.58,2.57,2.38,2.38,3.54,3.89,3.44,3.11,3.42,3.06,3.14,2.82,2.8,2.75,3.34,3,3.18,3.43,3.2,2.85,3.19,3.86,3.9,3.39,3.27,3.78,3.48,3.37
1989-12,2.55,2.55,2.5,2.38,2.38,2.55,2.55,2.48,2.38,2.41,2.51,2.49,2.46,2.53,2.61,2.82,2.43,2.43,2.86,3.39,2.8,2.97,3.19,3.25,2.68,2.64,2.52,3.35,3.25,2.75,1.9,2.18,3.22,3.2,3.04,2.52,2.44,2.08,3,3,3.75,4.08,3.59,2.84,1.69,1.64,3,3.25,2.78,2.12,1.24,1.9,3,3,3.57,4.09,3.83,2.15,2.08,1.71,1.89,2.69,2.51,2.36,2.16,1.95,3.21,4.09,3.94,2.15,2.08,1.91,1.74,2.57,2.24,1.81,1.95,1.91,2.06,2.05,2.11,2.54,2.38,1.87,1.7,2.46,2.7,2.56,1.44,1.85,2.02,1.94
1990-01,2.61,2.61,2.61,2.77,2.95,2.61,2.61,2.61,2.64,2.92,2.61,2.61,2.61,2.61,2.79,2.95,2.61,2.61,2.61,2.61,2.69,2.91,2.95,2.95,2.33,1.92,1.82,2.61,2.61,2.61,2.61,2.61,2.32,2.31,2.32,2.34,2.33,1.94,2.75,2.66,2.63,2.61,2.61,2.61,2.61,2.5,1.96,2.24,2.37,2.19,2.09,1.94,3.16,3.16,3.13,3.05,2.98,2.96,2.84,2.57,2.03,2.51,1.97,2.02,1.98,1.94,3.16,3.16,3.16,3.16,3.16,2.78,2.63,2.53,2.12,2.36,2.23,2.19,3.16,2.65,2.56,2.67,2.2,2.26,3.13,2.84,2.85,2.33,3.51,3.23,3.16,3.19
1990-02,2.49,2.49,2.49,2.5,2.52,2.49,2.49,2.49,2.49,2.55,2.49,2.49,2.49,2.6,2.82,2.36,2.49,2.49,2.49,2.84,3.02,2.24,2.22,2.46,2.68,2.46,2.14,2.49,2.49,2.49,2.79,3.1,2.44,2.32,2.78,3.57,3.44,2.27,2.9,2.64,2.55,2.49,2.49,2.49,2.51,3.02,2.79,2.67,2.71,2.73,2.45,2.37,4.06,4.06,3.97,3.74,3.56,3.48,3.16,2.85,2.58,2.78,2.35,2.3,2.34,2.35,4.06,4.06,4.06,4.06,4.06,3.06,3.01,2.92,2.32,2.24,2.45,2.5,4.06,3.12,3.11,2.92,2.38,2.32,3.25,3.34,3.19,2.55,3.33,3.51,3.72,3.75
1990-03,4.6,3.44,2.73,2.67,2.67,4.96,3.63,3.26,2.67,2.67,5.02,3.96,3.62,3.12,2.67,2.67,5.02,4.33,3.62,3.68,3.29,2.75,2.75,2.97,2.88,2.64,2.46,5.02,4.07,3.62,3.67,3.63,3.07,2.85,3.27,3.74,3.46,2.43,4.15,4.21,4.64,4.5,3.65,3.62,3.62,3.7,3.03,2.9,3.26,3.31,3.28,3.01,4.15,4.15,4.15,4.18,4.1,4.06,3.92,3.18,2.4,2.62,2.95,3.1,3.05,3.11,4.23,4.32,4.32,4.32,4.32,2.67,2.72,3.1,3.43,3.51,3.26,3.2,4.32,3.06,3.22,3.45,3.78,3.68,3.42,4.07,3.82,3.86,4.52,4.78,4.68,4.66
1990-04,4.1,4.25,4.36,4.22,3.83,4.55,4.54,4.28,4.22,4.18,4.98,4.68,4.21,4.2,4.19,4.17,5.88,5.6,4.21,4.13,4.13,4.21,3.85,3.61,3.96,3.78,3.85,5.92,5.22,4.38,4.25,4.1,4.06,4,3.89,4.9,4.85,3.43,6.39,6.3,5.12,4.97,4.97,4.38,4.37,4.14,3.92,3.94,4.32,4.43,4.24,3.98,6.39,5.2,4.34,4.34,4.36,4.39,4.39,3.98,3.21,3.78,3.64,3.73,4.17,4.19,4.34,4.34,4.39,4.4,4.4,3.85,3.69,3.55,3.65,3.38,4.4,4.65,4.4,4.2,4.37,3.81,3.83,3.64,4.43,4.5,4.04,3.92,4.44,4.55,4.69,4.71
1990-05,5.36,6.25,6.25,5.63,5.06,5.53,6.03,6.24,5.46,5.17,6.28,6.06,5.47,5.34,5.4,5.02,7.85,7.34,5.93,5.77,5.77,5.49,4.39,4.36,4.06,3.64,3.99,7.25,6.02,6.3,5.93,5.53,5.15,5.01,4.75,4.85,4.72,3.98,7.65,7.63,6.02,5.74,5.93,6.3,6.27,5.63,5.05,5.04,5.25,4.96,4.24,4.23,7.65,6.38,5.47,5.47,5.53,5.84,5.99,5.69,4.9,5.02,5.19,4.83,4.21,4.2,5.47,5.47,5.56,5.58,5.58,5.27,5.29,5.17,5.01,4.81,4.75,4.74,5.58,5.55,5.7,4.72,4.86,4.84,5.72,5.65,4.94,4.93,5.59,5.59,5.68,5.7
1990-06,8.21,11,11,9.74,8.57,8.59,10.28,10.97,9.38,8.79,9.71,9.81,9.38,9.08,9.18,8.5,12.07,11.63,9.62,9.78,9.78,9.27,7.16,7.06,5.83,5.69,5.62,10.97,10.06,9.26,9.36,9.44,8.88,7.92,7.16,6.52,5.85,5.62,9.97,9.83,8.39,7.14,8.56,9.26,9.27,9.39,8.62,8.35,8.03,7.03,5.86,5.8,9.97,8,6.58,6.58,7.64,9.77,9.6,8.85,7.45,7.4,7.86,6.99,5.72,5.75,6.58,6.64,9.41,10.07,10.07,8.67,8.42,7.65,7.42,6.97,6.42,6.28,10.07,9.14,9.36,8.11,7.24,7.12,9.9,9.12,8.22,7.36,10.21,9.12,8.12,8.04
1990-07,6.73,10.66,10.66,9.58,8.57,6.79,9.5,10.63,8.99,8.44,7.5,8.29,8.82,8.39,8.4,7.9,8.98,8.58,8.19,8.45,8.45,8.22,7.43,7.67,5.74,5.47,5.56,7.72,7.28,7.58,7.31,7.28,7.57,7.64,7.47,6.25,5.41,5.61,7.5,7.25,6.03,6.01,6.94,7.58,7.55,7.02,7.15,7.59,8.2,6.9,5.24,5.34,7.5,5.12,3.41,3.41,4.58,7.27,7.37,6.87,6.31,6.25,6.7,6.08,5.42,5.37,3.41,3.47,6.39,7.09,7.09,6.15,6.4,6.69,6.46,5.53,5.6,5.62,7.09,6.79,7.13,6.37,6.64,6.18,7.23,7.33,6.54,6.63,7.39,7.28,6.83,6.71
1990-08,5.84,10.27,10.27,9.23,8.27,5.2,8.75,10.23,8.13,7.51,5.65,6.85,7.7,7.03,6.98,6.31,6.6,6.31,6.53,6.65,6.65,6.67,6.76,6.67,6.13,6.01,5.15,5.42,5.03,6.24,6.41,6.55,6.43,6.99,7.32,7.09,6.45,5.6,6.13,5.95,4.47,4.35,5.01,6.24,6.25,6.52,6.4,7.46,7.64,6.87,6.04,5.89,6.13,4.49,3.3,3.3,4.54,6.97,6.73,6.57,6.58,6.99,7.31,6.81,6.28,6.23,3.3,3.37,6.62,7.4,7.4,6.82,6.82,6.86,7,6.39,6.67,6.74,7.4,7.31,7.57,6.54,6.96,6.73,7.69,8.01,6.86,6.97,8.19,8.11,7.43,7.25
1990-09,4.82,7.5,7.5,7.07,6.67,4.41,6.57,7.48,6.25,5.94,4.41,5.39,5.96,5.61,5.63,5.5,4.96,5.09,5.49,5.77,5.77,5.6,5.21,5.23,4.57,4.46,3.93,5.06,4.92,4.86,4.69,4.83,5.59,5.34,5.8,5.37,4.9,4.79,5.13,4.97,3.7,2.95,4.28,4.86,4.84,4.51,5.32,5.41,5.63,5.13,4.57,4.64,5.13,3.68,2.63,2.63,3.34,4.88,4.87,4.98,4.41,4.94,5.15,4.76,4.35,4.39,2.63,2.67,4.46,4.89,4.89,5.42,5.25,5.03,5.14,4.45,4.56,4.59,4.89,5.58,5.69,5.19,5.44,5.03,5.02,5.64,5.3,5.44,4.57,5.29,5.59,5.55
1990-10,3.97,3.97,4.64,4.75,4.75,3.97,4.01,5.01,5.11,5.08,3.97,4.63,5.28,5.32,5.36,4.82,5.08,4.93,5.15,5.59,5.59,5.3,4.47,4.21,3.45,3.04,2.99,5.31,4.52,4.15,4.26,4.6,4.94,4.78,5.08,4.55,3.77,3.28,4.6,4.55,3.94,3.27,3.84,4.15,4.15,4.27,4.59,4.39,4.52,4.29,3.77,3.64,4.6,3.65,2.96,2.96,3.54,4.64,4.48,4.24,4.21,4.51,4.41,4.14,3.67,3.69,2.96,2.99,4.56,4.93,4.93,4.21,4.32,4.74,4.54,4.38,4.14,4.08,4.93,4.78,5.08,5.16,4.82,4.63,4.6,5.29,5.43,4.98,4.23,5.19,6.16,6.25
1990-11,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.8,2.75,2.82,2.84,2.9,2.96,2.96,2.6,2.69,3.09,3.3,3.3,3.29,3.02,3.27,2.79,2.21,2.26,2.31,2.6,2.6,2.85,3.09,2.93,3.04,3.16,3.6,3.19,2.07,1.9,1.9,1.9,1.9,2.42,2.6,2.62,3.02,2.7,2.74,2.98,2.88,2.48,2.34,1.9,1.9,1.9,1.9,2.23,2.86,2.77,2.74,2.37,2.72,2.87,2.59,2.32,2.35,1.9,1.92,2.8,3.01,3.01,2.78,2.75,2.81,2.95,2.4,2.66,2.73,3.01,3.08,3.24,2.87,3.28,2.92,3.41,3.47,3.13,3.36,3.49,3.68,4.16,4.26
1990-12,2.5,2.5,1.89,1.7,1.7,2.5,2.5,2.2,1.7,1.7,2.5,2.5,2.47,1.76,1.7,1.7,2.5,2.5,2.5,2.01,1.7,1.7,1.7,1.65,1.61,1.61,1.61,2.5,2.5,2.5,2.25,1.66,1.7,1.7,1.66,1.61,1.61,1.61,2.5,2.5,2.5,2.5,2.5,2.5,2.43,1.79,1.64,1.7,1.66,1.58,1.6,1.61,2.5,2.5,2.5,2.5,2.5,2.5,2.5,2.14,1.83,2.04,1.63,1.63,1.47,1.49,2.5,2.5,2.5,2.5,2.5,2.3,2.21,2.06,1.73,1.94,1.85,1.82,2.5,2.36,2.39,1.98,1.72,1.81,2.75,2.94,2.78,1.92,2.98,3.32,3.61,3.63
1991-01,2.12,2.12,2.1,2.04,2.04,2.12,2.12,2.09,2.04,2.03,1.86,1.95,1.91,1.99,1.78,1.67,1.6,1.6,1.95,2.34,2.32,1.8,1.7,1.94,2.16,0.84,0.75,1.77,1.81,2.11,1.98,2.39,1.99,1.56,1.71,1.87,1.44,1.75,3.64,3.64,2.74,2.43,1.79,1.9,1.79,2.43,2.56,1.65,2.12,2.62,1.48,1.98,3.64,3.64,3.06,2.47,1.94,1.69,1.76,2.33,2.88,1.83,2.25,2.57,1.55,1.67,3.16,2.54,2.54,2.54,2.17,2.09,1.99,2.16,1.95,1.68,1.86,1.55,2.06,1.74,1.87,2.38,2.14,1.36,1.39,2.1,2.53,2.55,1.62,1.85,2.16,2.1
1991-02,3.73,3.73,3.54,3.09,3.09,3.73,3.73,3.48,3.09,3.11,3.76,3.75,3.5,3.37,3.74,3.22,3.8,3.8,3.84,3.75,3.42,3.03,2.36,2.34,2.52,1.69,1.43,3.3,3.54,4.14,3.19,2.88,2.97,2.39,2.51,2.44,2.15,1.69,4.06,4.06,3.4,3.2,3.25,3.34,2.49,2.44,2.75,2.31,2.83,2.97,1.85,2.01,4.06,4.06,3.63,3.19,2.87,2.68,2.72,2.49,2.4,2.13,2.26,2.31,1.84,1.86,3.76,3.41,3.42,3.42,3.05,2.58,2,2.37,2.22,2.33,2.32,1.96,3.17,2.99,2.27,2.32,2.37,2.26,3.44,2.98,2.53,2.45,2.99,3.09,3.55,3.75
1991-03,5.9,5.9,5.92,5.96,5.14,5.9,5.9,5.92,5.96,4.63,6.58,6.36,6.43,5.82,5.03,4.92,7.23,7.27,6.75,5.94,5.4,5.38,4.38,4.36,4.1,3.11,2.95,6.78,6.17,5.94,5.49,5.4,5.16,4.54,4.26,4.21,3.52,3.15,5.18,6.25,6.68,6.5,6.26,5.31,5.29,5.43,4.59,4.34,4.64,4.71,3.03,3.36,6.23,6.23,6.37,6.47,5.26,4.55,4.71,4.12,4.17,4.12,3.89,3.65,3.13,3.19,6.21,6.1,6.08,6.08,5.62,5.04,4,4.07,4.01,3.8,3.68,3.25,5.77,5.41,4.52,4.4,4.01,3.83,5.26,4.94,4.71,4.55,5.56,4.95,5.99,6.27
1991-04,5.34,6.86,6.79,5.79,5.75,5.32,7.18,7.35,7.33,5.33,5.99,7.67,7.93,7.31,5.8,4.85,8.54,8.7,8.35,7.55,6.36,5.78,3.99,3.88,3.68,2.63,3.13,8.4,7.9,8.08,6.27,5.8,5.17,4.34,3.63,3.83,3.13,3.04,7.8,8.08,7.55,8.32,7.74,6.81,5.77,5.17,4.44,3.86,3.89,3.78,2.99,3.55,8.24,6.88,5.48,6.03,5.97,5.14,5.17,5.64,4.27,3.49,3.87,4.06,3.03,3.09,5.48,5.49,5.93,6.03,5.62,5.37,3.95,3.63,3.7,5.43,3.18,2.62,5.75,5.43,3.88,3.61,3.24,4.42,5.77,4.66,3.76,3.57,4.85,4.53,5.54,5.78
1991-05,6.49,8.14,7.93,7.14,6.41,7.04,9.36,8.91,8.22,5.88,7.95,9.91,9.61,8.55,7.09,6.04,9.23,11.09,10.13,8.71,7.3,6.92,4.64,4.59,4.66,3.78,3.83,9.93,9.82,9.45,7.65,6.64,5.77,4.67,4.69,4.59,3.95,3.72,10.34,11.03,9.38,10.99,9.93,8.63,7.82,6.29,5.28,4.63,5.09,4.71,4.19,4.59,11.44,9.21,6.9,7.7,8.09,7.32,7.35,5.87,5.5,4.66,4.5,4.31,4.1,4.32,6.9,6.91,7.57,7.73,7.49,6.85,5.62,4.65,4.29,4.62,4.76,4.13,7.51,7.23,5.58,4.94,4.76,4.52,7.45,6.1,5.86,5.67,5.69,5.57,6.75,6.96
1991-06,7.02,9.98,9.92,8.87,7.89,7.19,10.27,9.97,9.34,7.49,8.63,10.46,10.19,9.54,8.35,7.44,11.05,10.93,10.65,10.03,8.59,8.47,6.14,6.36,7.64,4.5,4.16,11.28,10.6,9.7,8.26,8.18,7.27,6.11,6.67,6.31,5.3,5.18,10.47,10.96,10.09,11.99,11.05,8.94,7.51,7.56,6.17,6.52,6.42,6.52,5.23,5.57,11.26,8.98,6.62,7.66,8.5,7.8,8.2,7.51,6.59,5.99,6.13,6.16,5.44,5.31,6.62,6.66,8.48,8.91,8.93,8.33,5.91,6.06,5.59,6.39,6.53,5.2,9.77,10.15,7.76,6.66,5.29,5.33,11.75,8.65,8.64,8.13,6.62,6.82,8.86,8.65
1991-07,6.69,11.3,11.24,10.96,10.71,6.13,11.58,11.17,10.54,10.02,7.22,11,10.51,10.93,11.06,10.25,8.91,10.02,10.1,10.68,11.08,11.47,8.62,8.08,7.91,6.05,6.03,8.02,9.84,10.16,9.49,10.12,9.94,8.94,8.43,7.99,6.33,6.5,8.53,8.6,6.49,8.78,9.77,9.37,9.18,9.17,8.76,8.55,8.19,7.88,6.1,6.76,9.1,6.38,3.57,4.55,7.69,8.93,9.39,8.88,7.76,7.45,7,6.43,6.29,6.53,3.57,3.67,8.35,9.47,9.84,9.5,6.69,6.55,6.11,6.29,6.54,6.5,10.23,10.35,8.15,6.88,6.62,6.5,10.7,8.7,7.49,7.21,7.39,7.02,8.69,8.93
1991-08,7.13,10.77,10.99,10.76,10.52,6.81,9.21,9.83,10.18,9.33,5.74,7.03,9.63,9.78,8.92,7.9,7.79,9,9.32,9.23,8.42,8.3,6.5,6.55,6.85,5,4.77,7.68,8.55,8.26,7.31,7.85,7.76,7.86,7,7.13,5.83,5.08,8.98,9.11,6.85,9.66,8.73,8.11,7.29,7.42,7.23,7.43,7.56,8.32,9.61,6.79,9.68,6.71,3.64,4.81,7.32,7.95,8.15,7.75,8.09,7.12,7.21,6.49,5.75,6.16,3.64,3.76,9.61,11,10.37,9.76,7.89,7.48,6.63,6.26,6.06,5.69,11.5,11.64,9.46,8.63,7.95,7.14,12.75,10.15,11.62,11.25,9.8,9.28,10.04,9.72
1991-09,5.31,8.01,8.11,7.76,7.42,5.24,7.39,7.14,6.65,5.82,5.57,6.84,6.59,6.85,5.7,5.87,6.17,5.82,8.37,9.78,6.1,6.77,4.91,4.82,5.8,4.28,3.82,6.16,6.04,5.85,6.02,5.89,5.62,5.37,5.16,5.75,4.93,4.41,7.37,8.5,5.24,6.04,6.11,5.85,5.44,4.57,5.39,5.58,5.91,6.21,4.76,5.38,8.97,5.67,2.25,2.97,5.07,5.81,5.3,5.36,5.7,4.95,5.62,6.04,4.66,5.03,2.25,2.33,6.03,6.91,6.58,6.33,4.72,5.14,5.09,4.65,4.94,4.98,7.2,7.15,5.69,5.62,5.21,4.84,7.38,6.15,6.37,6.23,4.67,5.5,7.8,7.51
1991-10,4.04,7.33,7.68,6.63,6.61,5.12,8.26,7.98,7.38,6.54,5.72,8.22,7.92,7.88,7.68,6.21,6.51,8.24,7.9,7.67,7.32,7.18,5.59,5.43,5.69,3.52,2.88,7.46,7.47,8.39,6.4,6.62,6.4,5.98,5.45,5.54,4.62,4.1,6.42,6.7,6.5,7.34,6.96,7.19,5.75,6.12,5.62,5.94,6.36,5.78,4.57,5.1,6.8,5.5,4.16,4.77,5.87,5.93,5.51,5.73,6.33,5.8,6.25,5.31,4.53,4.83,4.16,4.2,6.04,6.48,6.6,6.79,5.67,5.97,5.75,5.58,5.47,4.94,7.05,7.15,6.68,6.19,5.54,5.35,6.56,6.62,8.17,7.88,4.86,5.55,7.78,7.7
1991-11,3.19,3.19,3.2,3.23,3.23,3.19,3.19,3.21,3.23,3.23,3.58,3.45,3.56,3.4,3.24,3.73,3.97,3.97,4.49,4.66,3.83,3.72,3.14,3.17,4.05,1.98,1.66,3.68,3.72,4.18,3.44,3.7,3.35,2.83,3.22,3.3,2.77,2.55,3.76,4.19,4.45,4.46,3.66,3.75,3.05,3.54,3.32,3.31,4,3.71,2.46,4.91,4.2,4.2,4.36,4.5,3.78,3.39,3.14,3.3,3.95,3.04,3.48,4.14,2.82,3.69,3.94,3.4,3.33,3.33,3.58,3.88,3.26,3.62,3.26,3.93,3.09,2.74,4.25,4.81,4.04,3.95,2.92,3.32,5.7,4.7,5.32,4.99,5.46,4.15,5.2,5.17
1991-12,3.62,3.62,3.64,3.68,3.68,3.62,3.62,3.64,3.68,3.66,3.32,3.42,3.45,3.58,3.25,4.92,3.01,3.01,3.64,4.28,4.26,4.32,2.92,3.6,4.81,1.68,1.56,4.08,4.12,3.21,2.77,3.68,2.77,1.95,3.02,3.18,1.71,1.53,4.57,6.15,3.58,2.89,4.16,3.54,2,2.64,3.06,1.7,3.8,5.34,1.83,2.42,6.2,6.2,4.5,2.81,3.21,3.29,2.71,2.69,3.21,2.02,2.86,5.12,2.71,2.33,4.53,2.23,2.2,2.2,2.26,2.25,3.51,4.3,3.33,2.89,3.62,2.54,2.63,3.11,2.76,3.4,2.47,2.13,4.47,3.2,5.9,5.66,2.59,2.3,4.09,3.82
1992-01,1.66,1.66,1.7,1.8,1.8,1.66,1.66,1.72,1.8,1.81,1.78,1.74,1.83,1.92,2.03,2.07,2.09,1.9,2.1,2.16,1.85,1.93,1.14,2.37,3.47,1.55,1.28,2.81,1.97,2.38,1.83,1.66,1.71,1.33,2.16,2.22,1.5,1.29,2.36,3.21,2.67,2.02,1.83,2.13,1.75,1.87,1.82,1.39,2.82,3.57,1.72,2.7,3.24,3.24,2.63,2.03,1.93,1.87,1.76,2.12,2.54,2.01,1.91,3.55,1.92,2.22,2.54,1.54,1.51,1.51,1.92,2.43,1.9,2.17,1.99,1.74,2.21,1.6,2.22,2.51,1.64,1.73,1.23,1.23,2.59,1.93,2.62,2.47,1.5,1.35,2.65,3.01
1992-02,3.05,3.05,3.32,3.97,3.97,3.05,3.05,3.41,3.97,3.95,3.48,3.34,3.77,3.76,3.36,2.74,3.92,3.92,3.8,3.52,3.12,2.9,2.38,2.26,2.75,2.04,1.85,2.93,3.21,4.31,3.4,2.68,2.83,2.31,2.43,2.93,2.36,1.77,2.99,3.7,3.16,2.78,2.83,3.35,2.36,2.34,3.11,2.17,3.27,4.49,3.64,4.23,3.72,3.72,3.24,2.78,2.95,3.02,2.67,3.77,3.59,2.39,2.17,2.93,2.51,3.28,3.25,2.62,2.61,2.61,2.85,3.38,2.82,2.87,2.66,2.99,3.1,2.24,3.15,3.38,2.55,2.71,2.76,2.69,3.64,2.94,4.01,3.95,2.66,2.55,3.76,3.84
1992-03,5.23,5.23,5.21,5.17,4.32,5.23,5.23,5.21,5.17,3.8,5.71,5.55,5.56,5.14,4.38,3.58,6.09,6.19,5.85,5.21,4.39,4.2,3.29,4.06,4.03,2.58,2.45,5.44,5.39,5.52,4.82,4.25,4.21,3.79,3.85,4.12,3.13,2.87,4.83,5.16,4.85,5.92,5.42,4.64,3.54,3.9,3.89,3.75,4.2,4.67,3.55,4.18,5.29,4.26,3.19,3.73,4.26,3.97,3.87,3.96,3.9,3.58,3.24,3.35,3.39,3.83,3.19,3.21,4.11,4.32,4.15,3.96,3.49,3.58,3.36,3.24,3.51,3.39,4.42,4.47,3.76,3.46,2.9,3.06,5.08,4.29,4.76,4.51,3.99,4.09,4.95,4.89
1992-04,4.75,5.15,5.08,4.71,4.7,4.75,5.24,5.26,5.22,4.37,5.09,5.36,5.42,5.32,4.7,4.14,5.66,5.62,5.68,5.42,4.56,4.44,4.11,4.15,4.41,3.26,3.55,5.8,5.22,5.35,4.54,4.67,4.49,4.22,4.25,4.18,3.85,3.77,7.16,7.44,5.72,6.66,5.21,5.11,4.64,4.91,4.5,4.36,4.8,4.75,4.19,4.19,7.82,5.88,3.88,4.45,4.92,4.59,4.31,4.33,4.38,3.81,3.62,4.1,4.01,4.08,3.88,3.89,4.38,4.5,4.37,4.3,4.05,4.35,4.28,3.74,4.27,4.15,4.72,4.9,4.1,3.83,3.63,3.67,5.81,4.39,4.88,4.76,3.96,3.72,5.46,5.72
1992-05,4.62,5.76,5.9,5.81,5.82,4.61,6,5.8,5.52,4.91,4.66,5.87,5.67,5.62,5.07,4.42,4.62,5.66,5.97,5.88,4.61,4.41,3.9,3.9,4.32,3.57,3.72,5.04,5.47,5.31,4.89,4.27,4.17,4.01,3.61,4.54,3.98,3.68,6.24,7.29,5.75,6.04,5.59,4.9,4.87,4.1,4.08,3.96,4.36,4.51,4.54,4.87,7.59,5.57,3.48,3.98,4.52,4.29,4.3,4.52,4.66,4.24,3.8,3.85,4.38,4.75,3.48,3.5,4.7,4.98,4.77,4.59,4.05,4.73,4.27,4.13,4.88,4.76,5.02,4.99,4.38,4.99,4.51,4.29,5.32,4.63,9.84,9.61,4.92,4.47,6.42,6.22
1992-06,4.98,5.98,5.85,5.11,4.43,5.47,6.66,6.59,6.26,4.82,4.91,5.7,6.93,6.94,6.59,5.89,6.42,7.34,6.9,6.55,6.07,6.66,5.69,5.24,4.75,4.22,5.06,6.73,6.43,6.39,6.45,6.72,6.36,5.73,5,5.97,5.2,4.7,9.5,9.68,7.75,7.94,6.58,6.42,6.66,7.02,6.71,5.68,6,5.72,5.91,6.88,10.01,7.55,5.01,5.61,6.46,6.47,6.39,7.36,7.61,5.75,5.13,5.04,5.33,6.23,5.01,5.05,6.74,7.15,7.49,8.13,6.35,5.81,5.58,4.48,5.5,5.48,8.06,8.22,6.15,5.59,5.54,5.06,7.96,6.63,8.28,8.05,5.35,6.13,8.05,7.98
1992-07,6.61,9.16,9.21,8.4,7.65,7.42,8.89,9.1,9.17,8.07,7.98,9.09,9.29,9.6,9.45,7.68,8.82,9.54,8.85,8.41,8.85,8.45,7.11,6.99,6.93,4.79,4.65,7.79,8.28,8.51,7.37,7.76,7.86,7.65,6.48,6.81,6.33,5.87,9.05,9.65,6.53,8.74,8.39,7.73,7.69,7.69,6.96,7.49,7.76,6.65,5.93,6.44,10.05,7.54,4.95,5.92,7.18,7.01,7.4,8.29,7.97,6.67,5.99,5.3,5.63,5.99,4.95,5,7.49,8.08,8.15,8.36,6.89,6.88,5.83,5.47,5.64,5.58,8.77,9.02,7.19,6.74,5.75,5.78,9.84,7.98,7.04,6.75,8.93,8.62,8.68,8.81
1992-08,5.44,7.24,7.27,7.08,6.91,6.17,7.08,6.93,6.67,6.27,6.78,7.1,6.89,6.96,7,6.27,7.91,7.15,6.92,7.04,7.52,7.01,5.68,5.62,5.66,4.44,4.28,7.65,7.37,7.07,6.71,6.98,6.21,6.27,5.79,5.89,5.53,5.39,6.95,6.81,6.38,7.8,7.56,6.57,6.13,6.57,5.84,6.45,6.77,5.83,5.62,7.08,6.95,5.19,3.36,4.27,5.78,5.84,6.12,6.04,6.49,5.9,5.58,5,5.34,6.3,3.36,3.44,7.1,7.97,7.4,6.98,6.35,6,5.65,4.94,5.44,5.45,8.08,8.13,6.86,6.34,5.63,5.43,9.16,7.5,7.26,6.98,7.36,7.03,7.86,7.95
1992-09,7.02,7.95,8.1,8.09,6.12,5.97,6.84,7.37,7.61,5.69,3.04,4.34,7.21,7.38,6.46,6.2,6.18,6.6,6.89,6.85,6.33,6.7,5.26,4.72,5.05,3.51,3.49,7.26,7.25,6.51,5.84,6.19,5.94,5.82,4.78,5.64,4.51,4.74,6.92,6.98,6.1,7.52,7.57,6.81,6.28,6.17,5.46,6.04,6.24,6.34,4.66,7.21,7.17,5.4,3.56,4.39,6.32,6.78,6.41,6.28,6.3,5.82,5.23,4.53,4.51,6.05,3.56,3.63,6.96,7.75,7.18,6.78,6.17,5.87,5.34,3.94,4.74,4.96,7.61,7.52,6.58,5.46,5.81,5.1,8.24,6.63,6.84,6.75,7.55,6.58,7,6.93
1992-10,4.44,5.77,5.96,5.84,5.84,4.07,5.82,5.96,5.81,5.42,2.28,3.63,6.01,6.2,6.27,5.08,4.56,5.98,5.98,5.84,5.91,5.6,4.92,4.89,4.97,2.72,2.33,5.51,5.83,5.72,4.83,5.37,5.36,5.1,4.81,5.06,3.88,3.64,5.18,5.86,4.66,5.73,5.85,5.54,4.9,5.46,5.2,5.07,5.38,4.66,4.15,4.57,6.01,4.76,3.47,4,5.09,5.26,4.86,4.59,5.43,5.01,4.44,3.68,4.08,4.39,3.47,3.52,5.91,6.48,5.84,5.39,5.11,5.4,4.67,4.07,4.39,4.29,5.81,5.29,5.29,4.83,4.49,4.36,4.5,4.64,5.64,5.55,5.02,4.48,5.89,5.96
1992-11,4.18,4.18,3.9,3.22,3.22,4.18,4.18,3.8,3.22,3.25,4.14,4.15,3.77,3.61,4.08,4.08,4.02,4.1,4.28,4.54,4.58,3.66,2.66,2.8,3.66,2.04,1.96,2.63,4.37,4.48,3.89,3.63,3.07,2.7,2.85,3.91,2.38,2.06,3.15,3.92,2.22,3.17,4.38,3.89,3.63,2.93,3.4,2.8,3.7,3.56,2.9,4.83,3.95,3.95,3.65,3.66,3.55,3.39,2.98,3.35,3.66,3.11,3.14,3.11,2.57,3.81,3.83,3.69,3.69,3.69,3.78,4.03,2.97,3.88,2.89,2.33,2.69,2.71,4.41,4.67,3.43,3.26,2.36,2.35,5,3.65,3.96,3.75,3.26,2.91,4.21,4.36
1992-12,2.33,2.33,2.47,2.79,2.79,2.33,2.33,2.51,2.79,2.77,2.62,2.53,2.77,2.69,2.38,3.1,2.92,2.92,3.04,2.89,2.37,2.66,1.92,1.93,3.19,1.56,1.51,3.41,3.36,3.06,2.36,2.13,2.08,1.72,1.73,2.43,1.46,1.17,2.82,2.82,2.71,2.74,3.42,2.99,2.09,2.05,2.04,1.65,2.1,2.5,1.6,3.23,2.82,2.82,2.73,2.65,2.87,2.85,1.86,2.06,1.96,1.78,1.7,1.71,1.36,2.41,2.62,2.3,2.28,2.28,1.99,2,1.88,1.95,1.81,1.69,1.87,1.62,2.05,1.94,2.12,2.06,1.89,1.76,1.83,1.9,2.96,2.91,1.54,1.69,2.49,2.35
1993-01,2.1,2.1,2.1,2.1,2.1,2.1,2.1,2.1,2.1,2.09,2.24,2.2,2.22,2.08,1.96,2.45,2.35,2.39,2.42,2.45,2.43,2.17,1.53,1.68,3.92,1.86,1.38,1.57,1.98,2.38,2.12,2.19,1.82,1.64,2.3,2.72,2.05,1.27,2.67,3.36,1.58,2.04,1.95,2.28,2.39,1.79,1.55,1.34,2.81,3.29,2.78,2.28,3.38,3.38,2.75,2.37,2.51,2.8,5.1,3.44,2.02,2.26,2.6,2.65,1.88,1.95,2.59,1.37,1.31,1.31,2.75,2.55,2.33,2.71,2.32,2.49,2.88,1.94,1.91,2.25,2.23,2.24,1.79,1.81,2.35,2.26,3.61,3.44,2.18,2.38,3.13,3.08
1993-02,2.44,2.44,2.44,2.56,2.7,2.44,2.44,2.52,2.7,2.71,2.96,2.79,2.97,2.89,3.04,2.64,3.43,3.48,3.52,3.33,2.8,2.47,1.94,1.89,3.37,1.48,1.44,2.42,3.45,3.11,2.63,2.42,2.22,2.14,1.88,2.7,2.16,1.64,2.96,3.87,2.25,3.14,3.59,3.75,2.53,2.31,2.08,2.07,2.43,2.31,1.92,2.26,3.9,3.9,3.65,3.71,4.33,4.54,2.63,2.43,2.29,2.06,2.08,2.15,2.05,2.19,3.55,2.95,2.9,2.9,2.54,2.44,2.21,2.16,2.01,2.52,2.79,2.38,2.73,2.67,2.42,2.34,2.02,2.14,3.04,2.66,3.3,3.17,2.51,2.58,4.04,4.26
1993-03,5.07,5.07,5.07,4.87,4.65,5.07,5.07,4.94,4.65,4.63,5.13,5.11,4.93,4.49,4.05,4.29,5.17,5.19,5.03,4.6,3.68,3.9,2.94,3.23,3.45,2.29,2.37,5,5.13,5.11,4.07,3.63,3.53,3.29,3.01,3.38,2.66,2.44,4.04,4.48,5.02,5.52,5.14,4.72,3.97,3.3,3.22,3.18,3.77,3.42,3.33,3.66,4.45,4.45,5.15,5.85,4.75,4.11,3.91,3.77,3.4,2.98,2.89,2.65,2.62,3.21,4.61,4.59,4.51,4.51,4.06,3.65,3.36,3.41,3.02,2.73,3.07,2.94,4.35,4.29,3.13,2.86,3.14,2.97,5.37,3.84,3.44,3.38,2.97,3.29,4.3,4.5
1993-04,5.14,6.4,5.78,4.47,4.4,5.1,6.39,6.65,6.84,4.39,5.55,6.77,7.19,6.78,5.03,4.41,6.13,7.58,7.3,6.67,5.82,5.08,4.1,4.33,4.67,2.92,3.03,7.64,8.19,7.01,5.85,5.63,4.95,4.36,4.02,4.4,3.64,3.32,7.42,8.1,7.29,8.9,8.7,6.84,5.85,5.48,4.82,4.28,4.79,4.62,3.44,4.74,8.42,6.83,5.18,5.99,6.6,5.91,5.25,4.58,4.73,4.13,3.75,3.61,3.41,4.15,5.18,5.21,6.71,7.07,6.05,5.1,4.46,4.32,4.04,4.01,3.97,3.75,6.4,6,4.83,4.53,4.24,4.24,6.91,5.51,4.99,4.84,6.71,5.52,6,6.09
1993-05,5.29,7.24,6.62,5.3,5.24,6.09,7.23,7.37,7.32,5.29,6.92,8.06,8.35,7.58,6.25,4.93,8.11,9.75,8.89,7.6,6.3,5.71,4.53,4.45,4.44,3.12,3.6,9.1,9,7.34,6.71,6.27,5.23,5.02,4.6,5.24,3.94,4.33,10.32,11.01,8.3,9.97,9.6,8.1,6.95,6.58,4.71,4.85,5.69,5.91,4.22,4.95,11.56,8.7,5.75,6.67,8.26,8.23,6.69,5.79,5.94,4.99,4.55,5.37,4.67,4.74,5.75,5.79,7.68,8.13,7.38,6.57,6.11,5.95,5.3,5.91,6.28,5.18,7.84,7.46,5.26,5.48,4.93,5.17,8.29,6.41,5.57,5.38,5.58,5.52,6.25,6.24
1993-06,6.44,10.05,9.26,7.58,7.54,7.51,10.03,9.77,8.9,7.47,8.59,10.45,10.1,9.27,8.54,7.11,10.27,11.36,10.3,9.19,8.78,7.84,6.47,5.76,5.7,5,4.57,10.24,10.26,9.42,7.83,7.81,7.4,6.63,5.49,5.89,5.1,4.87,10.94,11.15,8.59,11.67,10.76,8.95,7.35,6.96,6.86,6.13,6.69,6.68,4.99,6.71,11.44,8.74,5.94,7.37,8.75,7.96,6.88,5.72,6.48,5.62,6.39,6.92,5.15,5.76,5.94,5.96,7.14,7.42,6.88,6.1,5.9,6.94,6.51,4.88,4.98,4.81,7.17,7.01,5.51,5.13,5.36,5.25,8.11,5.87,6.76,6.7,5.27,4.97,7.9,7.45
1993-07,8.86,11.57,10.75,9.02,8.96,9.66,11.55,11.57,11.2,9.83,10.37,11.48,11.48,12.6,13.09,11.43,11.57,11.39,11.26,11.78,13.23,12.78,11.04,10.39,10.34,6.83,5.32,10.34,11.22,12.3,10.36,10.82,11.54,11.23,9.17,9.36,7.8,7.63,10.26,10.2,8.17,10.51,10.98,10.97,9.54,9.72,9.38,10.16,9.46,9.68,7.18,7.83,10.52,7.46,4.29,5.62,9.11,10.2,9.69,9.02,8.84,8.26,7.05,6.66,6.69,7.25,4.29,4.4,9.79,11.07,10.72,10.31,8.37,8.24,7.19,6.74,7.3,7.22,12.08,12.66,9.28,8.15,7.69,7.41,15.36,9.92,9.47,9.31,9.27,8.61,10.69,10.83
1993-08,6.3,9.95,9.9,9.78,9.77,6.96,9.92,10,10.08,9.8,7.94,9.99,10.19,11.05,11.46,10.06,9.5,10.21,10.95,11.88,11.71,10.94,9.03,8.91,8.69,5.7,5.28,11.32,11.4,11.5,9.29,10.32,10.51,10.45,9.64,10.27,7.12,6.56,9.34,9.56,10.08,12.91,11.72,11.1,8.99,9.89,9.57,10.52,10.03,8.88,7.02,10.25,9.75,7.51,5.19,6.82,10.16,10.85,10.42,11.91,11.5,9.13,8.18,7.1,7.42,8.88,5.19,5.33,11.84,13.39,12.44,12.16,9.97,9.32,7.74,7.56,7.83,7.03,13.75,13.85,10.55,9.33,9.56,8.72,15.94,11.21,12.2,12.04,9.49,9.42,11.46,11.16
1993-09,5.74,9.07,8.45,7.14,7.09,6.53,8.84,9.08,8.81,7.01,5.39,6.71,9.05,8.92,7.9,7.18,7.79,8.83,8.6,8.04,7.67,7.85,6.76,6.62,6.48,5.35,4.32,8.47,8.34,8.38,6.4,6.94,6.76,7.69,7.2,7.57,5.94,5.42,7.65,7.71,7.06,8.63,8.28,8.11,6.07,6.8,5.92,7.97,7.86,7.23,7.16,7.17,7.87,5.9,3.87,4.86,7.26,7.84,6.3,6.97,7.47,7.08,6.3,5.53,5.89,6.7,3.87,3.93,6.81,7.5,7.69,8.44,7.75,7.29,6.38,5.93,7,6.82,8.6,8.99,7.82,7.02,5.94,5.88,8.83,7.79,9.26,8.88,5.99,6.63,9.23,9.23
1993-10,5.08,6.84,6.1,4.55,4.5,5.02,6.82,6.71,6.14,4.87,5.47,7.27,7.17,6.64,6.01,5.09,5.93,8.21,7.81,8.35,8.81,6.04,4.42,4.8,6.83,3.16,2.46,6.59,6.94,6.86,6.79,8.16,5.07,4.89,4.31,5.39,3.85,3.25,6.71,7.01,5.94,7.85,7.08,6.26,5.19,5.17,4.3,4.43,5.55,5.57,3.75,4.62,7.28,5.5,3.67,4.63,5.9,5.71,5.28,4.88,5.4,5.01,4.98,4.19,3.9,4.4,3.67,3.73,6.78,7.5,6.69,6.26,6.26,5.65,5.05,4.48,4.76,4.63,7.06,6.79,6.76,6.35,5.43,5.1,6.69,6.85,7.72,7.38,4.66,5.62,7.8,7.8
1993-11,3.8,3.8,3.81,4.18,4.6,3.8,3.8,4.05,4.61,4.6,4.05,3.97,4.35,4.55,4.35,4.78,4.27,4.3,4.47,4.58,3.64,4.02,2.95,2.76,3.15,2.04,1.78,3.54,4.04,4.25,3.24,3.5,2.93,2.77,3.17,3.55,2.82,2.4,3.94,4.63,3.52,3.99,3.93,3.84,3.15,2.71,2.4,2.82,3.29,3.16,2.85,2.92,4.65,4.65,4.39,4.3,3.7,3.34,3.12,3.38,3.06,2.5,2.47,2.45,2.43,2.65,4.36,3.89,3.87,3.87,3.58,3.56,3.03,2.9,2.79,2.86,3.06,2.87,4.34,4.7,3.01,3.5,3.11,3.02,6.45,4.36,3.93,3.79,3.44,3.48,4.48,4.58
1993-12,2.34,2.34,2.35,3.01,3.77,2.34,2.34,2.78,3.78,3.79,3.36,3.03,3.72,3.82,3.97,2.68,4.32,4.4,3.89,3.44,3.46,1.96,2.05,2.33,3.34,1.77,1.76,2.55,3.52,4.4,2.8,3.08,1.83,2.36,2.49,3.16,2.23,2.29,3.75,3.75,2.61,3.81,3.12,4.05,3.08,3.28,2.57,2.61,3.23,3.54,2.35,3.11,3.75,3.75,4.06,4.66,4,3.75,3.82,2.72,3.04,2.86,2.7,3.23,2.75,2.93,4.03,4.34,4.32,4.32,4.04,3.41,3,3.17,2.68,2.87,3.62,3.35,4.21,4.16,3.46,3.45,2.76,2.66,4.81,4.03,6.46,6.13,3.27,3.51,4.38,3.93
1994-01,1.92,1.92,2.12,4,4.02,1.92,1.92,2.68,4.02,4.01,2.29,2.54,3.31,3.88,3.96,1.15,2.69,3.42,3.07,2.66,3.15,1.49,1.5,1.89,3.06,1.38,1.22,2.01,2.17,3.67,2.34,2.63,2.2,1.97,2.01,2.29,1.66,2.31,3,2.94,2.26,2.79,1.99,2.91,2.05,1.71,1.47,1.81,2.59,2.62,1.88,2.51,3,2.88,3.16,3.11,2.74,2.66,2.38,2.16,1.75,2.04,2.44,2.28,2.19,2.2,3.11,3.1,2.91,2.88,2.99,2.99,2.21,2.29,2.13,2.3,2.24,2.14,3.3,3.42,2.3,2.4,2.16,2.24,3.63,2.79,2.58,2.5,2.57,2.49,2.83,2.89
1994-02,2.45,2.45,2.5,2.76,2.82,2.45,2.45,2.55,2.76,2.99,2.71,2.88,2.94,2.87,3.07,0.97,3.25,3.48,3.26,3.01,2.63,1.76,1.55,1.62,2.79,1.73,1.88,3,3.02,3.16,2.41,2.31,2.58,2.2,2.22,2.9,1.83,2.12,3.7,3.66,3.34,3.96,3.06,2.83,2.01,1.68,1.22,1.85,3.17,3.41,2.23,2.9,3.7,3.71,4.41,4.41,3.21,2.26,2.36,2.43,1.83,1.88,2.17,2.64,2.46,2.41,4.41,4.33,3.08,2.92,2.76,2.59,2.12,2.09,1.92,2.22,2.74,2.12,2.94,2.89,2.25,2.23,1.92,1.76,3.48,2.79,3.81,3.59,2.58,2.57,3.37,3.3
1994-03,5.04,5.04,5.15,6.24,3.92,5.04,5.04,5.51,6.13,3.92,5.42,5.68,6.12,5.85,4.38,3.87,5.94,6.58,6.24,5.64,4.98,4.51,3.8,3.96,4.15,3,3.01,5.27,5.79,5.69,4.67,4.97,4.57,3.62,3.73,3.73,3.34,3.15,6.32,5.36,4.68,6.14,5.78,5.31,4.59,4.19,3.11,3.31,3.81,3.88,3.32,5.49,6.32,4.85,2.94,3.86,5.04,4.47,4.08,3.96,3.43,3.86,3.86,3.73,3.42,4.87,2.99,2.99,4.26,4.72,4.62,4.55,3.93,4.25,3.66,3.57,3.6,3.63,4.96,5.06,3.93,3.55,2.63,3.13,5.79,4.77,6,5.5,4.26,4.32,4.9,4.68
1994-04,5.55,7.11,6.86,5.09,4.86,6.21,7.07,7.24,7.05,5.48,6.62,7.44,7.6,7.34,6.51,4.51,7.68,8.11,7.81,7.27,6.84,4.69,4.76,4.65,4.11,3.64,3.89,7.49,7.32,7.2,6.25,6,5.01,4.63,4.6,4.67,3.93,4.26,8.01,7.25,6.96,8.56,7.38,6.74,5.66,5.05,4.19,4.27,5.02,5.12,3.92,4.89,8.01,6.6,5.06,6.11,6.98,6.11,5.58,4.84,4.8,3.91,4.56,4.24,4.03,4.65,5.14,5.14,5.73,5.94,5.86,5.35,5,4.47,3.95,3.77,4.33,4.53,5.87,5.74,4.68,4.02,4.06,3.88,6.03,5.05,4.83,4.62,5.01,4.75,4.96,5
1994-05,4.96,5.25,5.07,4.54,4.45,5.58,5.29,5.34,5.25,4.36,5.92,5.58,5.57,5.65,5.62,4.45,6.06,5.92,5.64,5.87,5.78,5.15,3.78,3.61,3.83,3.19,3.91,6.12,5.92,5.02,4.94,5.33,4.63,3.98,3.89,4.2,3.67,3.93,8.09,7.21,6.02,7.39,6.17,5.02,4.44,3.97,3.22,3.77,5.71,4.99,3.83,5.09,8.09,6.65,4.58,5.57,5.86,4.88,4.74,4.39,4.81,3.87,4.61,4.96,4.25,4.75,4.73,4.73,5.32,5.6,5.21,4.6,3.33,3.95,4.5,5.08,5.46,4.15,5.3,5.16,4.08,4.01,3.21,3.82,6.12,5.23,5.39,4.83,5.81,5.2,5.63,5.7
1994-06,8.55,9.8,9.67,8.68,8.55,9.48,9.81,9.9,9.79,7.99,10.2,10.38,10.35,9.99,9.15,7.99,9.6,11.23,10.42,9.96,8.72,8.73,6.72,6,6.18,4.8,4.53,7.21,10.2,9.75,8.42,8.35,7.54,6.75,6.02,6.21,5.33,5.53,11.17,9.62,6.63,10.04,10.26,8.91,6.26,7.42,6.83,6.37,6.23,6.01,4.63,6.24,11.17,8.8,5.42,6.98,9.01,8.12,7.3,6.95,7.04,6.14,6.31,5.69,5.11,5.64,5.5,5.5,8.47,9.57,8.34,6.78,6.25,5.8,5.39,4.49,5.11,4.85,8.26,7.33,6.2,5.22,5.07,4.06,8.73,6.47,4.87,4.61,6.72,6,6.82,7.27
1994-07,8.45,10.27,10.15,8.68,8.57,9.51,10.24,10.01,9.53,8.64,10.05,10.21,9.94,9.84,9.53,7.99,11.5,10.22,10.18,10.76,9.06,8.84,6.65,6.7,7.02,4.7,5.24,9.59,11.23,11.36,9.45,8.06,7.61,7.8,7.01,6.84,5.96,6.13,10.06,9.38,8.17,10.93,11.42,10.35,9.08,8.34,7.45,7.96,7.97,6.38,5.8,6.98,10.06,8.01,5.1,6.76,9.69,9.2,8.7,7.75,9.13,8.22,8.01,6.78,6.13,6.76,5.17,5.17,8.65,9.89,9.13,7.92,8.41,8.32,7.26,6.5,6.75,6.71,9.78,9.7,8.88,7.87,7.05,6.65,12.86,9.71,8.55,8.24,9.95,8.96,9.12,9.25
1994-08,7.31,8.04,8.14,8.6,8.91,8.04,8.08,8.23,8.73,8.63,8.51,8.34,8.52,9.06,9.47,8.3,9.53,8.69,8.71,9.31,9.4,8.86,6.96,6.23,5.9,4.61,4.29,8.78,10.22,9.66,8.09,8.69,7.9,7.74,6.69,6.18,5.68,5.54,9.45,8.29,7.44,10.54,10.55,9,7.83,8,6.9,7.29,6.8,6.16,7.42,6.1,9.45,7.45,4.61,6.22,8.79,7.85,7.08,6.82,7.35,5.92,5.59,5.13,4.67,5.65,4.61,4.61,8.52,9.94,8.85,7.51,6.91,6.25,5.3,4.41,4.18,5.14,8.55,7.55,6.88,5.47,5.94,5.44,6.85,6.53,6.36,6.05,6.51,6.54,7.15,7.18
1994-09,5.96,6.38,6.34,6.08,5.91,6.39,6.68,6.79,6.72,5.91,4.62,5.37,7.07,6.97,6.51,5.58,5.72,7.01,7.39,7.1,6.14,5.77,4.78,4.65,5.92,4.41,3.87,6.19,7.38,6.73,5.63,5.09,4.96,4.77,5.29,5.39,5.24,5.09,6.55,6.22,5.28,7.29,7.5,6.37,5.17,5.18,4.65,5.66,5.96,5.29,4.83,5.09,6.55,5.28,3.46,4.43,6.32,5.84,5.36,6.05,5.42,4.99,5.5,5.14,4.74,4.93,3.41,3.41,5.98,6.88,6.45,6.04,5.44,6.06,5.46,4.68,5.03,5.08,6.95,6.75,5.8,5.21,5.55,4.99,7.99,6.45,5.92,5.61,7.19,5.98,5.39,5.36
1994-10,4.78,5.74,5.74,4.99,4.94,5.3,5.72,5.58,5.33,4.42,5.6,5.87,5.71,5.41,4.67,3.97,5.23,6.14,6.08,5.94,4.87,3.55,3.99,3.81,4.33,2.69,3.39,3.74,5.26,5.79,4.74,4.67,3.74,3.93,3.85,4.27,3.25,2.84,5.45,5.05,3.62,5.46,5.21,5.14,3.97,4.24,3.23,3.97,4.94,4.08,3.5,4.28,5.45,4.7,3.61,4.2,4.99,4.49,4.48,4.12,4.45,4.13,3.47,4.72,3.92,4.1,3.56,3.56,4.42,4.7,4.74,4.37,4.19,4.57,7.43,4.03,4.22,3.88,5.08,5.11,4.18,4.18,4.91,3.59,6.2,4.75,4.39,4.37,4.48,4.28,4.8,4.82
1994-11,4.2,4.2,4.36,4.12,1.72,4.2,4.2,4.17,4.26,3.48,4.29,4.36,4.31,4.16,3.62,4.62,3.68,4.59,4.54,4.61,3.6,3.8,2.77,2.56,3.52,1.94,1.94,2.9,3.82,3.48,3.46,3.6,2.64,2.56,2.54,2.94,2.56,2.27,3.89,3.82,3.3,4.6,3.93,3.06,2.8,2.93,2.18,2.26,3.03,2.63,2.6,2.89,3.89,4.02,5.4,5.26,3.88,2.58,2.55,2.59,2.91,2.7,2.8,2.54,2.46,2.85,5.26,5.15,3.69,3.5,3.17,2.79,2.75,3.06,3.08,2.97,3.12,2.98,3.69,3.65,3.18,3.17,3.1,2.8,5.01,4.44,3.81,3.65,3.83,4.62,4.57,4.53
1994-12,2.9,2.9,2.91,2.16,2.23,2.9,2.9,2.6,2.16,2.52,2.92,2.94,2.6,2.37,2.66,2.93,2.59,2.98,2.93,2.81,2.21,2.36,1.72,1.4,2.58,1.4,1.42,2.28,3.03,2.81,2.23,2.08,1.69,1.49,1.56,2.16,2.2,2.08,2.43,2.39,2.12,3.21,3.11,2.59,1.71,1.81,1.79,1.56,2.36,2.89,3.61,2.88,2.43,2.16,1.77,2.19,2.7,2.24,1.81,2.11,2.45,2.36,2.53,3.36,2.77,2.32,1.75,1.75,2.07,2.17,2.09,2.11,1.86,2.5,2.06,2.48,2.33,1.9,2.56,2.69,1.99,1.92,2.13,2.2,3.83,2.58,2.39,2.2,2.46,2.18,2.9,2.95
1995-01,3.08,3.08,3.08,3.11,3.16,3.08,3.08,3.11,3.16,3.13,3.1,3.11,3.19,3.2,2.93,2.84,2.97,3.13,3.45,3.59,2.49,2.67,2.1,1.94,3.84,2.19,1.75,2.32,2.6,2.61,2.44,2.17,2.26,2.05,2.46,2.7,2.27,2.16,2.57,2.8,2.58,3.25,3.26,2.38,2.32,2.18,2.04,2.01,2.75,2.51,2.09,2.34,2.91,2.91,3.29,3.69,2.73,2.22,2.25,2.3,2.46,2,2.11,2.56,1.89,2.17,2.96,2.91,2.89,2.89,2.7,2.52,2.28,2.33,2.25,2.86,2.69,2.63,2.79,2.68,2.3,2.2,2.18,2.53,2.85,2.66,2.7,2.55,2.47,2.5,3.16,3.06
1995-02,3.73,3.73,3.73,3.78,3.86,3.73,3.73,3.77,3.86,3.75,3.98,3.99,3.99,3.69,3.04,3.07,4,4.24,4.16,3.87,2.69,2.89,2.82,2.45,2.72,1.72,1.69,3.03,3.39,3.34,2.63,2.45,2.51,2.51,2.36,2.55,2.13,2.25,3.42,3.65,3.04,4.18,4.22,2.95,2.76,2.55,2,2.2,2.52,2.29,2.15,2.6,3.86,2.83,1.92,2.37,3.16,2.68,2.57,2.28,2.26,2.05,2.33,1.97,2.01,2.36,1.92,1.94,3.04,3.24,2.96,2.55,2.39,2.49,2.72,2.31,2.35,2.36,3.14,3.06,2.55,2.37,2.38,2.36,3.76,3.09,2.88,2.76,3.19,3.13,3.66,3.5
1995-03,5.89,5.89,5.89,5.71,5.44,5.89,5.89,5.74,5.43,5.22,6.13,6.14,5.84,5.08,4,2.68,6.17,6.37,5.91,5.43,4.96,3.17,2.53,2.5,4.69,2.44,2.14,5.37,5.35,4.9,4.35,4.43,3.34,3,2.63,3.69,3.05,2.75,5.92,5.33,4.99,6.14,5.95,4.27,3.63,3.35,2.61,2.44,3.15,3.25,3,3.79,6.49,4.86,3.41,3.91,4.75,4.14,3.42,3.38,3.13,2.97,2.59,3.6,2.51,3.17,3.41,3.43,4.43,4.61,4.3,3.97,3.17,3.78,3.15,3.33,2.79,2.63,4.45,4.2,3.41,3.4,2.73,3.01,4.28,4.03,4.05,3.42,4.31,4.2,4.73,4.5
1995-04,3.44,5.95,5.45,3.98,3.91,3.99,5.87,5.83,4.99,4.27,4.73,7.05,6.55,5.56,5.2,4.67,7.17,8.21,7.44,6.56,5.78,5.25,4.28,4.07,4.35,2.77,2.42,6.89,7.12,6.86,5.21,5.58,4.64,4.22,4.12,4.42,3.8,3.91,7.91,6.85,6.32,7.67,7.62,6.29,5.46,5.33,4.02,3.94,4.55,4.44,4.1,4.79,8.61,6.37,4.37,4.96,6.43,6.1,5.18,4.77,4.67,3.98,4.43,4.32,3.59,4.23,4.37,4.41,6.45,6.82,6.25,5.44,4.34,3.94,4,4.22,3.84,3.73,6.71,6.55,5.17,4.3,4.17,4.21,7.86,5.93,5.18,4.78,6.55,5.87,6.02,5.83
1995-05,4.03,6.29,5.61,3.78,3.69,4.85,6.26,6.15,5.21,4.18,5.74,7.45,6.92,5.72,4.93,4.56,5.49,8.6,8.05,7.7,4.84,5.27,4.19,3.91,4.79,3.03,2.59,6.8,7.37,7.03,6.32,6.82,4.73,4.18,4.2,4.84,3.98,4.23,9.58,8.39,7,8.54,8.31,6.07,5.65,7.25,4.03,3.96,5.34,4.92,4.15,4.84,10.41,7.88,5.62,6.19,6.59,5.45,5.26,5.2,5.16,4.13,5.47,4.95,4.2,4.58,5.62,5.63,6.09,6.18,6.08,5.85,5.26,5.07,5.01,5.15,4.83,4.74,6.65,6.84,5.97,5.21,4.95,5.06,7.84,6.2,5.91,5.64,7.26,6.03,6.85,6.71
1995-06,4.98,7.42,6.99,5.77,5.66,5.89,7.39,7.73,7.53,5.84,7.25,8.9,8.78,7.84,6.74,6.21,9.55,10.35,9.18,8.44,6.93,7.05,5.69,5.62,5.85,4.09,3.59,9.45,8.46,6.82,6.75,7.32,6.31,6.07,5.78,6.33,6.01,6.05,10.1,9.42,8.62,10.18,9.49,6.34,5.81,7.1,5.59,6.1,6.82,6.42,5.8,6.76,11.18,8.29,5.71,6.49,7.52,6.42,6.23,6.4,6.49,5.69,7.55,6.55,5.79,6.32,5.71,5.76,8.15,8.59,7.88,6.71,6.46,6.15,6.11,6.73,6.16,5.99,8.97,8.52,6.97,6.26,6.6,6.7,9.55,7.59,6.98,7.06,7.13,6.97,8.01,8
1995-07,6.21,8.37,8.31,8,7.98,7.08,8.27,8.49,8.5,8.55,5.13,6.76,9.42,8.87,9.26,8.41,6.71,10.53,10.19,10.19,9.28,8.81,6.95,6.57,6.43,5.2,4.37,10.47,10.08,9.36,8.56,8.8,7.43,7.51,6.98,7.37,6.37,6.31,9.55,8.61,9.27,11.27,10.98,8.84,8.25,8.77,6.71,6.93,7.89,6.82,5.7,6.89,9.55,7.14,4.99,6.06,8.95,8.63,7.59,7.23,7.69,7,7.69,6.41,5.57,6.24,4.99,5.09,9.92,10.8,9.77,7.43,7.59,7.23,6.63,5.92,5.71,5.65,10.48,9.35,8.53,7.28,6.89,6.41,9.94,8.47,8.22,7.62,8.02,7.66,9.03,8.64
1995-08,6.48,8.34,8.28,7.98,7.98,7.41,8.33,8.21,7.78,7.38,7.93,8.33,8.11,7.72,7.34,7.15,7.53,8.35,8.25,8.57,7.46,7.78,7.68,6.92,7.16,5.61,5.07,8.43,8.28,7.92,6.55,7.27,6.61,6.95,6.7,7.04,6.34,6.62,8.19,7.37,7.78,9.37,9.17,7.45,6.74,7.15,5.64,6.12,6.62,5.22,3.48,5.97,7.95,6.1,4.46,5.3,7.54,7.3,6.85,7.07,6.55,5.76,5.88,5.53,5,5.45,4.46,4.55,8.96,9.77,8.86,6.96,6.74,6.29,5.63,5.14,5.47,5.57,8.96,7.4,6.99,5.5,4.67,4.86,7.66,6.67,6.44,5.54,5.52,5.73,6.86,7.11
1995-09,4.75,5.86,5.69,5.2,5.2,5.47,5.84,5.57,4.9,4.49,4.53,4.85,5.43,5.07,4.73,4.58,5.58,5.59,5.87,6.41,5.27,5.27,4.7,4.72,4.86,3.77,4.15,5.19,5.34,5.44,5.6,5.41,4.94,5.08,5.31,5.43,4.42,4.67,6.35,5.91,5.01,6.43,6.58,5.35,5.33,5.27,4.63,5.1,5.62,4.09,2.84,3.28,6.54,4.9,3.45,4.03,5.5,5.28,5.21,6.07,5.23,5,5.55,4.75,4.35,3.75,3.45,3.51,6.59,7.15,6.56,5.6,5.08,5.53,5.01,4.31,4.86,5.02,6.94,6.43,6.37,4.38,4.52,4.39,6.6,6,5.68,5.17,5.14,5.48,6.32,5.94
1995-10,4.74,6.6,6.36,5.71,5.66,5.83,6.61,6.76,6.67,5.85,6.61,6.74,6.83,6.89,6.64,6.13,6.51,6.87,6.58,6.81,6.99,6.74,6.11,5.52,5.11,3.38,3.83,4.9,5.6,5.76,5.81,6.4,5.91,5.78,5.75,5.46,4.32,3.89,5.89,5.46,4.92,5.66,5.87,5.61,5.82,6.27,5.19,5.28,5.8,4.96,4.13,4.8,6.19,5.29,4.48,4.73,5.41,5.37,5.37,5.04,5.3,5.16,5.04,4.34,3.93,4.5,4.48,4.52,6.56,6.93,6.45,5.33,5.39,5.26,4.74,5.07,4.83,4.75,6.36,5.67,5.79,4.81,4.59,4.85,5.45,5.72,5.91,5.26,4.04,4.92,6.06,5.68
1995-11,4.72,4.72,4.72,4.78,4.87,4.72,4.72,4.77,4.87,4.87,4.89,4.9,4.91,4.89,4.92,4.45,4.71,5.07,4.96,5.01,4.45,4.24,3.74,3.6,3.61,2.4,1.96,3.27,3.89,3.97,3.71,4.67,3.45,3.48,3.55,3.69,2.89,2.78,3.75,3.51,3.23,4.05,4.12,3.45,3.58,4.82,2.83,3.26,3.94,3.36,2.63,3.08,3.92,3.17,2.5,2.81,3.34,2.98,2.8,2.85,3.06,2.91,3.1,2.73,2.36,2.77,2.5,2.51,2.92,2.99,2.91,2.74,2.76,3.05,2.81,2.68,2.83,2.83,3.07,3.09,3.01,2.72,2.75,2.74,3.18,3.07,3.27,3.17,2.57,2.68,3.84,3.57
1995-12,4.24,4.24,4.24,4.48,4.83,4.24,4.24,4.44,4.85,4.69,4.6,4.62,4.75,4.48,3.68,3.63,4.47,4.97,4.55,4.09,3.52,3.33,2.35,1.86,2.47,2.55,2.64,2.48,3.18,3.07,3.01,2.88,2.75,2.82,2.43,2.57,2.48,2.97,3.01,2.92,2.88,3.99,4,2.38,2.19,2.41,2.44,2.01,3.07,2.42,2.09,3.13,3.01,3.01,3.87,4.72,3.03,2.1,2.08,2.33,2.22,2.25,2.48,2.17,1.62,2.38,2.88,2.3,2.23,2.23,2.18,2.29,2.19,2.54,2.67,3.27,2.39,2.12,2.16,2.08,2.1,1.93,2,2.65,2.06,2.12,2.22,2.17,1.99,2.18,2.87,2.52
1996-01,2.97,2.97,2.97,3.12,3.34,2.97,2.97,3.09,3.35,3.31,3.53,3.56,3.56,3.28,3.05,3.45,4.11,4.11,3.81,3.6,3.07,3.06,2.96,2.77,2.29,2.27,2.32,4.18,4.56,3.92,3.06,2.67,2.72,2.74,2.99,2.58,2.34,2.46,3.36,3.86,3.82,3.82,4.03,4.06,2.85,2.77,2.74,2.59,3.16,2.82,2.27,2.36,3.89,3.89,3.84,3.81,3.31,3.01,2.66,2.82,2.77,2.58,2.49,2.17,1.95,2.21,3.72,3.39,3.38,3.38,3.16,3.04,2.84,3.04,2.63,2.11,2.01,2.01,3.49,3.41,3.05,2.91,2.95,2.41,3.68,3.55,3.67,3.87,2.96,3.3,4.14,4.06
1996-02,3.14,3.14,3.14,4.06,5.44,3.14,3.14,3.91,5.5,5.54,4.36,4.42,5.11,5.56,5.82,4.15,5.44,5.62,5.44,5.26,5.07,3.93,4.18,5.29,5.17,2.51,3.17,3.34,5.1,5.7,4.35,3.32,3.65,3.69,4.27,3.96,3.03,3.57,4.47,4.57,3.43,4.54,5.06,4.67,3.78,3.17,2.79,3.59,4.38,3.79,2.92,3.59,5.17,3.94,2.85,3.22,4.03,3.75,3.32,4.05,3.43,3.46,3.52,2.75,2.57,3.12,2.85,2.87,3.67,3.82,3.73,3.94,3.39,3.79,3.48,2.88,3.05,3.09,3.99,3.92,3.54,3.14,3.38,2.91,4.28,3.88,3.79,3.73,3.24,3.47,3.83,3.68
1996-03,5.41,5.41,5.41,5.67,6.05,5.41,5.41,5.62,6.07,6.02,6.21,6.25,6.28,5.95,5.69,5.72,7.15,7.04,6.53,6.08,5.07,5.31,4.39,4.06,4.68,3.26,3.37,6.23,6.73,6.75,5.21,4.6,5.06,4.52,4.68,4.57,3.91,4.44,6.58,6.96,5.61,6.25,6.54,5.92,4.71,4.51,4.38,4.03,4.74,4.19,3.59,3.8,7.46,7.46,6.93,6.71,5.47,4.74,4.24,4.48,3.94,3.28,3.72,3.6,3.17,3.44,6.6,5,4.95,4.95,4.74,4.73,4.22,3.89,3.81,3.09,3.58,3.72,4.96,4.8,4.29,3.71,3.16,3.1,4.96,4.56,4.31,3.68,4.34,4.49,4.71,4.25
1996-04,6.89,8.32,7.85,6.71,6.65,7.86,8.2,8.23,7.64,6.53,3.7,5.41,8.9,7.87,7.16,6.27,5.12,9.82,9.29,8.55,7.52,6.82,5.9,5.42,5.35,4.38,4.35,9.07,9.41,8.57,6.12,6.54,6.37,6.08,5.84,5.84,5.54,4.86,8.31,8.36,7.83,8.62,8.67,8.05,6.64,7.21,5.41,5.79,6.39,5.69,5,5.74,9.13,7.16,5.15,5.7,6.89,6.48,6.26,6.22,4.92,5.56,5.72,5.09,4.67,5.3,5.15,5.18,6.8,7.1,6.83,6.52,6.09,5.61,5.21,4.85,5.04,5.1,7.5,7.38,6.27,5.34,4.2,4.48,8.18,6.5,5.9,4.99,6.77,6.21,6.55,6.28
1996-05,7.12,4.42,4.82,6.6,6.58,9.12,4.66,5.37,7.64,6.6,7.12,6.62,8.54,8.53,7.98,7.17,8.1,10.66,10.65,10.11,8.67,8.08,6.42,5.94,5.35,4.05,4.32,10.71,9.91,9.64,7.73,7.81,7.05,7.08,6.24,5.92,5.72,5.82,10.2,10.21,9.36,10.35,9.97,8.55,7.6,8.39,6.22,6.73,6.92,5.94,5.53,6.19,11.18,8.93,6.63,7.28,8.04,7.02,6.83,6.32,5.76,5.88,6.16,5.63,5.37,5.84,6.63,6.64,7.36,7.49,7.21,6.34,6.09,6.21,5.7,6.07,6.02,6,6.64,6.16,7.54,6.2,4.58,5.3,5.15,6.25,6.87,5.68,5.65,6,7.48,7.22
1996-06,6.67,8.31,7.92,6.99,6.93,8.32,8.37,8.31,7.93,6.86,9.37,8.68,8.53,8.54,8.18,6.49,9.34,8.96,8.82,9.27,8.11,6.34,7.1,6.34,6.18,4.42,4.59,9.44,9.84,9.62,7.96,7.1,6.88,7.08,6.69,6.47,5.56,5.07,9.45,9.1,8.5,10.39,10.47,9.17,7.51,7.07,6.1,6.65,7.33,6.29,5.31,5.73,9.97,7.49,4.93,5.91,8.59,8.33,7.35,6.64,6.22,6.16,6.85,5.72,5.22,5.59,4.93,5.01,9.28,10.06,9.14,6.71,6.85,6.59,5.94,5.06,5.79,6,10.7,9.62,7.94,5.94,5.48,5.25,11.8,8.42,7.45,6.54,7.75,6.98,8.19,8.35
1996-07,6.03,8.63,8.17,6.97,6.89,7.83,8.66,8.72,8.35,7.22,8.62,8.7,8.75,9.1,9,8.32,8.77,8.74,8.86,9.7,9.95,9.37,7.88,7.11,4.85,4.86,5.27,8.64,11.64,11.04,8.21,7.58,8.11,8.18,7.64,7.87,6.18,5.53,8.85,8.03,7.71,9.45,10.77,10.83,8.53,7.44,7.8,8.57,8.8,7.28,5.84,6.23,8.78,6.62,4.39,5.27,8.27,8.59,8.31,7.41,8.31,8.02,8.35,6.7,5.7,6.03,4.39,4.49,9.61,10.54,9.76,7.66,8.25,7.77,6.94,6.16,6.15,6.15,10.95,10.24,9.45,7.58,8.68,7.48,11.66,9.21,8.47,8.83,9.27,8.34,9.15,9.11
1996-08,5.56,6.54,6.11,5.17,5.08,6.73,6.58,6.85,6.94,5.38,7.4,7.36,7.56,7.51,6.66,6.07,7.51,8.09,7.75,7.81,6.35,6.63,5.54,4.81,5.62,4.14,4.19,7.41,8.24,6.64,6.07,6.27,5.83,5.98,5.46,6.74,5.67,4.78,7.47,7.44,6.82,8.44,8.68,7.75,6.83,6.27,5.29,6.33,7.29,6.62,5.83,5.35,7.56,5.56,3.41,4.33,6.96,6.92,7.11,6.27,6.96,6.4,6.61,5.62,5.04,5.29,3.41,3.49,7.41,8.13,7.75,6.56,6.98,6.95,6.4,5.27,5.7,5.83,8.67,8.41,7.5,6.72,4.47,4.81,9.59,7.44,7.22,6.01,7,6.22,8.41,8.35
1996-09,4.32,4.77,4.68,4.56,4.55,5.17,4.78,4.78,4.75,4.4,4.47,4.42,4.99,4.88,4.59,4.55,5.73,5.11,5.35,5.83,4.42,4.94,4,3.89,4.23,2.87,3.1,5.84,6.2,5.75,5.03,4.64,4.19,4.36,4.57,5.27,3.77,4.2,6.6,6.03,5.09,6.37,6.39,5.45,4.41,4.63,3.91,4.54,5.55,5.32,5.28,5.61,6.57,4.5,2.66,3.31,4.79,4.49,5.15,4.92,4.79,4.45,4.84,4.79,4.04,4.92,2.66,2.7,4.73,5.1,5.13,5.25,5.22,4.84,4.23,4.46,4.29,4.24,5.77,6.3,5.74,4.4,4.36,4.39,6.94,5.91,5.62,5.06,5.87,5.64,6.35,6.21
1996-10,4.22,5.78,5.83,6.03,6.32,5.13,5.79,6,6.34,6.31,5.38,5.87,6.06,6.2,6.13,5.97,5.03,5.95,5.8,6.02,5.74,5.34,5.24,5.27,4.75,3.1,2.89,5.84,6.41,5.78,4.77,4.27,4.42,4.43,5.09,4.43,3.42,3.27,5.92,5.79,6.3,6.65,6.37,5.76,4.22,4.03,4.14,4.53,5.44,4.67,3.41,4.29,6.02,6.02,6.44,6.69,5.27,4.47,4.13,3.94,4.71,4.19,4.2,4.29,4.19,4.48,6.15,5.33,4.5,4.34,4.01,3.92,4.39,4.5,3.97,3.7,3.71,4.43,3.47,3.52,4.21,4.54,4.33,3.97,3.44,4.14,4.57,4.76,3.44,4.65,5.1,5.11
1996-11,3.99,3.99,3.99,3.82,3.57,3.99,3.99,3.85,3.56,3.47,3.89,3.97,3.79,3.4,2.87,3.37,3.84,3.95,3.91,4.1,3.19,3.15,3.03,3.62,4.72,4.11,2.02,4.23,4.56,4.03,3.67,3.19,2.75,2.8,3.3,3.42,2.3,1.94,4.41,4.41,5.29,5.41,4.98,4.41,3.48,3.76,4.1,3.83,4.21,3.66,3.15,3.18,4.41,4.41,5.04,5.42,4.45,3.83,2.91,3.36,3.73,3.07,3.58,2.55,2.81,3.41,4.6,4.49,3.92,3.66,2.97,3.39,3.28,3.32,2.89,2.46,2.34,3.34,4.73,4.67,3.79,3.74,3.5,3.02,4.83,4.31,4.1,4.23,4.83,4.47,4.41,4.46
1996-12,4.9,4.9,4.9,4.87,4.83,4.9,4.9,4.88,4.83,4.89,4.77,4.77,4.76,4.92,5.29,5.11,4.64,4.64,4.64,5.23,4.8,4.23,3.8,3.13,2.61,2.62,2.61,5.15,5.5,4.56,3.74,3.1,2.72,3.1,2.99,2.61,2.13,2.58,3.73,3.73,5.29,5.51,5.21,4.48,2.87,2.66,2.56,2.98,3.27,2.82,1.92,2.9,3.73,3.73,4.83,5.51,3.51,2.38,2.04,2.17,2.3,2.66,3.22,3.01,2.85,2.92,4.07,3.58,2.41,2.33,2.06,2.18,2.08,2.93,2.33,2.52,2.89,2.92,3.03,3,2.39,2.7,2.6,2.15,3.1,2.7,2.56,2.73,3.1,2.97,2.98,3.03
1997-01,2.63,2.63,3.02,4.25,4.25,2.63,2.63,2.67,4.18,4.25,2.63,2.63,2.55,3.65,4.25,4.19,2.63,2.63,2.42,2.45,3.77,2.98,2.81,2.44,2.24,1.84,1.85,3.16,3.41,3.4,3.13,2.86,3.94,2.68,2.62,1.84,2.07,2.9,3.1,3.1,3.59,3.66,3.48,3.15,2.91,2.85,2.46,2,2.25,2.69,2.51,3.12,3.1,3.1,3.44,3.66,2.87,2.44,2.62,2.55,2.04,2,2.32,2.85,2.78,3.13,2.84,2.27,2.15,2.15,2.29,2.63,2.35,2.57,2.12,1.84,1.8,3.04,2.63,2.97,2.24,2.43,2.25,2.22,3.38,2.54,2.19,2.28,2.69,2.48,2.64,2.49
1997-02,2.79,2.79,2.94,3.39,3.39,2.79,2.79,2.81,3.36,3.39,2.79,2.79,2.87,3.35,3.39,3.21,2.75,2.79,3,3.28,3.15,2.74,2.31,2.11,2.61,1.94,1.69,2.3,3.19,3.45,3.12,2.76,2.81,2.29,2.1,2.66,2.47,1.8,3.58,3.95,2.38,2.57,2.98,3.16,2.59,2.98,2.63,2.06,3.12,2.42,2.4,2.86,4.23,4.23,3.28,2.71,2.9,2.96,2.52,2.49,2.39,2.04,2.36,2.05,2.12,2.62,3.61,2.62,2.61,2.61,2.56,2.51,2.34,2.13,2.05,2.26,2.53,2.58,3.12,3.23,2.18,1.9,2.45,2.37,3.91,2.8,2.24,2.54,3.12,3,3.11,3.05
1997-03,7.3,7.3,7.3,7.25,5.17,7.06,7.3,7.3,6.93,4.45,6.62,6.92,6.94,6.57,4.8,4.87,6.31,6.57,6.29,5.91,4.89,4.85,3.79,3.7,4.87,2.83,2.35,5.42,5.76,5.85,4.26,4.24,4,3.63,3.63,4.38,3.5,2.98,6.03,6.09,5.29,5.7,5.59,4.94,4.08,4.63,3.48,3.1,3.79,3.62,3.23,3.73,6.75,5.2,3.61,4.08,4.57,4.22,4.18,3.93,3.37,3.01,3.69,2.97,2.96,3.44,3.61,3.62,4.23,4.34,4.26,3.79,3.17,3.26,3.11,4.33,3.6,3.44,4.58,4.37,3.41,3.24,3.85,4.14,4.94,3.98,3.57,3.94,3.17,3.75,4.64,4.37
1997-04,4.13,5.58,5.27,4.34,4.23,4.91,5.58,6.06,6.18,4.04,5.62,5.14,5.77,6.07,4.23,4.2,5.15,4.73,4.93,5.12,4.47,4.34,4.19,4.33,4.43,3.52,3.87,5.64,6.89,6.33,3.61,4.48,3.87,4.21,4.71,4.87,3.96,3.64,7.45,7.22,5.89,6.38,6.63,5.83,4.12,5.8,3.91,3.77,4.82,5.04,4.42,4.49,8.46,6.31,4.17,4.7,4.89,4.18,4.29,4.56,4.18,3.69,4.48,5.22,3.99,4.26,4.17,4.18,4.47,4.53,4.47,4.61,4.57,3.73,3.68,5.94,4.72,4.45,4.57,4.28,3.58,2.98,4.14,5.07,4.62,4.01,3.86,4.24,3.29,3.79,4.99,4.63
1997-05,5.03,5.73,5.42,4.64,4.57,5.45,5.69,5.86,5.7,4.61,4.15,4.81,6.04,5.58,4.73,4.98,4.8,6.3,5.55,5.01,4.9,5.19,4.58,4.63,4.46,3.53,3.81,6.47,7.3,6.53,4.29,5.08,4.7,4.5,4.77,4.6,4.1,4.03,8.31,8.05,6.4,6.96,7.09,6.37,5.02,5.3,4.28,3.95,4.94,4.83,4.09,5.23,9.45,6.67,3.85,4.57,5.44,5,5.04,4.73,4.17,3.75,4.67,4.75,4.33,4.96,3.85,3.88,5.27,5.53,5.36,4.78,4.73,4.18,4.17,4.63,4.61,5.02,5.73,5.51,4.74,4,4.74,4.71,6.03,5.25,5.05,5.08,4.11,4.61,5.8,5.74
1997-06,6,7.28,7.27,6.99,6.11,7.16,7.3,7.03,6.46,5.93,7.64,7.47,7.08,6.63,6.49,5.97,7.76,7.62,7.62,7.17,6.65,6.32,5.79,5.62,5.5,4.4,4.45,8.52,8.85,8.74,6.35,6.5,5.68,5.89,6,5.95,5.08,4.84,8.69,8.35,7.88,8.55,8.46,7.75,6.58,7.35,5.13,5.87,6.18,6.06,5.08,6.49,8.44,6.77,4.97,5.72,6.7,6.3,6.13,5.83,5.24,5.16,5.44,6.03,5.09,5.92,4.97,5,6.48,6.76,6.52,5.46,5.58,5.43,5.12,5.68,5.78,5.79,7.18,6.92,5.72,4.88,6.21,5.99,7.82,6.41,5.87,6.51,5.27,5.99,7.69,7.74
1997-07,7.12,10.36,10.43,9.86,8.44,8.81,10.26,9.94,8.86,8.21,6.97,8.17,9.7,9.39,9.62,8.18,7.7,9.95,10.15,10.12,9.45,8.66,7.86,6.76,6.52,5.19,5.09,9.97,10.58,10.05,8.01,7.89,7.54,7.83,7.46,6.91,6.09,6.25,9.19,9.25,8.85,10.29,10.28,9.75,9.09,8.7,6.32,7.9,7.99,7.17,6.38,8.54,9.55,7.1,4.47,5.73,8.24,8.37,8.48,7.75,7.48,7.5,7.75,7.25,6.33,7.58,4.47,4.56,8.84,9.64,9.22,7.49,7.15,7.04,6.58,5.7,6.61,6.8,10.2,9.66,7.6,6.66,6.65,6.17,11.03,8.22,7.22,7.5,7.32,7.46,9.42,9.5
1997-08,5.91,7.06,7.06,7.11,6.91,7.06,7.02,7.11,7.14,6.82,4.55,5.43,7.27,7.66,8.08,6.8,6.19,7.21,7.69,8.49,7.71,7.19,7.33,6.51,6.65,4.78,4.68,8.2,7.59,7.64,7.64,7.22,6.93,7.26,7.14,6.83,6.89,5.62,7.81,7.56,7.32,8.74,8.36,7.6,7.8,7.87,6.48,6.99,7.86,7.88,8.49,6.17,7.56,5.71,3.71,4.84,7.38,7.77,7.88,7.33,6.72,6.81,7.47,6.79,5.95,6.12,3.71,3.82,9.02,9.99,9.33,7.21,7.15,6.76,7.63,6.24,6.39,6.42,10.19,9.36,7.77,6.57,6.58,6.41,10.47,8.26,7.36,7.17,7.57,7.55,8.37,8.16
1997-09,5.17,7.07,7.11,6.84,6.42,6.35,7.07,6.87,6.39,6.4,6.23,6.92,6.67,6.96,7.65,6.18,5.32,6.79,7,7.97,7.51,6.64,6.67,6,6.46,4.51,4.14,6.65,7.51,7.18,6.47,6.68,6.62,6.72,6.62,6.19,5.65,4.67,7.52,7.26,6.59,8.43,8.42,7.19,6.5,7.22,6.4,6.75,7.13,5.73,4.94,5.52,8,5.76,3.44,4.67,6.82,6.66,6.63,6.89,6.52,5.66,6.63,5.2,4.92,5.33,3.44,3.52,7.42,8.15,7.72,6.25,5.76,5.8,5.3,5.35,5.5,5.53,8.27,7.43,6.43,8.84,5.92,5.66,8.44,6.93,6.39,6.35,6,5.62,7.18,7.02
1997-10,4.19,5.71,5.72,5.24,4.52,5.12,5.73,5.29,4.43,4.5,5.33,5.86,5.25,4.87,5.45,4.79,4.88,5.99,5.95,5.85,5.33,5.05,4.33,4.13,4.85,3.12,3.22,5,6.76,6.41,4.93,5.06,4.44,4.65,4.52,4.49,4.04,3.64,5.4,5.5,5.31,7.16,7.45,6.16,5.38,5.92,4.47,4.38,4.84,4.37,3.47,4.37,5.41,4.34,3.17,4.25,5.45,4.68,4.71,5.2,4.92,3.85,4.11,4.52,3.85,4.24,3.17,3.2,4.69,4.97,5.17,5.31,4.01,3.81,3.65,3.24,4.62,4.91,5.46,5.47,4.12,3.25,4.04,3.64,5.56,4.68,4.64,4.7,4.37,4.27,5.77,5.74
1997-11,2.98,2.98,3.01,3.37,3.94,2.98,2.98,3.32,3.97,3.91,3.34,3.36,3.7,3.84,3.48,3.74,3.69,3.71,3.8,4.14,3.63,3.52,3.43,2.55,2.34,2.19,1.71,3.46,4.66,4.25,3.54,3.49,2.83,2.73,2.8,2.88,2.56,1.91,2.98,3.31,3.48,4.33,4.59,4.02,3.57,3.81,2.77,3.01,3.34,3.2,2.51,3.12,3.34,3.06,2.76,3.19,3.24,2.57,2.75,3.15,3.52,2.75,3.35,3.3,2.6,2.98,2.76,2.77,3.15,3.22,3.17,3.09,2.76,3.23,3.13,2.45,3.01,3.13,3.29,3.21,2.56,2.02,2.16,2.28,3.29,2.9,2.86,2.62,2.41,2.55,3.47,3.42
1997-12,1.73,1.73,1.73,1.74,1.75,1.73,1.73,1.74,1.75,1.86,2.16,2.18,2.07,1.95,2.54,2.55,2.6,2.6,2.64,2.49,2.38,2.1,2.25,2.84,3.29,1.61,1.4,3.21,3.43,3.32,2.48,2.17,2.28,2.72,2.54,2.61,1.9,1.76,2.76,2.76,3.73,3.88,3.71,3.49,2.79,3.02,2.49,2.38,3.11,2.94,1.93,2.16,2.76,2.76,3.45,3.88,3.51,3.22,2.44,2.31,2.78,2.18,2.3,2.28,2.74,2.54,2.74,2.56,2.44,2.44,2.51,2.56,2.48,2.44,2.31,2.56,2.96,3.04,2.82,2.96,2.32,2.23,2.52,2.56,3.5,2.86,2.67,2.87,2.54,2.74,3.55,3.65
1998-01,3.04,3.04,3.05,3.11,1.86,3.04,3.04,3.13,2.89,1.86,3.25,3.26,3.31,2.93,1.3,1.61,3.41,3.46,3.3,2.67,2.28,2.2,1.96,1.4,2.08,1.11,1.23,2.89,3.62,3.6,2.48,1.59,1.89,1.78,1.69,1.88,1.49,1.48,2.56,1.79,2.27,3.59,3.7,3.02,2.25,2.47,2.27,1.92,2.42,1.96,1.43,2.44,2.73,2.08,1.51,2.02,2.64,2.23,2.19,2.41,2.42,2.05,2.02,1.95,1.99,2.35,1.51,1.53,2.35,2.51,2.52,2.6,1.99,2.28,2.07,1.86,2.48,2.51,2.97,3.13,2.28,2.43,2.56,2.38,3.8,2.92,3.09,3.42,2.9,2.75,3.19,3.18
1998-02,3.83,3.83,3.77,1.94,2.42,3.83,3.83,3.09,1.47,2.49,3.47,3.46,2.61,2,1.58,1.68,3.19,3.12,3.28,3.56,2.74,2.48,2.38,1.79,2.26,1.49,1.53,3.99,3.38,3.03,2.53,2.1,2.34,1.91,2.05,2.52,1.82,2.21,3.6,4.38,3.55,4.83,4.37,3.12,2.85,2.74,2.38,2.42,2.58,2.4,1.92,2.39,4.42,2.3,3.1,1.1,3.29,2.99,2.79,3.01,2.68,2.72,2.06,2.6,2.17,2.32,2.61,2.97,3.27,3.87,3.76,3.81,2.55,2.69,2.45,2.31,2.64,2.66,4.26,4.2,2.74,2.67,2.83,2.64,4.39,3.6,3.63,3.71,3.05,3.1,4.29,4.27
1998-03,6.19,6.19,6.18,5.76,4.15,6.19,6.19,6.12,5.26,3.82,6.02,6.02,5.98,5.51,2.7,4.17,6.09,5.86,6.49,7.8,4.23,6.18,4.55,3,3.61,2.95,2.89,6.36,5.81,5.41,5.12,3.95,3.99,3.79,4.25,3.85,3.41,3.98,5.36,4.7,4.96,6.21,5.99,5.3,4.76,4.6,3.63,4.01,5.21,4.48,3.68,4.91,5.74,4.5,3.3,3.93,5.1,4.84,4.48,4.39,4.3,4.06,3.08,4.22,3.72,4.39,3.3,3.34,5.08,5.41,5.07,4.11,2.77,3.89,3.65,3.77,4.31,4.32,5.49,5.4,4.09,3.68,4.13,3.83,6.54,5.04,5.12,5.53,4.75,4.59,5.72,5.5
1998-04,5.49,6.35,6.34,6.37,4.82,6.44,6.4,6.38,6.26,4.85,6.88,7.42,7.16,6.16,5.1,5.27,6.21,8.34,8.36,8.15,5.85,5.95,4.96,5.26,5.25,3.8,4.18,7.95,7.68,6.89,5.67,5.98,5.46,5.62,5.58,5.1,4.37,4.57,7.45,7.27,7.58,9.44,8.78,7.24,6.85,6.82,3.88,5.55,5.66,5.07,4.28,5.09,8.06,6.68,5.28,6.25,7.65,6.99,6.69,5.95,4.8,4.98,5.51,5.54,4.53,4.87,5.28,5.34,8.11,8.64,7.98,6.28,3.88,4.84,4.63,4.82,5.3,5.31,8.19,7.56,5.44,3.55,5.21,5.05,7.9,6.24,5.8,6.04,5.73,5.75,5.97,5.82
1998-05,6.55,8.02,8.01,6.79,5.76,7.72,8.07,7.54,6.51,6.03,8.72,8.97,8.06,6.49,6,6.15,8.31,9.78,9.71,9.14,6.82,6.89,6.4,5.26,5.36,3.74,4.12,8.79,8.85,8.23,6.81,6.52,6.09,6.35,6.01,5.45,4.7,5.35,8.65,8.9,8.43,9.57,9.23,8.06,7.87,8.04,4.44,5.54,6.26,5.28,4.99,5.79,9.42,7.85,6.21,7,7.73,6.92,7.04,6.93,5.98,5.55,6.35,5.03,5.4,5.72,6.21,6.25,8.01,8.34,8.05,7.34,5.26,5.54,5.18,5.05,6.08,6.13,8.58,8.32,5.82,4.3,5.38,5.43,9.01,6.7,5.45,5.14,7.16,6.42,6.74,6.74
1998-06,9.1,12.18,12.24,10.72,9.37,10.92,12.19,11.67,10.35,6.68,12.03,13.28,12.26,10.86,10.62,9.4,11.07,14.3,14.11,13.64,8.12,9.59,8.92,7.94,7.85,5.55,5.76,12.02,11.54,11.03,9.2,8.12,8.13,8.82,8.78,7.97,7.39,8.13,10.51,11.16,11.12,13.29,12.32,10.25,10.85,9.56,6.55,7.93,9.1,7.8,7.16,7.99,11.16,9.09,6.81,8.29,9.79,8.39,8.64,7.66,7.78,7.73,8.85,7.28,7.11,7.59,6.81,6.87,9.85,10.41,9.85,8.78,7.59,7.73,7.1,6.76,8,8.06,9.89,9.38,8.49,6.75,7.73,7.95,8.56,7.98,7.28,6.78,7.42,7.49,9.4,9.25
1998-07,7.58,11,11.09,10.48,9.98,9.68,10.98,10.85,10.37,10.52,9.76,11.51,11.12,11.12,11.81,10.45,9.16,12.01,12.35,13.43,9.79,10.9,10.58,8.54,9.06,6.19,6.49,9.85,11.1,11.23,9.67,9.53,9.43,10.21,9.93,9.61,8.68,8.14,9.13,8.73,8.82,11.48,11.62,10.57,10.21,10.92,7.81,9.29,9.98,8.7,8.33,8.17,9.36,7.15,4.83,6.39,9.7,9.49,9.7,9.07,7.01,8.31,9.32,7.97,7.37,7.75,4.83,4.97,11.7,12.97,11.35,9,5.79,7.3,7.46,7.06,7.77,7.8,11.47,10.69,9.31,7.37,7.8,7.92,12.76,10.1,8.07,7.12,7.85,8.14,9.96,9.83
1998-08,5.7,8.54,8.63,7.62,8.99,6.81,8.38,8.22,7.49,8.39,4.38,5.51,7.5,8.08,9.17,9.31,6.27,6.86,7.68,9.35,8.91,9.43,8.9,7.4,7.37,4.85,4.98,8.07,7.33,7.49,7.4,6.92,7.31,7.69,7.61,7.55,6.52,6.16,7.54,7.4,7.38,9.68,8.74,6.38,6.84,7.56,6.56,6.77,7.46,6.7,6.15,7.16,7.42,5.45,3.3,4.78,6.45,5.27,6.52,6.28,5.59,6.44,7.73,6.68,5.99,6.63,3.3,3.38,7.17,7.89,7.98,7.98,4.8,5.22,6.36,6.26,6.43,6.45,9.09,9.29,6.55,5.43,6.02,5.89,10.05,8.25,6.95,6.59,7.65,8.11,8.57,8.57
1998-09,5.96,8.17,8.23,7.45,6.92,7.01,8.08,7.93,7.3,7.22,5.57,6.51,7.76,7.59,7.75,7.96,6.49,7.85,8.43,9.39,7.97,7.93,7.07,5.78,6.28,4.45,5.28,7.56,7.7,7.64,7.6,6.81,6.22,5.94,5.84,6.46,5.38,5.54,4.32,2.91,4.64,8.68,8.38,6.86,7.03,6.89,5.31,5.22,5.86,5.25,4.91,5.43,7.95,5.55,3.69,4.88,6.34,5.35,5.15,5.23,4.88,4.81,6.11,4.97,4.36,4.89,3.69,3.72,5.37,5.68,5.35,4.86,4.74,4.38,4.63,4.82,4.99,5,5.77,5.77,4.68,3.97,4.63,4.44,7.29,5.25,5.23,5.57,4.42,4.03,5.65,5.23
1998-10,4.07,6.3,6.38,6.16,4.55,5.2,6.28,6.32,6.01,4.65,5.54,6.6,6.51,6.27,5.67,5.45,5.36,6.91,7.03,7.38,5.58,5.96,5.09,4.01,4.54,2.48,3.28,5.82,7.18,6.78,5.33,5.35,4.75,4.67,4.01,4.36,3.12,3.26,5.33,5.66,5.5,6.25,6.57,5.96,4.74,5.26,4.22,4.18,4.28,3.78,3.32,4.25,5.46,4.66,3.75,4.33,4.77,4.06,3.59,4.27,3.1,4.08,4.53,3.93,3.68,4.08,3.75,3.76,4.28,4.38,4.4,4.83,2.44,3.09,4.27,4.07,4.2,4.23,5.03,5.17,3.73,1.85,4.19,3.94,5.39,3.36,4.69,5.51,3.69,1.75,4.71,4.94
1998-11,2.94,3.89,3.86,2.39,2.82,3.15,3.91,3.33,1.95,2.89,3.05,3.99,3.22,2.6,2.06,1.71,2.84,4.06,4.15,4.49,3.2,3.16,2.98,2.16,3.96,1.97,2.14,2.99,4.1,3.62,3.05,2.78,2.68,2.79,2.57,2.8,2.11,1.57,3.2,3.64,3.45,4.11,4.22,3.42,2.83,3.38,3.31,2.49,2.49,2.13,1.8,2.39,3.61,3.21,2.76,3.14,3.03,2.3,2.24,3.05,3.71,2.61,2.53,2.3,2.04,2.34,2.76,2.75,2.39,2.32,2.5,2.88,2.22,2.99,2.6,2.29,2.75,2.77,2.8,2.91,2.11,1.25,2.4,2.19,2.83,2.43,2.8,3.15,2.16,2.28,3.17,3.29
1998-12,2.46,2.46,2.44,1.89,2.09,2.46,2.46,2.26,1.65,2.1,2.55,2.55,2.27,2.01,1.38,1.42,2.62,2.64,2.59,2.55,2.64,2.03,1.88,1.37,1.88,1.53,1.3,2.45,3.22,2.68,1.79,1.62,1.79,1.87,1.61,2.19,2.05,1.69,1.79,2.45,2.51,3.53,3.69,2.88,1.73,2.38,1.93,1.81,2.07,2.02,1.78,2.8,2.76,2.27,1.79,2.26,2.93,2.54,1.94,3.14,2.2,2.1,2.22,2.05,1.9,2.49,1.79,1.8,2.09,2.15,2.14,2.62,1.96,2.55,2.99,2.62,2.56,2.59,2.3,2.35,1.98,1.18,2.04,1.81,2.54,2.44,2.72,2.9,2.01,2.34,3.1,3.37
1999-01,4.64,5.31,5.39,5.39,5.39,4.19,5.02,5.31,5.39,5.39,3.97,4.79,5.02,5.39,5.39,5.37,3.9,4.64,4.8,5.09,5.15,4.23,3.77,3.76,3.42,2.47,1.58,3.84,4.36,4.8,4.7,4.08,3.98,2.93,3.35,3.56,2.25,1.62,2.58,2.69,3.79,3.84,4.21,4.64,4.41,4.06,3.39,2.54,2.82,4.07,2.48,1.9,2.58,2.48,3.83,3.8,4.42,4.42,4.18,2.94,3.82,3.16,2.31,2.94,3.48,2.26,3.68,3.48,3.23,3.09,3.44,2.64,3.23,3.94,3.09,2.53,2.92,2.54,4.2,4.66,3.12,3.54,2.56,2.41,6.23,4.17,3.72,3.8,3.9,3.43,3.75,3.69
1999-02,4.22,4.01,4.06,4.06,4.06,4.35,3.75,4.01,4.06,4.06,4.63,3.57,3.75,4.06,4.06,4.07,4.73,3.76,3.56,3.81,3.95,3.5,3.35,3.21,3.46,2.11,2.01,4.66,4.08,3.56,3.74,4,3.28,3.08,3.1,3.72,2.47,2.49,3.03,3.16,4.44,6.3,5.83,3.6,3.84,4.11,2.88,2.77,3.49,3.33,2.56,2.51,3.03,3.16,3.35,4.21,4.73,3.56,3.13,3.24,3.02,2.69,2.51,2.43,2.99,2.6,3.35,3.35,3.9,4.13,3.88,3.2,2.96,2.95,3.07,2.67,3.2,2.83,4.51,4.34,3.3,3.45,2.97,2.84,5.18,3.95,4.09,4.31,3.53,3.42,3.88,3.79
1999-03,5.17,5.17,2.99,2.84,2.84,5.17,5.17,3.28,2.85,2.84,5.17,4.96,4.03,3.73,3.4,2.21,5.32,4.48,4.15,4,3.67,3.2,3.56,3.4,4.7,2.6,3.21,5.23,4.56,4.15,4.13,4.1,4.06,3.33,3.65,5.13,3.36,3.1,4.9,5.69,5.41,5.86,5.43,4.11,4.19,4.11,3.78,3.21,3.86,4.07,3.22,3.15,4.88,4.77,4.07,4.62,4.78,4.13,4.85,4.35,4.09,3.3,3.05,3.56,3.54,3.32,4.11,4.11,4.86,5.21,5.25,4.22,3.7,4.38,3.76,3.5,3.99,3.74,5.49,5.2,4.1,4.73,3.78,3.53,6.03,4.87,5.31,5.84,4.44,4.47,5.24,5.35
1999-04,5.62,6.38,8.34,8.28,4.62,5.9,6.58,8.34,8.11,4.62,6.34,6.78,8.34,7.36,4.61,5.53,5.97,6.2,6.52,5.77,5.21,6.19,5.32,4.81,5.33,3.29,4.1,8.18,6.88,6.13,6.23,6.42,5.92,5.34,5,5.22,3.81,4.85,7.04,7.42,7.61,8.25,7.61,6.12,6.41,6.73,5.08,4.31,5,4.97,4.56,4.69,7.06,6.78,6.47,7.04,6.89,5.95,5.42,5.33,5.21,4.72,5.22,4.81,5.16,4.83,6.57,6.57,6.23,6.16,6.02,5.16,4.75,4.69,4.61,4.65,5.71,5.31,6.68,6.51,4.96,4.77,4.67,4.78,7.7,5.88,5.47,5.1,5.42,5.18,5.93,6.2
1999-05,6.56,7.31,7.28,7.24,4.99,7.09,7.32,7.41,7.14,4.99,7.26,7.33,7.41,7.13,5.99,5.57,6.14,8.43,9.38,8.23,5.65,6.4,6.35,4.69,5.76,3.87,3.8,8.19,9.17,9.8,8.52,4.87,5.76,5.26,4.92,6.04,5.03,5.04,7.92,8.36,8.31,10.02,10.04,8.47,6.76,4.87,4.9,4.42,6.02,6.05,4.92,4.93,8.05,7.72,6.79,8.03,8.64,7.43,5.28,5.75,6.2,5.02,6.55,7.04,5.43,4.97,7,7,7.13,7.23,6.69,5.63,5.65,6.04,5.59,6.58,6.15,5.51,7.42,6.76,5.9,5.7,5.62,6.13,7.88,6.28,6.86,7.09,5.8,5.54,6.32,6.5
1999-06,7.17,7.96,7.43,7.41,6.27,7.85,7.9,7.43,7.36,6.27,8,7.85,7.43,8.13,8.52,6.43,7.01,7.32,7.43,9.31,7.16,6.39,6.09,5.58,5.31,4.44,4.39,7.74,7.68,7.98,6.38,6.25,5.96,5.92,5.96,6.09,6.11,5.29,8.47,8.56,7.65,8.91,9.24,8.59,7.48,6.59,6.52,5.76,7.04,7,5.67,5.36,8.43,7.33,5.25,6.36,8.43,8.34,6.73,6.82,8.34,5.94,5.83,6.05,6.26,5.59,5.31,5.31,7,7.57,7.38,6.59,7.27,6.64,5.37,5.25,6.12,6.06,8.17,8.06,7.22,6.73,5.89,5.49,9.35,7.18,7.15,7.42,6.64,6.17,7.04,7.44
1999-07,7.75,8.73,9.38,9.38,8.91,8.45,8.78,9.25,9.36,8.91,8.8,8.83,9.25,9.38,9.34,8.54,9.32,9.02,9.24,9.92,10.43,9.27,8.25,7.5,7.5,5.24,5.46,9,9.57,12.78,8.47,8.64,8.59,8.1,7.77,7.16,6.32,6.64,8.09,9.12,8.34,10.8,12.43,14.33,10.99,8.21,6.66,7.26,7.77,6.65,5.61,5.81,8.06,6.7,3.44,5.43,11.86,13.66,8.35,7.41,7.81,7.62,7.99,6.11,6.18,5.42,3.46,3.46,7.56,8.71,8.45,7.78,7.87,7.18,6.09,5.83,6.36,5.98,9.25,9.44,7.54,6.64,6.38,6.05,10.34,7.68,7.5,7.92,6.78,6.13,6.87,6.87
1999-08,7.04,8.32,8.65,8.65,9.05,8,8.34,8.52,8.67,9.05,8.2,8.36,8.52,8.73,9.3,9.49,7.66,8.13,8.53,9.39,9.94,11,10.23,8.18,9.11,6.77,6.62,8.48,9.51,12.42,9.23,9.54,10.34,9.69,10.05,8.54,7.78,7.25,7.85,8.91,8.32,12.72,14.24,13.73,11.18,9.19,9.58,8.34,9.61,8.24,6.91,6.82,7.95,6.9,4.22,6.64,12.66,13.27,9.2,8.81,12.47,8.76,9.76,7.29,7.37,6.43,4.19,4.19,10.12,12.11,11.24,8.11,8.25,7.83,6.97,6.45,7.58,7.03,11.8,9.52,8.51,7.47,6.64,6.52,10.98,8.73,7.69,7.47,8.38,7.73,7.83,7.73
1999-09,5.55,6.04,5.99,5.99,5.82,5.94,6.03,5.91,5.98,5.82,6.07,6.01,5.91,6.03,6.26,7.69,6.38,7.92,8.6,8.18,7.29,9.15,7.75,6.1,6.49,4.51,4.6,6.08,7.97,9.17,8.92,7.68,8,7.01,6.96,6.9,5.97,4.93,6.72,6.89,6.01,8.96,9.84,9.28,8.43,7.57,7.4,6.83,8.19,7.45,5.72,4.96,6.84,5.56,3.25,4.8,8.76,9.11,6.99,7.4,9.07,8.16,8.77,5.76,6.47,5.7,3.18,3.18,8.16,9.93,9.12,6.87,7.84,7.26,6.42,6.22,6.95,6.51,9.27,7.11,6.91,6.24,6.87,6.52,7.72,6.49,7.81,9.27,6.06,6,7.31,8.04
1999-10,5.12,5.65,6.29,6.28,5.28,5.44,5.7,6.13,6.23,5.28,5.69,5.75,6.13,6.2,5.53,5.93,5.22,6.64,7.33,7.07,6.14,6.46,6.44,5.34,5.61,3.47,3.27,5.28,6.39,7.58,7.39,6.04,5.94,5.65,5.8,5.51,4.61,3.76,4.61,5.56,4.98,4.68,5.37,6.16,6.02,5.83,5.41,5.49,6.48,5.38,4.26,3.84,4.62,4.6,3.75,3.69,4.77,5.67,5.52,4.74,6.94,5.6,8.19,3.97,4.59,4.18,3.69,3.69,9.29,11.56,9.97,5.11,6.22,5.66,5.23,5.15,5.44,4.95,9.88,6.14,5.6,5.43,4.77,5.09,6.28,5.38,5.51,5.62,4.48,4.82,6.59,7.71
1999-11,3.77,4.29,5.43,5.43,5.43,3.77,4.49,5.23,5.43,5.18,3.77,4.69,5.23,5.39,4.85,4.46,3.95,6.08,6.49,6.13,4.8,4.31,4.15,3.6,3.5,2.58,2.61,3.87,5.54,6.75,6.42,4.3,3.88,3.71,3.9,3.52,2.96,2.74,3.54,4.75,4.37,6.53,7.18,6.35,5.26,4.12,4.76,3.98,4.62,3.77,2.78,2.62,3.56,3.76,3.11,4.07,6.28,6.26,4.13,3.55,6.93,4.17,5.55,2.91,3.67,3.04,3.01,3.01,9.13,11.54,9.41,3.57,4.35,4.67,3.69,3.62,4.3,3.69,9.28,4.36,4.21,4.35,3.92,3.77,4.55,4.05,4.59,5.23,2.71,2.91,3.86,3.8
1999-12,4.42,4.42,4.54,4.54,4.54,4.42,4.42,4.42,4.54,4.68,3.59,4.42,4.42,4.54,4.94,5.08,2.83,3.57,4.42,4.59,4.84,4.5,4,3.71,6.49,2.54,2.27,2.75,3.54,6.01,4.59,4.35,3.35,3.07,3.65,3.78,3.14,2.39,4.51,3.01,3.79,5.91,6.96,6.55,5.45,4.43,3.65,2.98,4.76,4,2.93,2.51,4.82,6.32,7.22,7.12,6.82,6.42,5.42,2.93,5.12,3.18,2.84,2.28,3.17,2.59,7.12,7.11,6.94,6.92,6.52,2.97,3.47,3.59,3.04,3.13,3.41,2.87,6.09,3.96,3.39,3.7,3.27,3.22,4.3,3.66,4.01,4.29,2.91,3.1,4.02,4.3
2000-01,3.47,5.78,7.1,7.1,7.1,3.47,4.43,7,7.1,7.1,3.47,3.5,6.58,7.1,7.1,7.2,3.47,3.47,4.86,6.15,6.29,5.23,3.96,3.09,2.53,2.47,1.99,3.42,3.96,5.1,5.19,4.64,2.8,3.33,3.57,2.44,2.62,2.45,2.36,2.48,3.45,5.67,6.13,5.15,4.35,4.2,3.43,3.21,3.72,2.74,1.94,2.34,2.36,2.62,3.12,3.93,5.45,4.98,2.88,2.54,3.5,2.81,3.07,1.92,2.98,2.58,3.07,3.07,4.71,5.21,4.47,2.93,3.76,2.98,2.29,3.13,3.61,3.04,4.43,3.2,3.15,3.48,2.9,3.17,2.8,2.96,2.77,2.9,2.68,2.79,3.06,3.26
2000-02,5.03,5.42,3.33,2.1,2.1,4.78,5.42,5,2.19,2.1,4.56,5.41,5.42,3.59,2.1,2.13,4.49,5.26,5.42,5.22,2.39,2.32,3.2,3.78,2.92,2.39,2.17,4.42,4.96,5.42,5.26,4.05,3.17,3.47,3.71,2.87,2.98,2.86,6.44,7.21,5.39,4.44,4.28,4.07,3.71,3.62,3.44,2.91,2.66,2.36,2.28,2.8,7.2,5.9,4.26,4.31,3.88,3.36,2.56,2.67,3.63,3.44,2.94,1.63,2.73,2.82,4.25,4.25,3.66,3.48,3.22,2.76,3.09,2.63,2.29,3.64,3.6,3.08,3.33,3.06,3.4,3.2,2.93,3.54,2.99,3.33,2.83,2.8,2.86,3.24,4.17,4.96
2000-03,5.94,4.29,3.9,3.9,3.85,5.94,4.5,3.9,3.9,3.92,5.94,4.71,3.9,3.94,4.76,4.95,5.74,5.51,5.22,5.03,4.78,4.83,4.61,3.39,3.19,3.33,3.52,6.03,5.53,5.5,5.54,5.3,4.06,3.82,3.93,3.25,3.82,3.4,5.45,7.24,6.47,6.09,5.91,5.32,5.13,5.14,4.26,3.88,3.38,2.94,3.19,3.6,5.23,5.56,4.74,5.19,5.54,5.13,3.78,3.44,4.06,3.96,4.88,2.42,3.88,3.88,4.8,4.8,5.34,5.55,5.03,2.87,3.21,3.95,3.24,4.31,5.04,4.48,5.38,4.17,4.36,4.65,4.04,4.31,5.04,4.74,4.71,5.48,4.99,4.95,5,5.1
2000-04,6.03,6.31,4.36,4.36,4.69,6.5,6.39,4.49,4.37,4.69,7.14,6.57,5.99,4.47,4.81,4.34,6.49,6.46,5.86,5.04,5.12,4.12,3.62,3.84,3.58,3.46,3.74,7.87,5.89,4.69,5.01,5.64,4.48,3.62,4.11,3.17,3.99,4.16,6.8,7.29,7.11,7.27,6.54,5.37,5.45,5.71,5.05,4.71,4.15,3.53,3.45,4.22,6.78,6.23,5.36,5.9,6.14,5.54,4.55,3.83,4.65,4.26,5.15,3.29,4.54,4.53,5.44,5.44,6.38,6.76,6.16,3.54,4.34,3.84,3.64,5.16,5.75,5.23,6.16,4.62,5.46,4.94,4.96,5.37,4.97,5.24,4.4,4.47,5.73,5.85,5.85,6.32
2000-05,7.73,8.1,4.41,4.43,5.97,8.5,8.37,4.77,4.51,5.97,9.15,9,7.91,4.8,6.46,5.36,8.99,9.05,9.05,7.96,7.74,5.17,6.17,4.48,3.67,3.71,4.65,9.7,8.83,7.44,7.47,6.96,5.3,4.54,5.07,3.51,3.94,5.52,8.26,8.96,8.76,8.16,7.1,5.77,6.1,6.72,6.29,5.34,5.59,4.28,3.95,5.51,8.4,7.82,6.34,6.91,6.51,5.68,4.42,4.59,5.47,4.37,6.14,4.16,5.03,5.24,6.54,6.54,7.13,7.49,6.65,4.84,5.38,3.93,3.54,5.11,5.74,5.5,6.8,5.56,5.98,5.22,5.19,5.38,5.49,5.8,5.08,5.25,5.86,6.28,6.89,7.48
2000-06,7.78,7.98,5.28,5.29,5.61,8.09,4.86,5.28,5.3,5.61,4.1,2.2,5.23,5.4,6.11,5.47,6.27,2.29,4.82,6.64,7.4,5.39,5.3,4.77,8.36,4.07,4.28,8.32,7.42,5.73,7.91,7.37,5.16,5.17,5.21,5.98,4.88,5.41,7.48,7.16,7.1,7.31,6.51,5.42,5.69,6.45,6.06,5.49,5.2,4.26,4.13,5.42,7.47,6.62,5.36,5.86,5.97,5.32,4.07,4.25,7.17,5.21,6.27,4.2,5.41,5.58,5.43,5.43,6.25,6.59,5.88,4.66,6.15,5.55,4.07,5.37,6.72,6.28,6.9,6.81,6.64,6.38,5.81,5.77,7.49,6.79,5.47,5.36,6.81,6.38,6.1,6.15
2000-07,8.11,9,6.32,6.36,8.59,9.19,9.37,6.49,6.46,8.59,9.5,10.29,9.41,6.78,8.98,7.26,9.34,10.43,10.48,9.98,10.04,7.12,9.25,6.61,5.35,4.67,5.29,10.49,10.3,10.06,9.35,8.94,7.66,7.8,7.64,5.21,6.02,6.9,8.17,8.7,8.76,9.72,9.46,9.69,8.79,8.49,8.46,8.56,6.94,5.56,5.71,7.12,8.21,7.2,5.08,6.25,9.04,9.47,6.96,6.56,8.95,8.05,10.03,5.72,6.77,6.86,5.15,5.15,9.42,10.83,9.72,7.11,8.42,6.78,6.45,7.21,7.97,7.3,10.14,9.14,12.36,8.36,7.71,7.77,8.76,9.37,6.31,5.41,8.65,8.78,8.77,9.13
2000-08,8.47,9.34,7,7.06,10.61,9.5,9.09,6.9,7.22,10.61,9.4,8.84,6.9,7.51,11.09,8.48,9.51,8.99,7.75,10.47,12.36,8.3,9.55,7.65,7.01,6.01,6.65,9.63,9.06,13.81,12.37,9.36,8.78,8.47,8.96,6.26,6.72,7.53,7.21,7.75,8.25,8.15,8.49,10.64,13.56,8.19,9.17,8.84,7.54,6.04,5.99,7.36,7.21,7.61,8.09,8.13,8.74,9.21,7.25,6.66,8.66,7.43,8.65,5.04,6.48,7.03,8.13,8.25,10.26,10.64,9.47,6.63,7.4,5.83,5.1,4.72,7.26,7.39,9.54,7.29,8.43,6.47,6.92,7.24,7.22,7.56,5.69,5.35,7.66,7.76,8.03,8.93
2000-09,7.92,8.61,6.99,7.01,7.78,8.72,8.43,6.89,7.04,7.78,8.76,8.26,6.89,7.16,8.29,8.08,9.04,8.48,7.43,8.72,9.56,7.88,6.49,6.04,5.87,5.56,5.07,8.98,8.07,11.13,9.9,7.3,6.85,7.05,6.95,5.41,6.68,5.67,6.8,7.6,7.76,7.43,7.1,7.77,10.99,7.34,6.96,7.82,6.87,5.56,4.67,5.24,6.84,7.41,7.48,7.31,6.88,6.45,6.34,6.23,6.56,6.41,7.72,4.64,5.61,5.25,7.31,7.38,8.46,8.75,8,6.06,7.04,5.85,4.97,4.31,6.48,5.93,8.08,6.65,8.09,7.14,6.51,6.64,6.53,6.95,6,6.12,5.6,6.04,6.95,7.28
2000-10,4.25,4.26,3.46,3.47,4.03,4.4,4.16,3.37,3.5,4.03,4.5,4.07,3.37,3.6,4.6,4.57,4.43,3.79,3.38,4.2,6.04,4.71,5.95,4.24,4.26,3.29,3.02,4.38,3.74,3.38,4.02,4.64,3.97,4.91,4.67,4.09,3.65,3.82,3.23,3.95,4,4.68,4.46,4.08,6.19,4.64,4.28,5.45,4.25,3.45,3.26,3.86,3.17,3.4,3.15,3.53,4.17,3.83,3.52,5.14,4.33,3.53,5.78,2.7,3.7,4.03,3.11,3.11,3.39,3.45,3.41,4.11,3.64,4.39,3.7,2.66,4.69,4.5,3.82,3.77,4.44,5.34,5.09,5.06,4.45,4.49,4.28,4.92,4.42,4.61,4.59,4.54
2000-11,3.07,3.28,3.8,3.8,3.8,3.07,3.36,3.66,3.8,3.45,3.07,3.44,3.66,3.73,2.51,2.28,2.57,2.68,2.81,2.79,2.3,2.06,2.57,2.39,2.96,2.31,2.62,2.26,2.54,2.63,2.82,2.88,2.13,2.84,2.54,4.32,2.64,2.03,3.34,2.42,2.83,4.18,4.55,2.31,2.53,2.84,2.96,3.26,4,3.65,1.97,2.16,3.5,4.37,4.94,4.81,4.34,1.57,1.64,3.87,4.34,3.24,2.33,3.17,3.44,2.6,4.81,4.81,3.23,1.57,1.69,4.18,3.8,4.04,5.39,4.03,2.94,2.87,2.12,2.76,2.78,3.02,2.76,2.71,2.25,3.01,3.15,3.1,2.72,3.23,3.91,4.48
2000-12,2.12,2.12,2.18,2.18,2.18,2.12,2.12,2.12,2.18,2.49,2.36,2.12,2.12,2.18,3.03,3.34,3.42,2.6,2.12,2.53,3.06,2.7,2.99,3.35,1.49,1.49,1.44,3.58,3.59,3.44,3.78,2.96,1.68,1.93,3.05,1.5,1.37,1.42,3,3.2,3.3,3.6,3.6,2.35,3.33,3.68,2.61,2.79,3.19,2.43,1.51,1.68,3.19,3.2,3.53,3.55,3.14,1.77,1.88,1.88,2.48,2.3,1.93,2.22,2.85,2.11,3.55,3.46,1.99,1.74,1.8,2.19,2.88,2.45,2.13,1.79,2.35,2.37,2.01,2.64,2.01,2.25,2.02,2.03,2.46,2.36,2.02,2.03,2.51,2.62,2.89,3.25
2001-01,1.13,1.13,1.13,1.13,1.13,1.13,1.13,1.13,1.13,1.17,1.13,1.13,1.13,1.13,1.32,1.78,1.15,1.13,1.13,1.13,1.48,1.74,1.94,2.14,2.4,1.88,1.88,2.25,1.37,1.13,1.13,1.52,1.79,2.13,2.72,2.6,1.79,1.88,1.24,2.37,2.71,2.44,2.26,1.4,1.36,1.48,1.7,2.18,2.72,2.04,1.61,3.12,1.24,1.58,2.48,2.44,2.27,1.7,1.63,1.8,1.72,1.98,2.44,1.77,1.67,2.5,1.57,1.83,1.78,1.78,1.75,2.31,2.19,1.92,1.68,1.71,2.03,2.04,1.78,2.04,1.76,2.43,1.81,1.82,2.16,2.31,2.03,1.89,2.46,2.22,2.14,2.5
2001-02,2.84,2.43,1.71,1.71,1.71,2.69,1.8,1.71,1.71,1.75,2.01,1.71,1.71,1.71,1.88,2.23,1.74,1.71,1.71,1.71,2.15,2.24,2.3,1.92,1.83,1.76,1.79,3.28,2.05,1.71,1.91,2.73,2.05,2.32,1.94,1.87,1.89,1.89,1.67,2.94,3.57,3.55,3.3,2.15,2.3,2.78,1.99,2.26,2.56,2.11,1.94,2.51,1.67,2.05,3.33,3.55,3.17,2.05,2.01,2.05,1.91,1.89,2.21,1.69,1.95,2.31,1.97,2.15,2.03,2.03,2.02,2.08,1.89,2.01,1.95,1.83,2.36,2.38,2.04,2.27,2.35,2.41,2.1,2.11,2.86,2.78,2.79,2.3,3.11,3.21,3.39,3.48
2001-03,3.3,3.3,3.3,3.3,3.1,3.55,3.31,3.3,3.3,2.96,3.73,3.21,3.12,2.94,2.67,2.6,3.81,2.97,2.97,2.82,2.67,2.81,2.88,2.76,2.73,3.02,3.01,4.22,3.44,2.97,2.88,2.56,2.92,2.69,2.85,2.9,3.01,2.93,3.76,4.27,4.4,4.86,4.63,3.17,2.67,2.4,2.75,2.68,3,3.43,3.3,3.57,3.76,3.67,3.44,3.73,4.19,2.94,2.7,2.79,2.64,2.6,3.2,3.31,3.35,3.47,3.44,3.44,3.37,3.36,3.19,2.83,2.75,3.12,2.77,3.08,3.92,3.95,3.35,2.89,2.98,3.57,2.8,2.83,3.62,3.6,3.64,3.03,4.02,4.11,4.26,4.42
2001-04,4.87,7.71,7.78,7.74,5.66,6.99,7.35,7.63,6.93,4.88,7.5,7.29,7.22,5.45,5.01,5.05,6.75,5.68,4.94,4.98,5.21,5.08,4.9,3.75,3.28,3.29,3.79,8.22,5.86,4.74,4.7,4.48,4.19,4.26,4.01,3.81,4.11,4.4,6.47,5.73,6.55,8.62,8.15,5.12,4.43,4.38,3.68,4.08,4.7,4.14,3.99,4.64,6.37,5.74,5.34,6.01,7.15,4.53,4.02,3.93,3.69,3.5,4.07,3.72,4.36,4.67,5.34,5.34,5.4,5.41,5.02,3.44,3.47,3.81,3.99,4.1,5.1,5.14,5.39,4.03,4.49,4.77,4.4,4.45,5.12,5.05,5.13,4.61,5.45,5.66,5.94,5.82
2001-05,5.21,5.99,5.98,5.97,5.65,5.82,6.05,6,5.85,5.53,6.63,6.11,6.04,5.61,5.49,5.59,6.84,6.17,5.77,5.59,5.41,5.76,5.53,4.4,3.95,4.26,4.93,8.2,6.7,5.75,5.8,5.83,5.32,5.38,5.12,4.93,5.46,5.84,7.81,8.13,8.07,9.47,9.03,6.23,6.26,5.92,4.93,5.47,6.03,5.44,5.32,5.71,7.88,6.63,5.42,6.25,8.25,6.35,5.75,5.56,5.28,4.89,5.56,4.78,5.43,5.76,5.42,5.46,7.56,7.99,7.41,5.88,5.2,5.05,4.98,5.35,6.3,6.52,7.96,6.45,6.36,5.97,5.83,5.62,6.23,6.32,6.34,6,6.05,6.18,6.21,5.99
2001-06,7.25,8.95,8.67,8.66,8.17,8.37,10.43,9.3,8.47,7.99,9.92,10.4,10.45,8.56,8.35,8.21,8.79,8.95,8.96,8.95,9.04,8.87,7.78,5.89,5.17,4.23,5.09,10.73,9.38,8.83,8.59,7.53,7.59,6.76,6.63,6.15,5.28,5.68,9.52,10.03,9.58,10.55,10.41,8.82,7.87,7.14,6.22,6.68,7.1,5.75,4.98,5.94,9.46,7.64,5.83,6.8,9.63,8.46,7.56,6.86,6.34,5.83,5.83,5.54,5.36,5.55,5.83,5.91,10.09,10.95,10.08,7.47,7.01,6.34,5.34,5.25,5.42,5.42,10.89,8.17,8.1,7.51,6.32,6.29,7.86,7.88,7.87,6.84,7.64,7.7,7.8,8.3
2001-07,7.69,10.75,10.51,10.51,10.53,9.44,12.05,11.06,10.52,10.54,10.44,11.92,12.05,10.97,10.97,10.39,9.15,9.98,10.36,10.98,11.76,10.84,9.74,7.74,6.74,4.84,5.36,10.86,10.31,10.21,10.08,9.47,9.49,8.7,8.59,7.86,6.02,6.44,8.87,9.2,8.97,10.23,10.33,10.02,9.56,9.17,8.28,8.7,8.88,7.07,5.86,6.45,8.76,6.94,5.16,6.2,9.58,9.82,9.16,8.51,8.09,7.4,7.77,6.57,6.53,6.04,5.16,5.27,10.72,11.85,11.16,8.11,7.79,8,6.72,5.05,5.74,5.91,11.79,8.99,9.16,8.99,6.88,5.88,7.98,8.43,8.53,7.45,7.2,7.68,8.46,7.94
2001-08,5.98,7.88,8.81,7.88,7.87,7.43,9.34,9.34,8.06,7.87,8.49,9.21,9.29,8.2,8.14,8.48,7.51,7.99,8.2,8.36,8.63,8.85,8.21,6.7,6.03,4.71,5.34,8.85,8.5,8.1,8.05,7.84,7.74,7.68,7.94,7.18,5.67,5.81,6.81,7.28,7.69,9.81,9.69,8.28,7.88,7.69,6.99,8.27,9.04,7.26,5.91,5.92,6.68,5.45,4.16,5.32,8.81,8.48,7.78,7.47,7.46,7.45,8.54,6.31,6.11,5.79,4.16,4.26,9.41,10.48,9.79,8.03,7.9,8.47,6.82,6.08,6.17,6.19,10.43,8.47,8.36,8.22,6.17,6.1,7.69,8.22,8.2,6.8,7.27,7.64,8.15,7.15
2001-09,5.81,7.16,7.06,7.04,5.98,6.68,7.86,7.4,6.63,5.58,6.51,7.67,8.02,6.02,5.61,5.66,3.68,5.85,7.04,6.36,5.64,5.96,5.34,3.85,3.27,2.9,4.31,7.81,7.41,6.95,6.72,5.54,5.2,4.76,4.97,4.35,3.56,3.69,6.67,7.01,7.19,9.01,8.83,6.91,5.91,5.49,5.24,4.92,5.46,4.45,3.9,4.38,6.6,5.26,3.93,4.97,7.47,5.82,5.3,5.39,5.17,4.47,4.77,4.01,4.38,4.41,3.93,3.98,6.37,6.86,6.46,4.47,4.81,5.22,4.09,3.9,5,5.04,6.83,5.09,5.44,5.5,4.94,4.45,3.77,4.98,5.37,5.27,2.84,4.26,5.67,5.45
2001-10,5.42,6.21,5.99,5.99,5.81,6.15,7.4,6.55,5.92,5.74,6.2,7.33,7.57,6.11,5.95,5.67,4.53,5.6,6.13,6.17,6.3,5.81,5.33,4.01,3.27,2.6,3.04,6.67,6.41,6,5.88,5.17,4.83,4.53,4.63,4.23,3.6,3.82,4.99,5.68,6.31,7.9,7.72,5.97,5.82,5.16,4.37,4.31,5.04,4.09,3.65,3.91,4.87,4.62,4.18,4.94,7.08,5.76,5.03,4.75,4.41,4.05,4.37,2.97,3.68,3.85,4.18,4.24,7.26,7.88,7.14,4.63,4.09,3.95,3.6,3.23,4.4,4.46,7.82,5.2,5.08,4.47,3.6,3.63,4.37,4.93,5.13,4.06,3.86,4.73,5.63,5.57
2001-11,3.15,3.77,3.75,3.75,3.75,3.24,3.85,3.78,3.75,3.86,3.29,3.82,3.81,3.99,4.32,4.34,3.44,2.89,2.89,3.51,4.27,3.85,3.57,2.85,2.42,2.29,2.25,3.81,3.28,2.81,2.93,3.42,3.13,3.25,3.48,3.11,2.59,2.67,2.28,3.04,3.63,4.83,4.6,3.06,3.05,3.5,3.14,3.01,3.47,2.91,2.49,2.5,2.28,2.35,2.21,2.75,4.3,3.33,2.71,2.87,2.87,2.67,2.92,2.25,2.62,2.57,2.21,2.26,4.56,5.04,4.44,2.54,2.58,2.85,2.66,2.41,3.11,3.15,4.99,2.93,2.94,3,2.88,2.89,2.54,3.1,3.24,2.99,2.32,2.95,3.72,3.46
2001-12,2.3,3.09,3.13,3.13,3.13,2.1,2.99,3.13,3.13,3.15,2.11,2.12,2.47,2.72,3.17,3.26,2.89,1.9,1.9,1.9,2.58,2.85,2.76,2.13,1.96,1.58,1.56,3.13,2.19,1.9,2.01,2.48,2.25,2.22,2.6,2.19,1.87,1.86,2.59,2.59,2.69,2.74,2.62,1.99,2.13,2.57,2.2,2.08,2.42,2.11,1.98,2.88,2.59,2.59,2.66,2.74,2.75,2.12,1.81,2.02,1.74,1.63,1.95,1.82,2.06,2.51,2.83,2.97,2.99,2.99,2.69,2.32,1.99,2.33,2.13,1.9,2.39,2.41,2.97,2.18,1.94,2.38,2.36,2.2,1.95,2.28,2.33,2.33,2.41,2.55,2.68,2.85
2002-01,2.17,2.17,2.17,2.45,2.92,2.17,2.17,2.24,2.88,2.92,2.25,2.88,4.15,3.18,2.92,2.92,3.24,3.94,4.53,4.3,2.92,2.91,2.84,2.1,2.69,2.13,1.99,3.43,4.27,4.53,4.32,3.26,2.89,2.4,2.49,2.2,2.27,1.92,2.65,2.65,3.43,4.45,4.16,3.39,3.56,3.59,2.78,2.5,2.75,2.35,2.08,2.43,2.65,2.65,3.56,4.36,3.29,2.65,2.29,2.32,2.31,2.09,2.46,2.42,2.07,2.3,3.68,4.11,4.09,4.09,3.54,2.16,1.98,2.21,2.11,2.21,2.45,2.45,4.52,3.84,2.46,2.65,2.18,2.09,5.26,3.68,2.82,2.63,3.43,3.3,3.65,3.95
2002-02,2.81,2.81,2.81,3,3.31,2.81,2.81,2.86,3.28,3.31,2.81,2.79,2.79,3.22,3.31,3.31,3.3,2.75,2.75,2.77,2.89,2.98,3.02,2.92,2.25,2.06,1.83,3.71,3.02,2.75,2.75,2.64,2.79,2.68,2.69,2.43,2.6,2.52,3.31,3.31,3.33,3.69,3.46,2.74,3.12,3.69,3.15,2.94,3.1,2.67,2.45,3.21,2.83,2.87,2.67,2.88,3.02,2.79,2.92,3.01,2.85,2.62,2.91,2.56,2.41,2.88,2.67,2.71,4.44,4.77,4.24,2.99,2.61,2.67,2.54,2.56,2.94,2.95,4.83,4.07,3.11,3.19,2.79,2.81,4.91,3.89,3.13,2.87,3.73,3.49,3.56,3.57
2002-03,5.19,5.38,5.39,5.39,5.27,5.14,5.36,5.39,5.39,4.81,7.15,6.38,5.35,5.17,4.93,4.55,6.82,5.79,5.07,5.01,4.99,4.55,4.31,3.2,3.38,2.86,2.62,6.55,5.65,5.07,4.63,3.18,3.95,3.77,3.16,3.41,3.28,3.05,5.12,5.56,5.8,6.63,6.12,4.37,3.95,4.49,4.11,3.51,3.73,3.54,3.35,3.64,4.98,4.64,4.1,4.63,4.93,4.27,3.95,4.02,3.63,3.14,3.92,4.05,3.53,3.62,4.1,4.14,5.93,6.28,5.58,3.49,3.46,3.49,3.43,3.69,3.93,3.93,6.58,5.51,4.43,4.46,3.55,3.59,7.09,5.38,3.99,3.47,5.49,5.05,4.99,4.96
2002-04,6.29,6.96,6.82,6.78,4.75,7.69,7.5,7.03,5.95,3.94,7.84,7.03,6.97,5.13,4.27,4.7,7.01,6.56,6.22,5.26,4.94,5.01,4.96,3.99,4.11,4.01,3.82,7.61,6.77,5.89,5.59,4.96,4.67,4.22,4.34,4.31,4.09,4.38,7.15,7.2,7.32,8.82,7.92,5.42,6.16,5.74,4.54,4.17,4.48,4.47,4.13,4.32,7.1,6,4.99,5.79,5.96,4.75,4.97,4.73,4.27,4.18,4.82,5.52,4.76,4.21,4.99,5.03,6.93,7.3,6.61,4.25,4.37,4.74,4.53,4.95,5.05,5.03,7.11,5.85,6.06,5.76,4.49,4.6,6.78,6.24,4.92,4.04,6.5,6.37,6.16,6.3
2002-05,6.79,8.06,7.86,4.62,4.59,8.54,8.92,8.91,5.09,4.59,8.95,9.05,9.04,6.11,4.79,4.8,9.08,9.16,8.61,7.24,5.33,5.41,4.71,4.06,4.5,4.01,4.02,9.28,7.98,6.21,6.71,6.74,5.26,4.93,5.27,5.04,5.41,5.37,8.52,8.27,8.43,10.41,9.88,6.4,7.17,7.78,5.03,5.53,6.29,5.84,5.43,5.35,8.5,6.9,5.59,6.59,9.19,7.43,6.26,6.08,5.68,5.42,6.5,6.22,5.42,5.16,5.59,5.63,7.59,7.97,7.45,5.2,5.12,5.61,5.13,5.45,5.88,5.88,7.44,6.09,6.93,6.14,5.37,5.43,6.49,6.9,6.19,5.4,6.72,6.83,7.05,7.08
2002-06,8.53,9.87,9.62,9.58,7.7,10.45,11.11,10.16,8.77,6.82,10.37,10.98,11,8.33,6.72,6.44,9.45,10.8,10.4,9.49,6.74,6.55,6.87,5.83,5.94,4.73,4.23,11.15,9.64,7.48,8.21,7.68,6.45,6.16,5.99,5.58,6.36,5.82,9.53,9.63,9.95,12.95,12.3,7.72,7.91,8.07,5.82,6.35,6.65,6.1,5.48,5.54,9.48,7.25,5.24,6.85,11.32,9.52,7.57,7.14,6.07,6.48,6.81,6.33,5.58,5.32,5.24,5.34,10.24,11.19,10.13,7.05,6.75,6.44,5.54,5.98,6.37,6.45,10.75,8.66,7.66,7.33,6.15,6.03,9.92,7.89,6.62,6.26,7.57,7.05,7.92,8.11
2002-07,6.85,8.42,9.1,7.04,7.02,8.64,9.82,9.94,7.36,7.02,8.59,9.44,9.49,7.92,7.3,7.62,8.98,9.11,8.89,8.67,7.88,7.88,6.82,5.56,6.31,5.39,5.18,9.62,8.08,6.3,7.07,6.81,6.37,6.23,6.49,6.49,6.51,6.11,7.33,8.02,8.34,10.61,9.41,5.65,6.17,6.65,5.86,6.12,6.72,6.18,5.69,5.83,7.27,5.76,4.11,5.46,6.71,5.34,5.58,5.64,6.08,5.53,6.13,5.94,5.49,5.34,4.11,4.18,7.78,8.47,7.64,4.83,5.26,6.07,5.5,6.2,6.05,6.01,8.7,7.08,5.98,6.28,5.92,6.18,9.09,7.33,6.07,5.76,7.26,7.2,7.96,8.05
2002-08,8.16,9.37,9.34,9.33,8.69,9.54,9.51,9.39,9.05,8.39,9.4,10.04,10.04,9.14,8.45,8.24,8.66,10.51,10.4,10.27,8.68,8.77,7.73,6.33,6.73,5.43,5.66,9.63,9.23,8.5,9.18,9.04,8.09,7.44,7.47,7.05,6.62,5.95,7.08,7.49,7.56,9.19,8.89,7.72,8.72,9.61,7.05,7.37,7.27,6.29,6,5.87,6.93,5.31,3.65,4.8,7.39,7.32,7.48,7.82,7.31,6.72,6.73,5.86,5.5,5.48,3.65,3.77,9.56,10.68,9.74,7.36,6.78,6.69,5.73,5.36,6.44,6.67,10,8.14,7.18,6.73,5.2,5.16,8.76,7.77,6.71,6.14,7.57,7.93,8.21,8.35
2002-09,5.44,6.82,6.9,6.89,6.65,6.41,6.41,6.72,6.79,6.54,6.71,6.58,6.57,6.61,6.39,6.41,6.93,6.75,6.89,7.25,6.12,6.49,6.23,5.11,4.85,4.87,4.53,7.7,6.79,6.49,6.81,6.6,5.93,5.92,6.23,5.49,5.72,4.66,6.22,6.44,5.91,5.62,5.6,5.52,6.5,7.39,5.41,6.03,6.37,5.34,4.71,4.39,6.18,4.84,3.56,3.56,4.57,4.99,5.89,5.97,5.12,5.5,6.12,5.43,4.26,3.94,3.56,3.64,7.41,8.14,7.51,5.04,4.83,5.01,4.72,4.66,4.49,4.48,7.06,5,4.97,5.33,4.58,4.48,5.13,5.32,4.92,4.44,5.26,5.56,6.37,6.05
2002-10,3.4,3.44,3.35,3.35,3.41,3.92,3.77,3.48,3.38,3.44,4.12,4.73,4.72,3.87,3.51,3.93,5.01,5.57,5.18,3.9,3.62,4.11,3.83,3.16,3.42,3.1,2.58,4.62,5.29,4.76,3.97,3.93,3.44,3.24,3.11,3.5,3.5,2.52,2.99,4.21,4.46,4.94,4.99,4.67,4.16,4.24,3.42,3.86,4.14,3.32,2.61,2.56,2.93,3.14,2.78,3.23,4.53,4.21,3.68,3.54,3.53,3.44,3.52,3.39,2.68,2.36,2.78,2.81,4.41,4.72,4.4,3.31,3.28,3.06,2.77,2.86,2.68,2.67,4.81,4.22,3.64,3.51,3.2,2.99,4.96,4.5,4.25,4.14,3.87,3.94,4.85,4.92
2002-11,3.1,3.13,3.15,3.15,3.15,3,3.01,3.1,3.15,3.24,3.16,3.16,3.17,3.31,3.57,3.64,3.31,3.31,3.33,3.62,3.58,3.51,3.71,2.48,2.86,2.16,2.33,3.78,2.9,2.23,2.89,3.71,3.3,3.13,3.32,2.97,2.37,2.1,3.82,3.81,3.61,3.94,3.71,2.31,2.95,3.66,3.06,3.32,3.53,2.76,2.38,2.3,2.83,2.93,2.51,2.81,3.69,3.16,2.54,2.88,3.25,2.95,3.3,2.91,2.53,2.46,2.51,2.53,3.71,3.94,3.54,3.03,3.14,3,2.81,2.62,2.38,2.38,3.92,3.5,2.83,3.13,2.68,2.52,3.87,3.24,3.2,3.32,2.79,2.79,3.88,3.77
2002-12,4.15,3.42,2.94,2.94,2.94,4.12,4.09,3.2,2.94,2.94,4.07,4.15,4.09,3.14,2.94,2.94,4.03,4.15,4.15,3.96,2.74,2.74,3.21,2.53,2.82,2.41,2.31,3.84,4.15,4.15,4.12,3.52,2.46,2.15,2.15,2.07,2.2,1.77,1.01,2.37,3.03,2.95,2.82,2.78,2.95,3.27,2.57,2.63,2.42,2,1.72,1.97,1.01,1.94,3.02,2.13,1.89,1.91,1.96,2.28,2.6,2.14,2.36,2.29,2.08,1.9,2.49,3.3,3.33,3.33,2.95,2.39,2.38,2.27,2.16,2.05,1.7,1.69,3.4,2.99,2.23,2.48,2.3,2.15,3.51,2.99,2.87,2.9,2.87,2.95,3.57,3.6
2003-01,4.05,3.73,2.41,2.37,2.37,4.05,4.05,3.16,2.37,2.37,4.05,4.05,4.05,2.77,2.37,2.37,3.87,4.05,4.05,3.81,2.37,2.36,2.32,2.03,2.18,1.98,1.4,3.21,3.88,4.05,3.85,2.81,2.4,2.13,2.01,2,1.74,1.34,3.17,3.17,3.17,3.17,3.25,3.51,3.03,2.89,2.17,2.08,2.64,2.35,1.62,1.7,3.17,3.17,3.17,3.17,3.08,2.21,1.96,2.09,1.89,1.94,2.2,2.13,1.9,1.82,3.02,2.97,2.95,2.95,2.66,2.36,2.12,2.12,2.14,2.09,1.9,1.9,2.92,2.28,1.92,1.96,1.77,1.61,2.01,2.19,2.39,2.5,1.97,2.31,2.6,2.56
2003-02,2.46,2.41,2.19,2.18,2.18,2.46,2.46,2.31,2.18,2.18,2.5,2.46,2.46,2.25,2.18,2.18,2.79,2.46,2.46,2.4,2.07,2.09,1.96,2.14,2.99,2.26,1.98,3.78,2.72,2.46,2.43,2.14,1.95,1.74,2,1.99,2.53,1.68,3.41,3.41,3.62,3.85,3.72,2.27,2.23,3.06,2.07,2.23,2.34,1.94,1.96,1.87,3.41,3.41,3.63,3.85,3.63,2.4,2.23,2.29,2.01,1.68,2.01,1.59,1.62,1.75,3.15,2.93,2.85,2.85,2.68,2.08,1.78,1.63,1.61,1.58,1.51,1.51,2.82,1.95,1.83,1.87,1.83,1.81,1.96,2.24,2.08,1.9,2.66,2.56,2.58,2.62
2003-03,4.51,4.51,4.51,4.51,4.37,4.85,4.51,4.51,4.51,4.28,5.51,4.56,4.51,4.45,4.29,4.13,5.6,6.23,6.11,4.88,4.34,4.06,3.76,3.41,3.19,2.7,2.52,5.71,6.37,6.81,6.3,4.44,3.99,3.54,2.9,3.16,3.06,2.78,5.47,5.11,5.13,5.03,5.2,5.3,4.71,4.82,3.67,3.34,3.44,3.18,3.12,3.34,5.22,5.11,5.07,5.03,5.12,4.31,3.88,4.02,3.04,2.86,3.16,3.02,2.56,2.86,5.6,5.93,6.01,6.01,5.37,3.21,2.46,2.78,2.82,2.79,2.59,2.59,5.94,3.08,3.02,2.86,2.99,3.01,3.37,3.34,3.12,2.91,3.27,3.43,3.44,3.14
2003-04,5.83,6.24,6.5,5.56,5.26,7.13,6.96,6.92,5.73,5.58,7.72,6.99,6.92,6.06,5.85,5.62,7.78,8.16,8.04,6.88,6.42,6.18,5.8,5.08,5.02,3.96,4.12,8.77,8.89,8.53,8.07,6.35,5.86,5.17,5.31,4.98,4.79,4.8,6.23,7.74,9.31,10.4,10.23,7.86,7.47,7.42,5.72,4.9,5.17,4.6,4.2,2.47,6.11,7.23,9.48,10.4,9.76,6.28,5.96,6.1,5.52,4.58,4.85,4.39,3.81,2.87,7.45,7.86,7.65,7.65,7.07,4.88,4.05,4.3,4.08,3.95,3.49,3.49,7.57,4.59,4.34,3.95,4.02,4.16,4.7,4.56,3.92,3.34,4.6,4.96,6.05,6.1
2003-05,6.52,7.41,7.63,5.61,5.59,8,8.36,8.38,5.91,5.59,7.7,7.11,7.88,6.27,5.55,5.34,6.87,6.48,7.42,6.26,5.45,5.64,5.15,4.3,4.48,3.72,3.96,8.72,8.96,9.29,8.49,5.66,5.17,4.57,4.79,4.64,4.89,4.95,7.6,8.26,8.62,9.96,9.97,7.89,7.17,6.94,5.1,4.31,4.87,4.7,4.81,4.56,7.55,7.07,6.34,7.09,8.84,6.59,6.22,6.2,5.55,4.43,5.56,4.99,4.26,4.26,6.34,6.37,7.73,7.99,7.41,5.31,4.84,4.84,5.24,4.99,4.1,4.1,7.94,5.74,5.82,5.54,5.04,5.1,8.39,6.45,5.24,4.79,8.62,6.42,7.04,6.81
2003-06,6.5,6.97,7.13,5.89,5.88,7.47,7.6,7.6,6.08,5.88,8.28,7.65,7.6,6.39,6.04,6.22,8.74,8.73,8.52,6.91,6.33,6.71,6.2,5.2,5.28,4.43,4.59,9.45,9.14,8.92,8.47,6.87,6.13,5.67,5.85,5.61,5.4,5.12,8.48,9.14,9.59,9.77,9.69,7.67,7.23,8.04,5.81,5.96,6.3,6.15,5.86,5.34,8.47,8.93,9.62,9.77,9.52,7.43,6.95,6.91,6.27,5.69,6.43,6.59,5.06,4.8,8.93,9.03,8.97,8.97,8.37,5.76,6.14,6.41,5.91,5.65,4.3,4.29,8.92,6.36,6.92,6.55,6.33,6.53,9.38,7.46,6.02,5.41,9.57,7.32,7.01,6.45
2003-07,8.58,10,11.01,9.73,9.72,10.43,11.55,11.68,9.95,9.72,10.44,11.51,11.68,10.22,9.74,9.1,9.83,11.22,11.64,10.23,9.78,9.26,8.2,7.06,7.16,5.32,5.1,11.15,11.69,11.62,10.83,8.32,8.05,7.79,7.69,7.44,7.23,6.34,7.11,9.57,11.47,12.29,12.23,8.89,7.84,9.08,7.54,7.48,7.42,6.73,5.64,5.94,6.9,8.74,11.59,12.29,11.39,6.92,6.57,6.97,6.86,6.02,6.15,5.96,4.99,5.08,8.43,8.46,8.14,8.14,7.62,5.59,5.37,4.86,4.72,4.79,4.18,4.17,8.07,5.47,5.49,4.62,4.5,4.65,8.73,6.68,5.32,4.82,9.1,6.83,6.95,6.47
2003-08,7.13,8.69,9.71,8.23,8.22,9,10.29,10.44,8.48,8.22,8.82,10.26,10.44,8.9,8.46,8.26,8.56,9.42,10.04,8.98,8.93,8.67,7.72,6.43,6.52,5.01,4.84,9.78,10.69,9.33,8.24,8.1,7.81,6.95,7.41,6.96,6.12,5.67,7.66,9.13,10.58,11.64,11.64,8.6,8.49,9.44,7.38,7.21,7.8,6.8,5.62,6.34,7.61,8.65,10.76,11.64,11.11,7.33,6.72,7.19,6.79,7.02,7.6,6.42,4.96,5.38,9.16,9.88,9.73,9.73,8.79,6.3,6.09,6.05,6.23,5.89,4.23,4.22,9.67,6.91,7.1,5.09,6.51,7.22,9.08,7.59,6.25,5.58,9.18,7.25,7.43,6.93
2003-09,6.05,6.35,6.56,5.32,5.31,6.78,6.86,7.04,5.51,5.31,5.52,5.76,7.04,5.84,5.48,4.98,6.59,6,6.36,5.93,5.85,5.42,5.12,4.23,4.57,3.68,3.79,7.46,6.61,6.06,5.91,5.43,5.27,4.82,4.88,5.01,4.97,4.54,5.91,7.46,8.17,8.18,7.98,5.64,5.45,5.86,5,4.85,5.08,4.65,4.53,4.73,5.83,6.95,8.22,8.18,7.66,4.83,4.53,4.58,4.67,4.27,4.55,4.54,3.74,4.03,6.42,6.11,5.93,5.93,5.47,3.91,4.39,4.01,3.59,3.67,3.5,3.49,5.88,4.02,4.11,3.95,4.2,4.41,5.03,4.37,4.23,4.41,5.09,4.18,4.35,3.82
2003-10,4.56,1.59,0.74,0.8,3.71,5.59,5.34,2.38,2.06,5.08,4.99,5.08,5.68,5.16,5.39,4.88,5.13,5.18,5.68,5.79,6.05,5.46,4.58,3.95,4.24,3.2,2.91,5.88,5.25,4.95,5.22,5.49,4.34,4.22,4.48,4.44,4,3.63,3.84,5.19,5.96,6.04,5.94,4.1,3.89,4.98,4.37,4.69,4.54,4.23,3.64,3.72,3.71,4.72,5.98,6.04,5.76,3.96,3.64,4.65,4.43,3.81,3.99,4.08,3.52,3.47,4.74,5.02,4.93,4.93,4.62,4.2,3.82,3.74,3.5,3.52,3.31,3.31,4.93,3.77,3.92,3.32,3.5,3.57,3.84,3.87,3.94,3.94,3.78,3.56,4.18,4.4
2003-11,4.02,4.02,4.02,4.02,3.74,4.02,4.02,4.02,4.02,3.56,4.11,4.03,4.11,4.28,3.56,3.29,4.63,4.32,4.45,4.48,4.06,3.3,3.4,3.63,4.12,2.75,2.18,4.01,4.16,4.18,4.16,3.8,3.21,3.75,3.57,3.26,2.85,2.58,3.5,3.5,3.76,4.1,4.11,3.49,3.29,3.88,3.76,4.56,3.46,3.43,2.75,2.59,3.5,3.5,3.8,4.1,3.92,2.57,2.36,3.21,2.94,2.66,3.09,3.63,2.86,2.45,3.58,3.56,3.51,3.51,3.18,2.79,2.71,2.82,2.78,2.83,2.51,2.5,3.5,2.89,3.12,3.32,3.3,3.36,3.19,3.38,3.65,3.77,3.17,3.12,3.49,3.29
2003-12,2.99,2.99,2.99,2.99,3.12,2.99,2.99,2.99,2.99,3.2,2.79,2.99,2.99,2.99,3.27,3.32,1.6,2.06,3.01,3.13,3.28,3.32,3.05,2.97,2.75,2.42,2.14,1.58,1.99,3.48,3.65,3.09,2.53,3.38,3.2,2.75,2.87,2.13,1.58,1.58,1.66,2.1,3.47,3.64,3.69,3.84,2.95,3.89,3.49,3.09,2.67,2.35,1.61,2.39,4.01,4.14,3.55,3.03,2.73,2.96,3.13,2.62,2.99,2.92,2.59,2.31,4.42,4.42,4.42,4.42,3.89,2.45,2.53,2.56,2.63,2.6,2.13,2.13,4.38,2.72,2.85,3.2,2.74,2.62,2.99,3.11,3.4,3.54,2.95,2.77,3.18,3.31
2004-01,1.99,2.09,2.27,2.27,2.27,1.99,2,2.18,2.27,2.3,2.22,1.99,1.99,2.06,2.38,2.43,3.64,3.22,2.96,2.82,2.27,2.29,2.26,2.1,2.03,2.42,1.49,3.64,3.41,3.39,3.2,2.46,2.13,2.23,2.17,2.18,2.13,1.39,3.67,3.67,3.48,2.81,2.68,2.59,2.29,2.95,2.24,2.34,2.8,2.45,1.94,2.13,3.66,3.5,2.63,2.3,2.3,2.3,1.88,1.97,2.04,1.75,2.12,2.46,2.1,2.04,3.12,3.1,3.12,3.12,2.72,2.02,2.2,2.01,1.82,1.87,1.69,1.69,3.09,2.21,2.09,2.15,2.23,2.29,2.04,2.2,2.37,2.45,2.06,2.31,2.44,2.29
2004-02,4.74,4.52,3.62,3.59,3.59,4.74,4.74,4.13,3.59,3.59,4.68,4.74,4.74,3.86,3.59,3.59,4.56,4.74,4.74,4.45,2.82,2.98,2.72,2.14,2.14,2.31,2.22,4.3,4.74,4.74,4.55,2.68,1.83,2.08,2.15,2.01,2.17,1.69,3.13,3.13,3.13,3.12,2.86,2.92,2.76,2.12,1.56,2.35,2.48,2.17,1.97,2.87,3.13,3.13,3.12,2.05,1.85,1.87,2.07,1.96,1.75,1.81,2.27,2.26,1.79,2.29,3.23,3.26,3.29,3.29,2.91,1.91,1.9,1.81,1.82,1.83,1.6,1.6,3.27,2.24,2.33,1.94,1.78,1.88,3.03,2.67,2.02,1.47,3.12,2.76,2.79,2.58
2004-03,5.14,5.14,5.14,5.14,4.85,5.16,5.14,5.14,5.14,4.67,5.19,5.13,5.07,4.88,4.54,4.37,5.1,5.33,4.88,4.75,4.6,4.27,4.01,4,4.34,3.2,3.49,5.04,5.67,5.83,5.19,4.18,4.07,3.9,3.83,4.09,3.6,3.53,3.32,5.12,5.8,4.78,3.82,3.95,3.86,4.38,3.73,4.02,3.9,3.58,3.51,3.83,3.2,4.52,6.04,3.33,2.84,2.87,3.3,3.56,2.82,2.93,3.51,3.61,3.2,3.39,3.96,3.75,3.77,3.77,3.64,3.06,2.66,2.6,3.11,3.22,3.01,3.01,3.75,2.97,3.11,3.1,3.24,3.52,3.67,3.45,3.14,2.89,3.74,3.56,4.18,4.26
2004-04,4.56,4.93,4.59,4.49,4.49,5.55,4.85,4.62,4.5,4.49,6.03,5.1,4.8,4.9,4.64,4.67,4.91,4.61,5.6,5.75,4.99,4.92,4.6,4,4.02,3.44,3.52,5.73,5.04,5.27,5.47,4.81,4.6,3.93,3.99,4.38,4.37,4.48,4.9,5.95,5.75,4.93,3.98,3.98,4.78,5.05,4.29,4.13,4.65,4.47,4.38,4.6,4.84,4.97,4.61,4.61,3.77,3.46,3.76,4.01,3.53,3.67,4.36,4.3,4.02,4.21,4.61,4.6,4.18,4.1,3.96,3.47,3.34,3.65,3.98,4.02,3.71,3.71,4.09,3.56,3.85,3.2,4.44,4.95,4.22,4.35,4.06,3.8,4.21,4,4.87,4.98
2004-05,6.56,8.05,7.9,5.89,5.87,8.2,8.29,8.43,6.17,5.87,6.71,7.09,8.43,6.87,6.03,5.47,7.29,7.76,8.44,8.23,6.5,5.62,5.29,4.57,4.92,3.69,4.48,7.76,7.78,7.96,7.63,5.72,5.05,4.81,4.81,5.1,5.07,5.29,7.64,8.26,8.34,7.72,7.53,6.75,6.66,6.22,4.73,4.64,4.88,4.77,5.09,4.89,7.66,8.08,8.55,6.9,6.02,5.48,4.74,5.01,4.63,4.12,4.48,4.4,4.48,4.43,6.93,5.87,5.87,5.87,5.39,4.5,4.22,3.94,4.21,4.22,3.84,3.84,5.84,4.52,4.61,3.88,5.37,5.96,6.2,5.34,4.77,4.57,6.4,5.52,5.5,5.56
2004-06,7.16,8.62,8.36,6.34,6.32,8.8,8.91,8.89,6.62,6.32,8.98,8.9,8.85,7.12,6.11,5.64,8.66,9,8.77,8.39,5.86,5.6,5.46,4.5,4.45,3.7,4.67,8.92,9.29,9.38,8.7,6.52,5.77,5.27,5.39,5.5,4.68,4.45,9.24,10.22,10.29,8.84,7.71,7.82,7.63,6.84,5.92,5.36,5.48,5.07,4.94,5.38,9.26,9.92,10.66,7.41,6.84,6.83,6.43,5.56,5.5,4.77,5.1,4.72,4.75,5.53,8.77,7.75,7.77,7.77,7.23,5.17,5.37,5.01,4.36,4.37,4.91,5.56,7.72,5.56,5.58,4.64,5.15,5.43,8.38,6.56,5.4,4.88,8.67,6.9,6.48,6.08
2004-07,6.24,7.47,7.92,7.36,7.36,6.89,7.87,8.07,7.44,7.36,7.24,7.5,8.27,8.01,7.7,7.01,7.56,8.48,9.08,9.01,8.47,7.87,6.42,6.06,6.31,4.5,4.89,8.63,8.97,9.05,8.88,8.05,7.25,6.51,6.71,6.44,5.92,5.92,8.65,8.79,8.9,8.91,8.3,8.25,8.05,8.41,6.45,6.77,6.92,6.3,6.03,5.79,8.68,8.75,8.83,8.05,7.89,7.86,7.01,6.69,6.16,5.78,6.28,5.91,5.25,5.27,8.65,8.56,8.57,8.57,7.99,5.71,5.63,5.31,5.39,5.37,4.67,4.66,8.52,6.22,6.52,4.93,6.39,6.97,8.05,7.04,6.3,5.9,8.22,7.46,8.12,8.5
2004-08,6.03,7.67,7.9,6.99,6.98,7.7,8.09,8.14,7.11,6.98,7.7,7.79,8,7.2,6.93,6.31,6.84,7.28,7.39,7.35,6.87,6.6,6.17,5.87,5.75,4.63,4.98,7.58,7.27,7.17,7.11,6.53,6.58,6.33,6.43,6.45,5.67,5.4,6.5,7.42,7.9,7.59,6.36,6.41,6.55,6.29,6.73,6.57,6.47,6.44,6.47,6.02,6.4,7.1,7.91,6.16,5.83,5.86,6.02,5.78,6.73,6.22,6.2,6.41,5.68,5.59,7.39,7.85,7.89,7.89,7.3,5.15,5.53,5.7,5.91,5.82,4.73,4.72,7.87,6.24,6.72,5.28,6.02,6.21,8.66,7.31,6.67,6.47,8.81,7.54,8.03,8.24
2004-09,5.99,7.31,7.52,6.84,6.83,7.17,7.59,7.7,6.93,6.83,6.92,7.11,7.42,6.77,6.83,6.45,6.52,6.34,6.22,6.29,6.79,6.64,5.58,5.22,5.93,4.36,5.01,6.31,6.15,6.11,6.05,5.85,5.95,5.37,5.84,6.11,5.38,5.21,4.38,6.23,6.96,6.09,5.52,5.43,5.27,6.28,5.46,5.83,5.88,5.64,5.65,5.92,4.2,5.59,7.21,5.48,5.19,5.19,4.82,5,4.69,4.95,5.08,5.42,4.76,5.13,5.63,6.06,6.08,6.08,5.69,4.52,4.46,4.45,4.7,4.75,4.24,4.23,6.05,4.72,4.77,4.12,4.63,4.72,4.44,4.68,4.92,5.01,4.34,4.47,5.76,6.34
2004-10,4.03,4.61,4.22,3.22,3.21,5.07,4.57,4.49,3.36,3.21,4.59,4.45,4.51,3.81,3.51,4.4,4.22,4.11,4.49,4.54,4.09,4.94,4.37,3.6,4.4,3.06,3.58,4.66,3.76,3.53,3.81,3.66,4.12,3.94,4.41,4.28,3.43,3.26,2.57,4,4.75,4.61,4.01,3.66,3.12,3.78,3.84,4.29,4.13,3.56,3.38,4.05,2.41,3.5,4.77,4.21,4.1,4.04,3.11,3.69,4.37,3.13,4.03,3.9,3.66,3.81,3.24,3.31,3.29,3.29,3.23,3.71,3.58,3.33,3.53,3.55,3.23,3.23,3.33,4.48,4.61,3.44,3.87,3.96,4.9,4.76,4.39,4.12,4.83,4.72,5.24,5.42
2004-11,2.67,2.87,2.89,2.92,3.11,2.72,2.86,2.89,2.9,3.09,2.72,2.82,2.89,2.89,3.06,3.11,2.67,2.92,2.91,2.89,2.91,2.94,2.52,2.24,2.27,3.16,2.59,2.47,3.08,3.12,2.97,2.75,2.63,2.78,2.79,2.34,2.16,2.13,2.22,2.22,2.22,2.85,3.43,3.18,2.61,3.44,2.5,2.77,2.53,2.09,1.99,3.54,2.22,2.22,2.23,3.38,3.6,3.55,2.57,3.04,2.75,2.31,2.09,2.47,2.15,2.81,2.74,3.07,3.06,3.06,2.91,3.12,2.88,2.58,2.12,2.09,1.89,1.89,3.06,2.93,2.94,2.65,2.59,2.43,3.37,3.61,3.69,3.56,3.38,3.42,4.12,3.83
2004-12,2.84,2.84,2.84,2.84,2.84,2.84,2.84,2.84,2.84,2.72,2.72,3.1,3.1,3.04,2.47,2.22,2.06,2.5,3.09,3.2,2.81,2.35,2.37,2.7,2.79,1.9,1.81,2.02,2.09,2.11,2.51,2.77,2.5,2.48,2.61,2.49,1.97,1.84,1.84,1.84,1.84,1.99,2.12,2.21,2.54,2.87,2.55,2.73,2.68,2.32,2.05,2.25,1.84,1.84,1.84,2.09,2.14,2.14,1.8,2.28,2.22,2.02,2.58,2.56,1.79,1.46,2.56,2.99,3.01,3.01,2.63,2.31,1.83,1.96,2.21,2.16,1.81,1.81,2.99,2.51,2.32,2.2,2.32,2.07,2.72,2.69,2.64,2.67,2.73,2.38,2.73,2.85
2005-01,2.65,2.65,2.65,2.58,2.08,2.65,2.65,2.65,2.63,2.14,2.79,2.64,2.65,2.65,2.22,2.08,2.89,2.46,2.61,2.65,2.36,2.01,2.12,2.11,2.18,1.91,1.9,2.7,2.29,2.22,2.37,2.26,2,2.25,2.11,1.96,1.94,1.92,2.38,1.71,1.87,2.13,2.1,2.13,2.3,3.08,2.5,2.42,2.55,2.38,1.98,1.97,2.12,2,2.13,2.13,2.07,2.04,1.93,2.28,2.42,1.82,2.11,2.15,1.88,1.78,2.13,2.14,2.42,2.47,2.31,2.17,2.05,1.86,2.1,2.11,1.8,1.8,2.46,2.19,2.25,2.3,2.54,2.8,2.63,2.6,2.42,2.23,2.74,2.72,3.03,3.2
2005-02,2.16,2.16,2.16,2.22,2.66,2.16,2.16,2.16,2.18,2.61,2.22,2.16,2.16,2.16,2.54,2.66,2.26,2.06,2.14,2.16,2.27,2.4,2.54,2.3,2.08,1.56,1.45,2.24,1.98,1.94,2.04,2.17,2.14,2.25,2.06,2.02,1.74,1.63,2.58,2.38,2.38,2.11,1.87,1.8,1.66,2.17,2.22,1.99,2.87,2.82,1.88,1.83,2.44,2.38,2.38,1.93,1.84,1.84,1.69,2.38,2.19,1.76,2.07,2.24,1.86,1.67,2.08,1.89,1.89,1.89,1.88,2.31,1.64,1.63,1.7,1.74,1.5,1.5,1.89,1.84,1.93,1.92,1.94,1.98,1.81,2.08,2.32,2.39,1.81,2.12,2.44,2.59
2005-03,5.03,4.74,4.73,4.73,4.73,4.95,4.73,4.73,4.73,4.65,4.78,4.76,4.8,4.75,4.36,4.35,4.87,4.83,5.02,5,4.39,4.3,4.04,3.9,4.19,2.96,2.7,4.86,4.61,4.55,4.66,4.38,4.34,3.71,3.79,3.89,3.4,3.31,5.81,5.46,4.81,4.28,4.51,4.53,4.31,4.91,4.29,4.23,4.17,3.8,4.12,4.21,5.79,4.79,4.06,4.06,4.52,4.66,4.04,4.49,3.74,3.72,3.61,3.6,3.27,3.28,4.06,4.07,4.68,4.8,4.57,4.41,3.85,3.52,3.67,3.74,3.56,3.08,4.78,4.17,4.13,3.58,3.44,3.59,4.76,4.51,3.84,3.42,4.87,4.68,4.84,4.75
2005-04,5.99,5.11,4.98,5.17,5.27,6.27,5.21,4.98,5.3,5.54,6.2,5.83,5.37,5.87,5.69,5.31,6.89,6.19,6.85,6.86,6.09,5.75,5.34,4.49,4.49,3.78,4.72,7.28,6.23,6.03,6.36,6.18,5.57,4.95,4.92,4.81,4.11,4.23,7.59,8.01,7.16,5.99,5.26,5.5,6.6,6.74,5.21,5.09,5.09,4.66,4.45,4.44,7.56,6.59,5.56,5.56,4.91,4.72,5.55,5.33,5.23,4.56,4.84,4.54,4.35,4.3,5.56,5.59,7.08,7.37,6.81,5,4.48,4.34,4.69,4.76,4.48,4.28,7.32,5.24,5.14,4.53,4.42,4.41,6.62,5.92,5.41,5.12,6.83,5.86,6.45,6.56
2005-05,5.03,4.87,4.8,4.67,4.34,5.52,4.93,4.8,4.57,4.41,5.52,5.32,4.94,4.83,4.62,4.77,5.57,5.09,5.36,5.44,5.07,5.05,4.81,4.28,4.37,4.72,4.47,6.67,4.59,4.2,4.74,4.91,4.67,4.29,4.66,4.87,4.78,4.69,7.32,7.86,6.69,5.11,4.09,4.13,5.23,5.48,4.69,4.44,5.06,4.97,4.88,4.85,7.28,5.96,4.57,4.57,3.86,3.64,4.22,4.9,4.98,4.49,5.05,5.18,4.78,4.62,4.57,4.6,5.93,6.19,5.64,4.82,4.28,4.19,4.56,4.63,4.3,4.29,6.18,5.34,5.42,4.8,4.97,5.34,7.01,5.89,5.05,4.6,7.24,6.23,5.84,5.47
2005-06,7.37,8.6,8.57,8.08,7,8.89,8.69,8.57,7.74,7.14,9.16,9.02,8.62,7.96,7.51,7.89,9.32,8.82,8.77,8.78,8.26,8.41,7.64,6.42,6.86,5.21,5.67,10.93,8.59,8.13,8.09,6.93,7.18,6.57,6.61,6.75,5.8,5.57,10.39,11.56,9.97,7.55,7.4,7.67,7.69,7.2,6.86,6.96,6.87,6.51,6.15,6.09,10.38,8.51,6.4,6.4,7.08,7.32,6.87,6.92,7.41,6.41,6.63,6.58,5.91,5.47,6.4,6.43,7.97,8.27,7.8,6.76,6.36,6.01,6.09,6.03,4.96,4.95,8.25,7.18,7.2,5.82,6.45,7.03,9.39,7.93,6.52,5.79,9.7,7.86,7.72,7.56
2005-07,7.92,9.23,9.22,8.95,8.18,9.26,9.27,9.22,8.76,8.43,9.59,9.43,9.25,8.8,8.41,8.11,8.69,9.43,9.4,9.28,8.42,8.45,7.1,5.88,6.57,5.32,5.65,9.67,9.6,9.59,9.15,7.67,7.59,7.15,6.83,7.45,5.97,5.47,9.82,9.51,7.85,6.03,6.96,8.06,8.58,8.66,7.3,7.98,7.39,7.28,5.81,5.56,9.8,7.05,4.79,4.79,6.3,6.94,7.51,7.9,7.2,6.36,6.43,7.62,6.31,5.2,4.79,4.88,8.96,9.74,9.09,7.64,6.63,5.86,5.62,6.03,6.81,5.3,9.69,7.58,7.39,5.96,6.12,6.62,8.64,7.72,6.36,5.52,8.83,7.88,7.58,7.39
2005-08,6.2,6.84,6.83,6.78,6.63,6.93,6.84,6.83,6.75,6.69,6.74,6.72,6.96,6.98,6.86,7.16,6.6,6.74,7.4,7.44,7.19,7.16,7.04,6.46,7.12,5.79,6.52,6.06,6.74,6.75,6.81,6.11,6.3,6.21,6.97,8.18,6.44,5.85,7.14,6.3,5.36,3.87,6.36,7,6.35,6.5,6.17,6.5,6.95,6.55,5.5,5.39,4.74,4.62,3.85,3.85,6.48,7.44,6.35,6.8,6.79,6.14,5.8,5.94,5.53,5.17,3.85,3.9,6.32,6.78,6.63,6.74,6.46,6.01,5.6,5.59,5,4.99,6.81,7.25,7.58,6.52,6.01,6.36,8.8,8.03,6.66,5.71,8.88,7.58,8.5,8.69
2005-09,5.9,7.72,7.8,7.48,6.66,6.95,7.65,7.8,7.26,6.87,6.77,6.94,7.79,7.23,6.79,6.41,7.03,7.18,7.81,7.65,6.7,7.01,6.93,6.31,6.89,5.71,5.39,7.07,7.97,8.15,7.83,7.23,6.89,6.94,7.01,7.73,6.31,5.54,7.01,7.15,6.04,4.76,5.72,7.41,6.77,7.23,5.88,6.81,6.98,6.13,5.52,5.49,4.92,4.99,4,4,4.69,6.8,6.12,6.88,6.4,5.91,6.1,5.45,5.24,5.22,4,4.07,7.35,7.98,7.46,6.85,5.93,5.26,5.45,5.46,4.99,4.99,7.95,6.84,6.79,5.68,5.09,5.36,7.48,6.61,5.61,5.09,7.48,6.3,6.6,6.73
2005-10,3.97,4.74,4.77,4.67,4.41,4.43,4.71,4.77,4.6,4.47,4.25,4.34,4.84,4.69,4.46,4.54,4.05,4.27,5.05,5.07,4.47,5.18,5.19,4.58,4.96,2.75,2.78,4.43,4.27,4.25,4.66,5.31,5.37,5.32,5.47,5.24,3.6,2.96,4.74,4.73,4.09,3.38,4.19,4.5,4.47,5.34,4.53,5.36,5.35,4.93,3.81,3.64,3.43,3.56,3.02,3.02,4.28,4.72,3.91,4.79,4.43,4.02,4.32,4.98,4.78,4.34,3.02,3.05,4.43,4.7,4.46,4.75,4.26,4.19,4.74,4.91,4.92,4.92,4.71,4.8,4.9,4.13,4.44,4.52,5.53,5.18,5.03,4.99,5.53,4.68,5.87,5.99
2005-11,3.86,4.6,4.63,4.63,4.63,4.05,4.63,4.63,4.63,4.61,4.1,4.69,4.83,5.09,5.02,4.52,4.17,4.72,5.48,5.58,5.26,4.72,4.39,4.06,4.33,2.64,2.43,4,4.2,4.22,4.79,5.21,4.41,4.5,4.52,4.37,3.18,2.61,3.76,3.75,3.66,3.49,3.69,3.85,4.18,5.18,4.02,4.41,4.47,3.76,2.77,2.66,3.73,3.61,3.49,3.49,3.54,3.55,3.3,4.13,3.85,3.41,3.36,3.49,3.27,2.97,3.49,3.5,3.8,3.86,3.69,4.02,3.71,3.41,3.21,3.28,3.22,3.22,3.86,3.92,4.04,3.93,3.27,3.35,4.66,4.36,3.8,3.38,4.7,4.12,4.72,4.82
2005-12,4.04,4.04,4.04,3.91,2.99,4.04,4.04,4.04,4,3.1,3.69,4.03,4.04,4.04,3.25,2.99,3.05,3.41,3.94,4.04,3.67,3.02,3.01,3.15,3.05,2.27,2.25,3.04,3.05,3.07,3.59,4.53,3.3,3.07,3.02,2.85,2.47,2.26,3.03,3.03,3.03,2.93,2.81,2.83,3.1,4.39,3.3,3,3.17,2.67,2.29,2.27,3.03,3.03,3.03,2.74,2.68,2.68,2.65,2.96,2.59,2.66,2.72,2.54,1.85,1.56,2.92,2.86,2.86,2.86,2.79,2.83,2.49,2.28,2.25,2.3,2.24,1.47,2.85,2.68,2.67,2.73,2.25,2.22,2.58,2.73,2.68,2.55,2.57,2.63,2.96,3.12
2006-01,5.88,5.88,5.88,5.85,4.72,5.69,5.88,5.88,5.88,4.84,5.37,5.85,5.88,5.88,5.11,4.54,5.28,5.7,5.88,5.88,5.26,4.51,4.3,4.3,4.01,3.06,2.62,5.28,5.52,5.75,5.52,5.37,4.38,4.08,4.02,2.96,3.14,2.92,4.03,4.03,4.14,4.79,3.87,3.84,4.2,5.15,3.7,3.74,4.83,3.63,2.96,2.81,4.03,4.03,4.03,3.7,3.64,3.65,3.91,3.64,3.2,3.4,3.78,3.4,3.1,2.94,3.77,3.62,3.62,3.62,3.69,3.56,3.26,2.97,2.85,2.96,3.06,3.06,3.62,3.5,3.58,3.51,2.61,2.64,4,3.82,3.23,2.72,4.08,3.88,3.87,3.87
2006-02,4.19,4.19,4.19,4.19,4.19,4.19,4.19,4.19,4.19,4.19,4.21,4.19,4.19,4.19,4.13,3.03,4.28,4.19,4.19,4.19,3.76,3,2.89,2.98,2.89,2.15,2.15,4.44,4.16,4.15,4.03,3.75,3.16,3.05,2.63,2.3,2.33,2.3,2.5,4,4.76,4.27,3.76,3.69,3.63,3.75,2.96,3.04,3.28,2.79,2.25,2.78,2.5,3.36,4.55,3.91,3.76,3.72,3.04,3.11,2.66,2.38,2.54,3.01,2.71,2.71,3.08,3.74,3.74,3.74,3.48,3.17,2.8,2.36,2.27,2.41,2.45,2.45,3.73,3.14,3.18,2.94,2.23,2.28,3.6,3.55,3.26,2.91,3.68,3.57,4.21,4.44
2006-03,5.62,5.62,5.62,5.62,5.62,5.91,5.62,5.62,5.62,5.66,6.5,5.69,5.21,5.22,5.16,6.2,6.87,5.52,4.89,4.9,5.03,5.43,5.63,4.47,4.7,3.91,3.52,7.02,5.96,4.93,5.3,5.86,4.81,4.71,4.88,4.17,3.96,3.75,4.1,6.71,7.98,7.07,5.94,5.59,5.48,6.27,4.72,4.21,4.65,4.11,3.86,3.59,3.98,5.54,7.7,6.11,5.76,5.72,4.86,5.03,4.16,3.86,3.96,3.83,3.77,3.56,4.9,5.93,5.93,5.93,5.56,4.96,4.28,3.63,3.6,3.69,3.8,3.59,5.92,5.17,5.25,4.59,3.61,3.82,6.07,5.63,4.46,3.5,6.22,5.65,5.79,5.77
2006-04,8.45,6.97,6.84,6.73,6.53,8.49,7.06,6.84,6.66,6.53,7.77,7.35,6.44,6.47,6.48,6.71,7.74,6.97,6.12,6.14,6.37,6.7,6.23,4.89,5.21,4.12,4.5,8.62,7.35,6.17,6.57,7.21,6.17,5.6,5.26,5.02,4.89,5.14,7.45,8.66,9.24,8.47,6.77,6.63,6.91,7.38,5.74,5.48,5.27,4.93,4.92,4.97,7.38,8.11,9.11,6.89,6.46,6.41,5.78,5.84,6,5.17,5.07,5.2,4.87,4.6,7.18,6.46,6.46,6.1,5.28,5.7,6.2,5.23,4.84,5.01,4.95,4.61,6.94,6.43,6.5,4.77,4.43,4.75,7.82,6.88,5.17,3.93,8.04,6.85,6.59,6.55
2006-05,6.95,8.65,8.71,7.84,6.05,8.09,8.65,8.71,7.25,6.2,8.31,7.86,7.8,6.86,6.48,6.1,7.4,7.24,7.22,7.2,7.05,6.66,6.31,5.45,5.52,4.39,4.91,8.97,7.74,7.34,7.53,7.2,6.53,5.78,5.78,5.34,5.36,5.6,8.1,8.93,8.54,7.58,6.89,7.55,8.72,7.4,6.11,5.85,5.84,5.74,5.48,5.26,8.06,7.85,7.24,7.24,6.72,6.54,7.19,6.27,6.19,5.61,5.67,5.68,5.04,4.71,7.24,7.24,7.04,6.68,6.7,6.29,6.88,5.66,5.68,5.65,4.77,4.76,7.88,7.64,7.81,6.64,5.54,6.18,8.45,7.58,5.48,3.99,8.49,7.05,6.82,6.57
2006-06,8.51,11.1,11.16,10.16,8.02,10.42,11.07,11.16,9.48,8.27,10.46,9.7,9.95,9.07,8.48,8.45,9.49,8.91,9.58,9.66,8.95,8.91,7.94,6.64,7.1,4.84,5.25,10.51,9.71,9.71,9.44,8.75,8.29,7.43,7.79,6.95,5.97,5.98,9.45,9.87,9.69,9.22,9.58,9.52,9.29,8.57,7.74,7.53,7.15,6.42,6.18,5.89,9.41,9.27,8.91,8.91,9.45,9.59,8.35,7.66,7.13,6.4,6.41,6.44,5.74,5.4,8.91,8.93,9.58,9.7,9.15,7.88,8.1,6.53,5.6,5.75,5.44,5.44,9.66,8.16,7.9,6.22,5.24,5.66,9.38,7.81,5.75,4.36,9.65,8.05,7.43,7.27
2006-07,7.18,9.92,10.11,9.94,9.11,8.19,9.85,10.11,9.83,9.63,9.13,9.07,9.63,9.98,9.84,10.03,8.42,8.67,10.3,10.63,10.26,10.2,9.4,8.49,8.86,6.88,6.72,8.19,9.21,10.57,9.93,8.71,8.8,8,8.43,7.65,6.9,7,9.09,9.34,9,8.58,8.64,9.01,9.3,8.23,8.02,8.17,7.57,5.88,5.35,6.12,8.92,8.87,8.67,8.67,8.71,8.74,9.03,8.22,7.55,6.73,6.33,5.35,4.88,4.8,8.67,8.69,9.66,9.84,9.63,8.13,7.29,5.82,4.74,4.8,4.47,4.47,9.77,7.45,7.01,5.59,5.07,5.43,8.97,6.95,5.63,4.94,9.33,7.24,7.56,7.57
2006-08,5.65,7.5,7.59,7.94,8.44,6.62,7.6,7.61,8.18,8.61,6.82,7.23,7.84,8.51,9.1,9.25,6.83,7.09,8.2,8.61,9.93,9.89,9.83,8.34,9.07,5.57,6.76,6.99,7.69,8.5,8.53,8.63,9.29,8.83,8.91,9.39,6.86,6.48,3.82,5.59,6.77,7.09,6.73,7.67,8.94,8.36,8.33,9.06,9.05,7.85,5.9,6.06,3.67,5.75,7.09,7.09,6.8,6.73,8.06,8.35,8.08,7.92,7.31,7,5.79,5.26,7.09,7.14,9.16,9.54,9.4,8.23,7.37,6.34,5.77,5.8,4.78,4.77,9.51,8.18,8.16,6.76,5.69,6.02,9.78,8.31,6.97,6.19,10.01,8.03,7.96,7.85
2006-09,4.81,5.26,5.22,5.6,6.04,5.62,5.25,5.21,5.87,6.33,5.98,5.21,5.13,6.1,6.51,5.9,5.08,4.67,6.04,6.41,6.83,6.44,6.18,5.58,6.55,4.58,5.1,5.56,5.56,6.28,6.18,6.34,6.01,5.9,6.29,6.85,5.5,5.48,5.87,5.59,5.17,4.84,5.59,5.61,5.38,6.1,5.4,6.32,6.75,5.99,5.02,5.17,5.84,5.21,4.67,4.67,5.53,5.87,5.59,5.31,5.25,5.44,5.35,5.16,4.52,4.22,4.67,4.7,5.8,6,5.92,5.56,5.97,4.99,5.25,5.23,4.54,4.54,5.99,5.73,5.55,4.11,4.62,4.81,6.18,5.3,4.91,4.81,6.37,5.84,6.27,6.28
2006-10,4.14,5.66,5.71,5.75,5.62,5.12,5.63,5.71,5.79,5.84,5.35,5.32,5.31,5.64,5.89,5.01,5.01,5.11,4.99,5.09,5.94,5.34,4.9,4.71,4.93,3.32,3.22,5.54,5.25,4.97,5.1,5.61,5.28,4.9,5.37,5.34,3.89,3.58,4.39,5.06,5.43,5.4,4.82,4.7,4.79,5.54,4.84,5.44,5.16,4.51,3.73,3.73,4.34,4.75,5.32,4.81,4.73,4.74,4.82,4.84,4.48,4.16,4.35,4.03,5.21,5.93,4.97,5.73,5.73,5.73,5.62,4.98,4.89,3.87,3.23,3.36,3.99,5.81,5.68,4.66,4.38,3.43,3.59,3.74,3.99,4.07,4.1,4.08,3.91,3.55,4.9,5.31
2006-11,4.9,4.9,4.9,4.9,4.9,4.89,4.9,4.9,4.9,4.64,4.02,4.66,4.73,4.72,4.07,3.62,4.02,4.4,4.6,4.6,4.24,3.81,3.15,3.17,3.52,2.64,2.32,4.78,4.66,4.57,4.55,4.52,3.76,3.47,3.16,3.21,2.73,2.45,3.34,4.36,4.89,4.65,3.82,3.88,4.2,4.5,3.36,3.45,3.61,3.31,2.53,2.38,3.3,3.91,4.75,3.85,3.7,3.72,4.01,3.7,3.46,3.13,2.99,3.39,2.89,2.52,4.14,5.14,5.14,5.14,4.95,3.87,3.83,3.15,3.18,3.21,2.99,2.99,5.1,4.18,4.03,3.39,2.94,2.92,3.93,4.01,3.9,3.77,3.87,3.37,4.33,4.54
2006-12,2.96,2.77,2.19,2.19,2.19,2.96,2.95,2.31,2.19,2.19,2.96,2.96,2.68,2.2,2.19,2.19,2.96,2.96,2.98,2.98,2.38,2.32,2.52,2.79,2.29,2.84,2.59,2.96,2.92,2.67,3.08,3.08,2.54,2.34,2.39,2.22,2.03,1.35,1.72,1.72,1.83,2.64,2.58,2.57,2.69,3.12,2.27,2.84,2.53,2.17,1.69,1.48,1.72,1.72,1.73,2.4,2.53,2.54,2.63,2.54,2.19,2.08,1.99,1.87,1.73,1.64,2.59,3.09,3.09,3.09,3.02,2.53,2.1,1.81,1.8,1.95,2.11,2.11,3.07,2.33,2.32,2.69,1.91,1.85,2.42,2.47,2.78,2.97,2.45,2.34,2.91,2.98
2007-01,1.96,2.37,2.37,2.37,2.37,1.91,2.37,2.37,2.37,2.36,1.62,2.13,2.37,2.37,2.35,1.48,1.49,1.47,2.37,2.37,2.36,1.62,1.71,2.78,2.81,2.62,1.58,1.56,1.26,1.81,2.37,2.37,1.8,1.69,2.65,2.81,2.04,1.55,1.87,1.87,1.87,1.57,1.26,1.29,1.92,2.32,1.81,2.4,3.67,2.51,1.77,2.74,1.87,1.87,1.87,1.36,1.29,1.31,1.42,2.05,1.82,1.63,2.05,1.98,1.7,2.23,2.04,2.13,2.13,2.13,1.99,2.01,1.75,1.68,1.41,1.55,1.8,1.8,2.11,1.62,1.61,1.86,1.33,1.34,1.77,1.68,1.65,1.61,1.85,2.11,2,1.8
2007-02,3.87,3.87,3.33,3.41,3.25,3.87,3.84,3.2,3.7,3.27,3.87,3.84,3.19,3.8,3.51,3.25,3.87,3.69,3.19,3.79,3.6,2.94,3.21,2.69,2.73,2.66,2.31,3.87,3.62,3.19,3.6,3.76,3.06,2.91,3.11,3.02,2.65,2.55,2.74,3.23,3.53,3.65,2.99,3,3.23,3.6,2.74,2.76,2.88,2.54,2.29,2.38,2.69,2.99,3.42,2.95,2.86,2.86,2.83,2.77,2.18,2.79,2.33,2.29,1.96,2.02,2.87,3.07,3.07,3.07,2.98,2.74,2.28,1.97,1.9,1.9,1.65,1.65,3.05,2.45,2.4,2.27,2.05,2.09,2.55,2.61,2.4,2.11,2.59,2.83,3.16,2.97
2007-03,5.03,5.03,4.35,3.92,3.92,5.03,5,4,3.92,3.92,4.87,4.47,3.92,3.92,3.92,3.92,4.65,4.62,4.02,3.92,3.92,3.85,4.6,3.93,4.08,4,3.55,5.29,4.99,4.27,4.36,4.3,3.69,3.58,3.76,4.14,4.02,3.99,4.66,5.92,6.5,5.48,4.69,4.45,4.29,4.28,3.6,3.65,3.7,3.83,3.81,3.94,4.56,5.33,6.42,4.89,4.59,4.55,3.87,3.61,3.04,3.1,3.57,3.92,3.72,3.75,4.56,4.53,4.53,4.53,4.28,3.65,3.25,2.9,3.44,3.61,3.69,3.69,4.5,3.55,3.46,2.89,3.31,3.54,4.29,4.07,3.7,3.36,4.47,4.34,5.08,5.09
2007-04,6.75,6.75,4.99,4.52,4.52,6.73,6.5,4.95,4.52,4.52,6.17,5.91,4.82,4.5,4.47,4.11,6.4,6.27,4.72,4.39,4.39,4.31,4.23,3.69,3.89,3.43,3.81,7.28,6.57,5.35,5.37,5.14,4.14,4.03,4.45,4.12,3.71,3.84,6.2,6.98,7.4,6.91,4.84,4.84,5.34,5.22,3.96,3.92,4.2,3.97,3.77,4.29,6.13,6.61,7.27,4.9,4.48,4.5,4.83,4.57,3.8,3.53,3.78,3.93,3.77,3.97,5.74,5.25,5.25,5.25,5.12,4.55,4.08,3.43,3.47,3.64,3.78,3.78,5.21,4.03,3.84,3.66,3.27,3.43,4.9,4.27,3.84,3.49,5.15,4.88,5.29,5.14
2007-05,4.58,5.86,5.87,4.59,4.09,5.82,5.97,5.39,4,4.06,5.7,4.99,4.35,3.6,3.58,3.9,5.21,4.35,4.35,3.61,3.55,3.58,4.06,3.83,3.88,3.8,4.69,6.15,4.89,4.09,4.45,4.46,3.62,3.88,4.12,4.29,4.11,4.41,7.16,6.92,5.81,4.69,4.45,4.16,4.06,4.52,3.68,4.62,4.15,4.4,4.37,4.73,7.16,5.72,4.35,4.35,4.29,4.25,4.07,4.21,3.76,3.59,4,4.82,4.56,4.53,4.35,4.34,3.97,3.9,3.95,4.51,4.87,3.65,3.71,4.04,4.46,4.46,3.94,4.69,4.67,3.96,4.08,4.31,5.89,5.05,5.03,5.12,6.14,5.14,6.07,5.92
2007-06,6.71,8.17,5.82,5.18,5.31,8.1,7.98,5.78,5.18,5.18,7.22,6.13,5.35,5.2,5.21,5.56,6.26,5.39,5.39,5.28,5.27,5.23,5.87,5.05,5.22,4.29,4.5,8.28,6.37,6.3,6.55,6.24,5.37,5.29,5.29,5.16,4.86,4.8,8.66,9.41,8,5.93,5.73,6,6.6,6.41,5.55,5.41,5.32,5.23,5.15,5.33,8.66,7.2,5.39,5.39,5.48,5.5,5.37,5.41,5.19,4.69,5.12,5.22,5,5.16,5.39,5.39,5.27,5.25,5.2,5.25,4.92,4.51,4.23,4.42,5.03,5.37,5.28,5.24,5.4,4.91,5.73,6.25,7.27,6.3,6.11,6.06,7.67,7.1,7.39,7.52
2007-07,7.04,8.43,8.5,7.7,6.45,7.83,8.39,8.5,7.19,6.47,7.55,7.32,8.03,7,6.27,6.17,6.93,6.5,6.5,5.95,5.9,5.78,5.78,4.74,5.48,3.68,5.38,7.49,6.61,5.39,5.25,5.47,4.9,5.26,5.1,5.33,4.45,4.79,7.56,7.86,7.41,6.69,5.72,5.15,5.02,5.24,4.58,5.36,5.41,4.98,4.74,5.33,7.52,7.09,6.5,6.5,5.61,5.24,4.7,4.55,4.28,4.17,4.87,4.93,4.5,4.74,6.5,6.47,5.42,5.23,5.03,4.75,4.94,3.95,3.64,3.89,4.11,4.11,5.22,4.79,4.64,3.63,3.68,4.1,5.5,5.16,4.73,4.56,5.73,5.61,6.46,6.79
2007-08,7.45,8.73,8.66,8.27,7.48,9.26,8.73,8.66,8.03,7.68,8.51,8.39,8.66,8.13,8.06,7.52,8.05,7.98,8.15,8.76,8.76,8.37,7.09,5.99,5.94,5.44,6.3,7.83,7.45,6.81,7.26,7.66,5.83,6.49,6.56,6.71,5.86,5.8,7.87,8.08,8.18,7.7,6.54,6.54,6.85,7.19,5.3,6.77,6.38,5.87,5.7,5.7,7.83,7.97,8.16,6.61,6.35,6.35,6.29,6.11,5.68,5.71,5.78,5.76,5.29,5.31,7.42,6.92,6.92,6.92,6.72,6.13,5.9,5.03,4.84,5.02,4.94,4.94,6.89,5.84,5.63,4.67,4.96,5.27,6.88,5.8,5.35,5.23,7.12,5.94,5.91,6.05
2007-09,5.5,6.61,6.52,6.29,5.95,7.29,6.63,6.52,6.15,5.95,6.39,5.88,6.26,6.1,5.9,5.41,6.19,5.41,5.41,5.79,5.82,5.66,4.62,4.42,4.64,3.48,3.75,6.59,5.71,5,5.21,5.48,4.88,4.77,5.06,5.01,5.29,4.58,5.98,6.53,6.26,5.63,5.21,4.93,4.9,5.24,4.62,5.14,5.39,6.27,6.58,5.61,5.95,5.8,5.41,5.41,5.12,4.99,4.48,5.02,4.35,4.37,5.03,5,4.4,4.79,5.41,5.41,5.54,5.56,5.26,5.14,4.56,4.02,4.21,4.39,4.57,5.07,5.53,4.71,4.56,3.97,4.34,4.53,4.93,4.6,4.87,5.14,4.94,4.1,4.91,4.37
2007-10,6.31,8.25,8.37,7.56,6.18,7.05,8.21,8.37,7.04,6.31,6.71,7.39,8.37,7,6.46,5.9,6.62,6.6,6.96,6.74,6.73,6.4,5.08,4.06,3.33,2.89,2.79,6.01,5.83,5.54,5.95,6.23,5.03,4.76,4.74,4.95,3.85,3.64,5.85,6.17,6.33,5.98,5.39,5.4,5.58,5.91,4.56,5.06,4.91,4.38,4.05,4.82,5.81,6.02,6.3,5.45,5.29,5.27,5.06,5.48,4.54,4.02,4.05,4.49,4.24,4.46,5.69,5.29,5.29,5.16,5.05,5.41,4.47,4.11,4.12,4.24,4.32,4.63,5.28,5,5.11,4.05,4.17,4.19,5.73,5.2,5.33,5.55,5.75,4.7,5.66,5.38
2007-11,3,3.51,3.51,3.76,3.82,3.47,3.51,3.66,4.13,3.84,3.51,3.51,3.97,4.21,3.98,3.82,3.68,3.95,4.21,4.21,3.93,3.46,3.79,3.96,3.11,2.39,2.17,4.5,4.18,3.67,4.21,4.12,3.35,3.41,3.44,3.11,3.2,2.8,2.78,3.37,3.78,4.11,3.16,2.98,3.73,4.09,3.27,3.68,3.63,3.77,3.68,3.11,2.7,3.08,3.61,3.06,2.95,2.98,3.54,3.12,2.76,2.97,3.15,3.23,2.76,2.79,2.77,2.95,2.95,3.2,3.61,2.83,2.19,2.4,2.56,2.71,2.9,2.9,3.08,2.75,2.86,2.1,2.81,2.88,3.51,3.36,3.49,3.54,3.59,3.54,4.33,4.06
2007-12,3.25,3.25,3.21,2.89,2.39,3.25,3.25,3.2,3.76,2.46,3.25,3.25,3.2,4.04,3.18,2.39,3.25,3.24,3.2,4.03,3.57,2.24,2.39,2.26,2.02,1.67,1.66,3.25,3.12,3.2,3.76,3.92,2.37,2.29,2.42,2.28,1.92,1.72,3.25,3.25,3.25,3.08,2.22,2.54,3.25,3.77,2.33,3.03,2.72,2.43,1.96,2.22,3.25,3.25,3.13,2.18,2.1,2.12,2.79,2.76,2.21,2.03,2.21,2.42,2.29,2.32,3.45,3.45,3.45,3.45,3.45,2.38,1.98,2.06,1.96,2.2,2.29,2.29,3.43,2.54,2.63,2.3,1.91,1.78,3.14,3.26,3.26,3.12,3.23,3.37,4.22,4.18
2008-01,1.65,1.65,1.65,2.79,3.1,1.65,1.65,1.65,2.15,3.1,1.68,1.65,1.65,1.76,3.02,3.1,1.73,1.65,1.65,1.65,2.53,2.96,2.76,2.47,2.34,2.25,2.16,1.84,1.65,1.65,1.94,3.1,2.67,2.48,2.64,2.42,2.02,1.74,2.63,2.42,2.32,2.21,2.14,2.15,2.54,3.09,2.52,2.5,2.5,2.37,2.25,2.11,2.63,2.51,2.35,2.43,2.47,2.5,2.81,2.57,2.08,2.14,2.36,2.35,2,1.92,2.93,3.3,3.3,3.3,3.18,2.41,2.05,1.96,2.08,2.12,2,2,3.28,2.49,2.46,1.94,1.9,1.91,2.7,2.63,2.47,2.31,2.72,2.73,2.9,2.73
2008-02,5.68,5.13,3.44,3.44,3.44,5.68,5.64,3.8,3.44,3.44,5.68,5.68,4.62,3.49,3.44,3.44,5.68,5.68,5.16,4.32,3.44,3.4,3.12,3.03,2.79,2.29,2.11,5.68,5.65,4.68,4.55,4.22,3.47,3,2.79,3.28,2.74,2.58,3.77,4.17,4.51,5.16,4.23,3.95,4.4,4.7,3.45,3.36,3.5,3.3,2.43,2.35,3.71,3.97,4.33,3.99,3.93,3.94,3.87,3.82,3,2.96,2.83,3.18,2.73,2.39,4.1,4.55,4.55,4.55,4.34,3.55,2.85,2.6,2.46,2.53,2.37,2.37,4.52,3.46,3.43,2.82,2.36,2.38,4.19,3.89,3.27,2.71,4.32,4.26,4.55,4.49
2008-03,6.15,6.87,6.41,5.61,5.56,6.87,6.77,5.88,5.72,5.56,6.67,6.18,5.81,5.79,5.57,5.56,6.31,5.95,5.81,5.81,5.43,5.19,5.1,4.01,3.89,3.41,3.19,6.71,6.01,5.81,5.7,5.08,4.69,4.45,4.13,4.59,3.95,3.42,5.98,9.36,10.74,7.31,4.92,4.87,5.4,5.78,4.67,4.51,4.5,4.15,3.58,3.53,5.92,7.87,10.6,5.26,4.27,4.29,4.32,4.75,4.12,3.64,3.93,3.63,3.62,3.62,5.91,5.82,5.82,5.82,5.4,4.38,3.57,3.42,3.51,3.65,3.91,3.91,5.81,4.59,4.71,4.06,3.36,3.84,6.35,5.66,4.74,3.98,6.62,6.02,7,6.71
2008-04,6.67,7.46,6.72,5.7,5.44,7.31,7.55,6.52,5.72,5.72,7.68,7.48,7.1,5.85,5.95,5.87,7.93,7.44,7.23,6.81,6.38,6.26,5.47,4.66,3.8,3.29,3.33,9.03,7.5,7.14,6.89,5.8,5.56,4.85,4.76,4.84,4.32,4.4,7.37,9.47,9.27,7.75,6.79,6.51,6.64,6.26,5.16,4.96,5.22,4.99,4.48,4.43,7.31,7.84,7.46,7.46,6.47,6.06,5.51,5.41,4.71,4.38,4.65,4.79,4.39,4.22,7.46,7.45,6.95,6.86,6.39,4.9,3.78,3.92,4.61,4.67,4.28,4.28,6.83,5.11,5.23,4.44,3.98,4.47,6.98,5.97,5.08,4.54,7.26,6.14,7.55,7.32
2008-05,6.15,6.01,5.05,6.17,5.95,7.6,5.01,4.69,6.02,6.19,8.1,6.92,5.3,5.94,6.49,6.32,8.24,7.61,8.36,7.96,7.05,6.64,5.82,4.77,3.99,3.68,3.7,9.09,8.59,8.66,8.76,8.43,6,5.17,5.01,5.15,4.93,5.24,7.66,10.15,9.79,7.84,8.28,8.46,8.2,8.04,5.57,5.55,5.3,5.19,4.81,4.91,7.6,8.11,7.55,7.55,7.61,7.35,6.76,7.19,5.54,5.03,4.89,5.07,4.81,4.66,7.55,7.56,7.8,7.85,7.52,7.03,5.49,4.96,5.18,5.19,4.64,4.64,7.81,6.03,5.9,4.33,4.52,4.77,7.43,6.26,5.29,4.78,7.67,6.14,6.51,6.7
2008-06,8.56,10.64,10.61,10.57,9.19,10.63,10.58,10.61,9.97,8.59,9.96,9.6,10.1,9.13,9.06,8.55,10.23,9.91,10.49,10.39,9.95,9.14,8.59,6.76,5.61,5.06,4.99,9.6,10.42,10.72,10.74,10.28,8.67,7.76,7.14,7.27,6.39,6.37,9.84,11.23,10.98,9.81,8.72,8.62,11.06,11.02,8.67,7.56,8.12,7.22,5.81,5.87,9.83,10.14,9.86,9.86,7.82,7.15,8.99,9.25,7.95,7.69,7.9,6.9,5.61,5.22,9.86,9.9,11.19,11.43,10.79,9.04,8.31,6.82,6.94,6.7,4.91,4.9,11.35,8.99,8.57,6.45,6.25,6.61,10.18,8.38,7.07,6.55,10.37,7.5,7.95,8.51
2008-07,6.72,8.54,8.56,8.57,8.9,7.81,8.75,8.63,8.71,9.04,7.61,7.87,8.65,9.12,9.35,8.54,7.39,7.59,8.12,9.05,9.95,9.25,8.75,7.85,7.16,5.69,5.65,5.95,7.82,8.33,8.6,9.66,8.83,8.47,8.34,8.21,7.09,7.08,7.3,7.63,7.56,7.25,7.76,7.99,9.02,9.82,8.15,8.62,9.2,7.85,6.69,6.77,7.32,7.5,7.55,7.55,7.63,7.67,7.91,8.27,7.3,6.66,7.45,6.86,6.08,5.93,7.55,7.56,7.97,8.04,7.97,7.46,5.87,5.83,6.06,6.12,5.34,5.34,8,6.43,6.53,5.9,5.87,6.39,6.7,6.53,5.9,5.56,6.63,5.88,5.92,5.31
2008-08,6.28,7.44,7.43,7.43,7.36,7.35,7.82,7.53,7.4,7.33,7.79,7.41,7.69,7.57,7.54,7.16,7.13,6.77,7.08,7.53,7.93,7.52,7.19,5.84,5.22,4.5,4.49,6.41,7.01,7.21,7.22,7.45,6.73,6.71,6.79,6.03,5.24,5.18,6.48,7.41,7.35,6.69,6.83,6.88,7.31,8.55,6.32,6.88,7.51,6.27,5.49,5.43,6.45,6.8,6.75,6.75,6.72,6.71,6.41,6.81,5.77,6.52,6.73,5.72,4.97,4.91,6.75,6.77,7.62,7.78,7.39,6.53,5.75,5.12,5.26,5.24,4.56,4.56,7.73,6.2,6.12,5.72,5.27,5.7,6.06,5.76,5.02,4.62,5.32,5,6.21,5.97
2008-09,5.32,5.75,5.72,5.71,5.08,6.24,5.89,5.72,5.57,5.24,5.81,5.59,5.69,5.42,5.47,5.19,5.56,5.63,5.67,5.77,5.89,5.79,5.74,4.49,3.7,3.01,3.14,5.48,5.63,5.67,5.95,6.8,5.46,5.01,5.14,4.61,3.99,4.08,5.16,5.15,5.21,5.34,5.2,5.19,5.62,7.09,5.55,5.68,5.5,4.86,3.98,3.94,5.1,5.13,5.17,4.97,4.93,4.94,5.11,5.67,5.84,5.58,4.98,4.77,4.21,3.92,5.01,4.89,4.89,4.89,4.99,5.24,5.13,4.96,5.75,5.51,4.18,4.18,4.9,5.45,5.64,4.62,5.07,5.36,4.28,4.93,5.13,5.34,3.93,4.34,4.99,5.13
2008-10,4.59,4.3,4.27,4.29,5.01,4.68,4.46,4.3,4.6,5.32,5.15,4.83,4.45,5.13,5.53,5.25,5.41,5.21,5.13,5.53,5.94,5.62,4.69,4.28,3.4,2.34,2.49,5.52,5.27,5.2,5.29,5.67,5.27,4.77,6.07,4.7,3.85,4.02,4.49,4.65,4.82,5.18,4.65,4.66,5.35,6.24,5.09,5.03,4.91,4.03,3.59,3.7,4.46,4.57,4.72,4.35,4.31,4.36,4.84,5.28,5.02,4.46,4.59,3.81,3.49,3.44,5.06,5.78,5.78,5.78,5.57,5.1,5.19,4.55,4.98,4.95,4.33,3.62,5.76,5.28,5.24,4.47,4.6,4.84,4.7,4.93,5.04,5.16,4.52,4.03,4.98,5.08
2008-11,3.83,3.77,3.71,3.71,3.71,4.88,4.72,3.93,3.71,3.72,4.81,4.88,4.86,4.54,3.87,3.8,4.41,4.27,4.2,4.13,3.92,3.82,4.45,3.86,3.7,2.64,2.41,4.4,4.19,4.13,4.44,5.32,4.31,3.94,4.02,3.32,2.73,2.51,3.59,3.81,3.97,4.25,4.11,4.07,4.35,5.04,4.18,3.56,3.78,3.13,2.28,2.26,3.59,3.72,3.9,4.04,4.09,4.1,3.85,3.95,3.57,3.19,2.87,2.78,2.79,2.64,4.38,5.32,5.32,5.32,4.92,3.98,3.76,3.14,2.97,3.14,3.68,3.68,5.26,3.83,3.64,3.36,2.91,2.96,3.46,3.5,3.62,3.78,3.41,2.92,3.56,3.62
2008-12,3.08,3.43,3.46,3.46,3.46,3.06,3.38,3.46,3.46,3.46,3.2,3.99,3.94,3.51,3.46,3.46,3.84,4.11,4.57,4.28,3.09,3.11,3.24,2.81,3.01,2.02,1.81,3.89,4.01,4.22,4.61,4.06,2.75,2.89,3.19,2.43,2.07,1.98,3.3,3.84,3.84,3.91,4.01,3.95,3.85,4.16,3.15,3,3,2.63,2.02,1.95,3.67,3.84,3.84,3.98,4,3.95,2.99,3.3,2.85,2.46,3.27,2.82,2,1.73,3.81,3.79,3.79,3.79,3.5,3.32,2.92,2.43,2.23,2.25,1.97,1.97,3.76,3.14,3.02,2.54,2.33,2.28,2.93,2.96,2.89,2.91,2.91,2.92,3.46,3.5
2009-01,3.14,2.92,2.8,2.8,2.8,3.16,3.07,2.86,2.8,2.8,3.19,3.07,3.04,2.83,2.8,2.8,3.21,3.07,3.07,3.04,3.14,3.02,2.67,2.31,2.16,2.01,2.03,3.23,3.07,3.07,3.25,3.94,3.13,2.51,2.95,2.46,2.15,2.18,2.33,3.33,3.64,3.33,3,3.08,3.56,4,3.16,3.22,3.47,2.77,3.23,2.68,2.33,2.76,3.62,3.24,2.98,2.97,2.88,3.16,2.69,2.76,3.18,2.58,2.26,2.22,3.07,3.55,3.55,3.55,3.32,3.06,2.77,2.6,2.93,2.89,2.62,2.01,3.55,3.13,3.05,2.97,2.7,2.92,3.02,3.04,3.02,2.87,3,2.93,3.59,3.71
2009-02,4.14,4.51,4.66,4.66,4.66,4.19,4.32,4.58,4.66,4.66,4.27,4.31,4.35,4.62,4.66,4.66,4.42,4.31,4.31,4.35,4.31,4.35,3.94,3.34,2.96,2.42,3.65,4.44,4.31,4.31,4.38,4.52,4.08,3.59,3.49,3.55,2.81,2.71,3.16,4.36,4.75,4.38,3.89,3.95,4.41,4.99,3.89,3.75,4.12,3.5,4.04,3.34,3.08,3.62,4.71,4.06,3.67,3.7,3.97,4.7,3.43,3.32,3.83,3.38,2.83,2.8,3.93,4.44,4.44,4.44,4.31,4.65,3.66,3.08,3.46,3.32,2.57,2.57,4.44,3.98,3.86,3.29,3.54,3.71,3.92,3.8,3.36,3.08,3.87,3.44,4.14,4.47
2009-03,5.79,5.79,5.79,5.79,5.79,6.37,6.2,5.92,5.79,5.8,6.76,6.27,6.25,6.07,6.13,5.82,6.63,6.28,6.1,6.2,6.19,5.6,5.05,4.4,3.9,3.1,2.81,6.51,6.11,6,6,5.63,4.66,4.44,4.25,4.08,3.66,3.58,5.65,7.19,7.57,6.6,5.91,5.93,6.3,6.11,4.63,4.66,4.62,4.01,5.62,4.38,5.59,6.27,7.58,6.18,5.78,5.71,5.14,5.33,4.27,3.94,4.06,3.79,3.62,4,5.87,5.6,5.6,5.6,5.36,5.22,4.42,3.78,3.85,3.8,3.5,3.5,5.6,5.22,5.15,4.28,3.41,3.41,5.3,5.05,4.29,3.7,5.33,5.13,5.53,5.74
2009-04,6.81,6.47,6.39,6.39,6.17,7.2,6.46,6.35,6.3,6.08,7.11,6.66,6.27,6.21,6.31,6.01,7.23,6.83,6.99,6.85,6.74,6.36,5.7,4.72,4.48,4.07,4.16,8.63,7.49,7.27,7.23,6.76,5.77,5.04,5.1,5.16,5.08,5.29,7.31,9.27,8.54,7.14,6.67,6.52,6.91,7.19,5.67,5.39,6.04,5.24,6.39,5.59,7.25,7.38,6.83,6.82,6.37,6.04,5.91,6.19,5.23,5.1,5.69,4.77,4.64,5.09,6.82,6.82,6.93,6.95,6.59,6.1,5.89,4.93,5.3,5.15,4.52,4.52,6.95,6.44,6.38,5.35,4.71,4.71,6.88,6.56,5.93,5.43,6.94,6.18,7.03,7.41
2009-05,5.48,6.03,5.94,5.94,5.32,6.77,6.02,5.89,5.67,5.06,6.94,6.36,7.11,5.82,4.93,5.08,6.32,7.1,8.1,5.73,4.64,4.98,4.46,3.62,3.28,4.54,4.88,7.01,6
.78,6.44,6.37,5.64,4.79,4.42,4.35,4.38,4.45,4.46,8.06,8.07,7.26,6.4,5.98,5.77,5.96,6.04,4.78,4.95,5.03,4.82,5.56,4.94,8.09,7.21,6.27,6.26,5.76,5.43,5.63,5.87,4.98,4.83,5.07,4.75,4.56,4.77,6.26,6.26,6.28,6.28,6.1,5.98,5.71,4.79,4.96,4.92,4.62,4.62,6.29,7,7.19,5.85,4.61,4.53,7.72,7.03,6.31,5.82,7.74,6.22,7.11,7.35
2009-06,6.97,8.74,8.71,8.71,7.2,8.82,8.51,8.61,8.17,6.94,8.84,8.29,8.89,7.77,7.4,7.28,8.69,8.47,9.28,8.57,8.32,8.22,7.2,6.18,5.78,5.72,5.61,8.33,8.43,8.33,8.46,8.75,7.61,6.96,7.27,7.17,6.75,6.49,8.45,9.17,8.69,7.91,7.72,7.74,8.67,9.22,7.08,8.02,8.57,7.5,8.18,7.46,8.4,8.25,7.83,7.82,7.47,7.2,7.04,8.91,7.52,7.43,8.25,7.16,6.48,6.87,7.82,7.84,8.4,8.5,8,8.94,8.03,6.66,6.98,6.83,5.95,5.95,8.51,8.9,8.94,6.16,6.33,6.47,9.17,8.12,7.1,6.53,9.1,7.13,7.46,7.79
2009-07,7.6,9.85,9.86,9.86,8.89,9.47,9.73,9.83,9.44,8.49,9.19,9.03,9.06,8.7,8.65,8.82,8.61,8.48,8.49,8.76,8.9,9.35,7.99,6.75,6.32,5.44,6.17,9.53,8.75,8.67,8.57,8.33,8.48,7.54,7.48,7.48,6.34,5.72,9.35,9.18,8.87,8.67,8.34,8.22,8.4,8.89,7.47,8.29,8.47,7.53,7.88,7.06,9.35,8.91,8.48,8.48,8.21,8.09,8.32,8.99,7.94,7.8,8.53,7.34,6.51,6.73,8.48,8.53,10.22,10.55,9.96,9.12,8.99,7.24,7.51,7.26,5.99,5.99,10.57,10.11,10.04,6.53,8.41,9.14,11.11,9.47,7.17,5.66,11.21,8.67,9.42,9.76
2009-08,6.98,8.83,8.77,8.77,8.43,9,9.62,9.07,8.62,8.29,8.79,8.62,9.68,8.67,9.03,8.93,7.8,7.68,8.8,9.27,10.36,9.64,8.35,6.55,5.72,4.93,5.25,8.41,8.59,8.89,8.81,8.58,8.13,7.85,7.81,7.02,5.71,5.52,8.7,7.37,7.29,7.75,8.72,9.13,8.08,9.16,7.75,8.62,8.99,7.21,7.36,5.86,8.75,7.97,7.6,7.6,8.79,9.58,8.86,9.23,8.25,7.7,7.71,6.34,5.38,5.44,7.6,7.68,10.36,10.88,10.33,9.34,8.84,7.05,6.89,6.52,4.93,4.93,10.89,9.88,9.68,6.36,5.92,6.1,10.56,9.1,7.49,6.5,10.62,8.29,8.96,9.08
2009-09,4.9,5.39,5.3,5.3,4.95,6.15,6.65,5.77,5.15,4.8,5.77,6.01,6.84,5.2,5.2,5.72,5.91,5.52,6.02,6.09,5.83,5.82,5.64,4.19,3.52,3.45,6.3,5.81,5.67,5.74,5.79,5.69,4.67,4.46,5.02,4.39,4.33,3.62,6.82,5.9,5.56,5.54,5.73,5.72,4.97,6.23,4.54,5.18,5.16,4.4,4.55,4.13,6.88,6.05,5.48,5.48,5.78,5.92,5.06,6.13,4.75,4.17,4.2,3.93,3.51,3.74,5.48,5.5,6.33,6.5,6.05,6.16,5.25,4.12,3.82,3.77,3.38,3.38,6.49,5.17,4.85,3.92,3.99,4.03,4.59,4.45,4.73,4.95,4.49,4.03,6.09,4.91
2009-10,4.53,4.19,4.05,4.05,3.56,5.37,5.14,4.38,3.84,3.36,4.79,4.84,5.21,3.7,3.43,4.31,4.43,5.06,5.03,4.76,3.43,4.15,3.83,3.57,2.99,3.27,2.6,5.64,4.94,4.79,4.83,4.57,3.64,3.46,3.86,3.8,3.95,2.36,5.28,4.98,5.04,5.49,4.98,4.83,4.3,5.02,3.61,4.11,4,3.89,3.95,3.67,5.09,4.98,4.99,5.12,5.04,5.03,4.71,4.2,3.42,3.37,3.45,3.97,3.51,3.58,5.21,5.42,5.42,5.42,5.23,4.16,4.12,3.03,3.53,3.56,3.27,3.27,5.41,4.58,4.46,4.09,3.87,3.91,4.56,4.49,4.76,4.99,4.56,4.24,4.92,5.3
2009-11,4.38,4.38,4.38,4.38,4.38,4.38,4.38,4.38,4.38,4.21,3.96,4.57,4.92,4.93,3.7,3.21,3.73,4.35,5.94,5.94,4.48,3.17,3.4,3.07,2.85,2.23,1.98,3.73,3.67,3.98,4.17,3.69,2.96,2.97,3.29,2.98,2.57,2.31,2.98,3.01,3.07,3.57,3.3,3.24,3.17,3.6,2.65,3.06,3.34,2.99,2.96,2.54,3,3.01,3.05,3.31,3.09,3.12,3.14,2.93,2.55,2.42,2.45,2.73,2.53,2.53,3.64,4.2,4.2,4.2,3.91,2.91,2.64,2.52,2.62,2.67,2.75,2.75,4.2,3.08,2.88,2.89,2.68,2.78,3.35,2.9,2.89,2.97,3.42,2.82,3.27,3.08
2009-12,1.54,1.54,1.54,1.54,1.54,1.54,1.54,1.54,1.54,1.6,1.44,1.9,2.2,2.22,2.02,1.93,1.39,2.08,3.46,3.46,2.53,1.88,1.95,1.83,1.46,2.33,2.38,1.39,1.84,2.17,2.3,1.96,1.81,2.21,2.87,1.85,2.35,1.52,2.44,2.44,2.35,1.52,1.51,1.52,1.75,1.95,1.62,2.18,1.96,1.89,1.96,3.09,2.44,2.44,2.44,1.78,1.3,1.34,1.51,1.69,1.49,1.93,2.06,2.04,1.68,2.47,2.45,2.46,2.46,2.46,2.21,1.7,1.94,1.69,1.55,1.62,1.72,1.72,2.46,1.74,1.62,2.18,1.77,1.83,1.8,1.71,1.65,1.85,1.84,1.77,1.91,1.97
2010-01,2.03,1.96,1.96,1.96,1.96,2.12,1.98,1.96,1.96,1.96,2.13,2.29,2.06,1.96,1.96,1.96,2.13,2.25,2.47,2.05,1.96,1.96,1.99,2.32,2.1,1.61,1.62,2.13,2.14,2.5,2.46,2.07,1.97,1.98,1.93,1.71,1.76,2.33,2.13,2.13,2.13,2.13,2.13,2.25,2.54,2.62,1.82,1.96,2.24,2.15,2.48,2.56,2.71,2.58,2.5,2.31,2.16,2.14,1.88,2.02,1.63,1.69,2.08,2.03,1.86,1.97,2.86,2.86,2.86,2.86,2.53,2.15,2.29,1.9,1.88,1.93,2.04,2.04,2.86,2.32,2.18,2.51,1.9,1.98,2.13,2.1,2.12,2.01,2.12,2.08,2.01,2.01
2010-02,2.49,3,3.08,2.97,2.85,2.48,2.92,3.08,3.05,2.85,2.48,2.74,3.08,3.08,2.88,2.85,2.48,2.63,3.08,3.08,2.69,2.42,2.41,2.88,1.95,1.52,1.93,2.48,2.37,2.45,2.53,2.11,1.87,1.83,2.65,1.68,1.69,2.18,3.19,2.99,2.94,2.49,2.05,2.09,2.55,2.57,1.9,2.52,2.37,2.23,2.5,2.25,3.09,2.99,2.99,2.34,1.87,1.9,2.05,2.44,1.88,1.86,1.79,1.79,1.82,2.01,2.97,2.95,2.95,2.95,2.68,2.4,2.24,2.06,1.93,1.87,1.78,1.78,2.95,2.2,2.07,1.95,1.59,1.47,2.27,2.41,2.45,2.41,2.35,2.67,2.8,2.39
2010-03,4.99,5.39,5.62,5.62,5.62,4.29,4.44,5.25,5.62,5.46,4.8,5.03,5.07,5.27,4.84,4.53,4.95,5.09,5.42,5.34,4.83,4.5,4.24,3.88,3.21,2.83,2.7,5.04,4.94,4.99,5.01,4.59,4.08,3.77,4.2,3.75,3.51,3.07,5.2,5.54,5.5,5.17,5.43,5.42,5.13,5.07,3.93,4.31,4.37,4.14,4.95,4.69,5.37,5.54,5.53,5.59,5.75,5.62,4.49,4.43,3.92,4.17,3.93,3.73,3.43,3.67,5.39,5.26,5.26,5.26,4.92,4.05,3.68,3.73,3.92,3.9,3.59,3.59,5.25,4.18,4.1,3.71,3.48,3.68,4.33,4.3,3.84,3.45,4.35,4.32,4.95,4.92
2010-04,6.22,6.37,6.53,6.53,6.18,6.08,5.63,6.24,6.53,6.05,6.56,6.26,6.45,6.63,6.4,5.48,6.77,6.84,6.57,6.23,6.56,5.49,4.97,4.64,4.3,4.14,4.79,6.74,6.45,6.19,6.14,5.89,4.94,4.54,5.05,5.36,4.91,4.62,6.67,6.07,6.13,6.46,5.3,5.17,5.23,5.92,4.72,4.72,5.08,4.95,5.14,5.06,6.37,6.07,6.04,5.09,4.64,4.71,5.29,4.66,4.04,4.08,4.34,4.4,4.44,4.54,5.56,5.11,5.11,5.11,5.21,4.13,3.48,3.62,4.27,4.41,4.43,4.43,5.11,3.9,3.78,4.16,3.43,3.45,5.18,4.69,4.32,3.98,5.42,4.64,5.3,4.19
2010-05,6.49,6.43,6.64,6.64,5.39,8.76,5.42,6.16,6.13,4.99,7.61,6.67,6.96,5.87,5.18,4.41,7.3,8,7.51,5.76,5.57,5.23,5.19,4.98,4.51,5.17,4.96,6.91,6.4,5.59,5.78,6.11,5.01,5.15,5.39,5.71,5.54,5.22,8.82,10,8.79,7.35,6.18,5.62,6.1,6.45,4.87,5.32,5.95,5.77,6.07,5.94,9.34,8.47,7.46,7.45,6.3,5.49,5.46,5.39,4.64,4.64,5.72,5.5,5.34,5.43,7.45,7.39,5.55,5.18,5.22,5.22,5.13,4.98,5.55,5.31,5.11,5.11,5.19,5.45,5.56,4.81,5.13,5.32,6.35,5.72,5.28,4.89,6.46,5.34,6.72,6.89
2010-06,7.42,9.61,9.7,9.7,8.18,8.43,8.96,9.48,9.09,7.7,9.27,8.81,9.51,8.45,7.86,7.52,8.51,9.16,9.61,8.81,8.23,7.75,7.52,6.38,5.56,5.3,6.11,8.42,9.33,9.48,9.16,7.87,7.51,6.2,6.8,6.9,6.6,5.97,9.77,10.24,9.41,8.45,8.83,8.97,9.03,8.34,6.89,6.56,7.13,7.16,8.78,8.42,9.95,9.17,8.47,8.46,8.53,8.51,8.05,7.54,6.39,5.77,6.54,6.05,5.38,5.85,8.46,8.44,7.85,7.73,7.72,6.71,5.61,5.82,6.23,5.72,5.02,5.02,7.74,6.42,6.38,5.45,5.99,6.26,8.31,7.19,6.14,5.48,8.6,6.77,7.02,6.48
2010-07,6.64,7.88,7.88,7.88,6.95,7.22,6.08,7.53,7.5,6.65,7.37,5.94,5.22,6.56,6.7,7.18,5.82,5.63,5.63,5.68,6.5,7.33,7.76,6.45,5.86,5.54,6,5.97,6.07,6.12,6.1,6.64,6.99,5.91,6.56,6.86,6.03,5.42,8.44,10.22,8.1,5.69,6.19,6.49,6.71,7,6.19,6.6,6.52,5.98,5.91,5.31,9.2,7.46,5.65,5.63,6.23,6.59,6.27,6.9,6,5.74,5.7,5.42,5,5.01,5.63,5.64,6.13,6.23,6.17,6.35,5.5,5.06,5.33,5.25,4.68,4.68,6.23,5.54,5.48,4.49,5.22,5.5,5.64,5.42,6.02,6.49,5.63,4.78,5.97,4.41
2010-08,6.76,8.26,8.26,8.26,8.49,8.11,8.2,8.25,8.35,8.56,8.03,7.5,6.03,7.81,8.9,8.97,7.32,5.81,6.03,8.67,9.53,9.38,8.41,7.48,6.89,6.13,6.88,7.96,8.02,8.96,8.9,8.83,8.54,6.87,8.36,9.02,7.79,6.7,7.9,10,8.63,7.15,7.81,8.22,8.85,9.16,7.63,8.18,8.11,7.38,8.72,8.44,8.86,8.18,6.98,6.97,7.4,7.74,8.08,8.5,7.57,7.53,7.79,6.81,5.68,6.06,6.97,7.03,9.05,9.45,9.06,7.77,6.76,6.66,6.65,6.1,5.06,5.06,9.44,7.58,7.42,5.86,5.71,5.8,8.17,7.17,6.45,6.11,8.19,6.69,7.49,7.5
2010-09,6.7,7.05,7.01,7.01,6.29,8.02,7.7,7.13,6.72,6.06,7.09,6.87,7.54,6.44,6.13,6.8,6.4,6.49,6.8,6.25,6.05,6.79,5.92,4.94,4.31,4.32,5.17,7.06,6.28,5.9,6.06,6.28,5.64,5,5.57,5.66,5.38,5.05,6.68,6.99,6.57,6.18,5.75,5.67,6.25,6.76,5.29,5.63,5.98,5.82,6.27,6.02,6.81,6.39,5.99,5.99,5.68,5.47,5.43,5.58,4.75,4.85,5.02,4.79,5,4.89,5.99,6,6.39,6.47,6.13,5.28,4.87,4.74,4.63,4.18,4.22,4.22,6.46,5.01,4.76,3.56,2.84,2.48,5.43,5.12,5.26,5.46,5.58,4.77,5.32,4.12
2010-10,4.67,5.85,5.83,5.83,5.69,6.04,7.11,6.15,5.77,5.64,5.96,7.09,8.17,5.98,5.72,5.82,6.1,6.29,6.65,6.45,5.86,5.82,5.49,3.62,3.65,3.57,4.84,6.18,5.58,5.58,5.74,5.84,5.64,5.12,6.02,5.56,5.7,6.03,5.75,6.83,6.77,6.21,5.5,5.49,5.66,6.61,5.12,5.54,5.79,5.56,5.63,6.49,6.29,6.83,6.83,6.08,5.53,5.57,5.7,5.83,4.68,4.5,5.03,4.94,4.78,5.59,6.83,6.83,6.83,6.83,6.53,5.14,4.18,4.63,5.11,5,5.07,5.07,6.82,5.27,5.21,4.38,4.3,4.17,5.23,5.18,5.51,5.8,5.1,4.25,5.36,5.81
2010-11,4.95,4.95,4.95,4.95,4.95,7.51,6.97,5.31,4.95,4.9,6.88,7.83,7.68,5.95,4.87,4.61,5.18,6.02,6.6,6.54,5.44,4.44,3.66,2.93,2.57,2.67,2.39,5.18,5.03,5.2,5.34,4.9,4.27,3.26,3.69,3.2,3.24,3.57,4.29,4.4,5.17,5.07,4.4,4.39,4.78,5.53,4.04,3.68,3.95,3.77,4.54,3.69,4.29,4.29,5.1,4.59,4.04,4.11,4.55,4.63,3.36,3.22,3.18,2.95,2.46,3.07,5.51,5.71,5.71,5.71,5.41,4.13,3.13,3.01,3.12,2.96,2.69,2.69,5.71,3.98,3.78,3.07,2.57,2.43,4.82,3.9,3.76,3.72,4.94,3.1,4.14,4.73
2010-12,2.68,2.68,2.68,2.68,2.68,2.73,2.68,2.68,2.68,2.8,3.97,3.54,3.89,3.92,3.64,3.52,4.07,4.64,6.2,6.2,4.71,3.37,3.26,3.3,2.23,2.14,2.25,4.07,3.86,4.14,4.4,3.98,3.37,2.75,3.59,2.82,2.72,2.44,2.79,2.95,4.06,3.98,3.4,3.42,3.89,4.53,3.24,2.84,3.18,2.63,3.58,2.53,2.79,2.79,3.91,3.62,3.15,3.14,2.96,2.99,2.47,2.66,2.88,2.33,2.27,2.45,4.37,4.63,4.63,4.62,4.1,2.64,2.29,2.23,2.32,2.45,2.62,2.62,4.62,3.04,2.86,2.56,2.17,2.07,3.5,3.13,3.1,3.1,3.6,2.58,3.82,4.51
2011-01,1.62,1.6,1.6,1.6,1.6,1.62,1.6,1.6,1.6,1.6,3.25,2.47,2.51,2.53,2.95,1.85,3.51,3.88,4.23,4.23,3.84,1.75,1.86,1.84,1.74,1.6,1.6,3.51,3.9,3.78,3.16,2.67,1.75,2.04,2.23,1.71,1.63,2.26,2.87,2.83,2.79,2.77,3.28,3.16,2.53,2.6,2.03,2.37,3.19,2.82,1.94,2.75,2.6,2.6,2.6,2.6,2.43,2.32,2.41,2.48,2.05,2.13,2.12,2.05,1.89,2.23,2.6,2.63,3.48,3.65,3.54,2.47,2.3,2.37,2.04,1.84,2.06,2.06,3.64,2.39,2.17,2.06,1.84,1.68,2.62,2.32,2.64,3.01,2.74,2.28,3.41,2.75
2011-02,2.36,2.34,2.34,2.34,2.34,2.37,2.34,2.34,2.34,2.34,3.66,3.14,3.33,3.35,3.8,2.5,3.87,4.54,5.2,5.2,4.75,2.35,2.33,2.41,2.23,1.92,1.92,3.88,4.56,4.5,3.75,3.26,2.35,2.33,2.39,2.08,1.93,2.07,3.87,3.87,3.87,4.1,4.68,4.29,2.79,3.17,2.42,2.43,2.57,2.5,2.14,2.18,3.87,3.87,3.9,4.55,4.68,3.48,2.66,2.65,2.2,2.12,2.27,2.53,2.24,2.11,4.11,4.61,4.16,2.65,2.57,2.48,2.3,2.26,2.29,2.23,2.09,2.09,3.22,2.72,2.81,2.42,2.09,2.03,3.85,3.25,2.88,2.63,4.04,3.3,3.83,3.4
2011-03,6.12,6.38,6.38,6.38,6.38,3.67,2.33,5.12,6.38,6.25,6.29,1.75,2.19,5.35,5.29,5.22,7.1,5.59,6.38,6.37,5.23,5.18,5.02,4.23,3.79,3.46,2.41,7.01,6.79,6.6,6.32,6.11,4.94,4.66,4.46,4.45,4.43,4.9,7.11,6.44,5.59,5.53,6.27,6.39,5.78,6.55,4.84,4.75,4.96,4.38,4.52,6.47,6.78,5.3,5.22,5.22,5.73,6.08,5.85,5.37,4.47,4.26,4.9,4.25,3.77,4.81,5.22,5.25,6.28,6.48,6.36,4.89,4.15,4.14,4.55,4.27,3.6,3.6,6.48,5.16,5.06,3.92,3.74,3.84,6.24,5.36,4.31,3.62,6.39,5.06,5.78,6.21
2011-04,7.8,8.2,8.16,8.16,6.97,8.39,9.14,8.5,7.68,6.59,9.01,9.44,10.38,7.96,7.09,7.14,8.95,10.99,11.31,10.89,8.07,7.87,6.36,6.12,4.91,4.72,3.71,8.72,10.63,10.5,9.57,8.7,7.16,6.29,6.38,5.68,5.55,6.01,8.98,8.4,7.64,7.65,9.42,9.54,8.91,9.86,6.91,6.19,7,6.42,6.25,7.49,8.7,7.43,7.36,7.36,7.87,8.23,8.33,8.3,6.39,5.71,6.74,6.45,5.68,6.17,7.36,7.41,9.05,9.38,9.25,7.17,5.29,5.55,6.16,5.8,4.89,4.89,9.37,7.03,6.86,5.36,4.59,4.55,8.05,7.04,5.97,5.3,8.15,6.49,6.02,6.22
2011-05,8.44,9.31,9.2,9.2,7.28,9.88,10.08,9.47,8.42,6.67,9.55,9.99,10.7,8.09,7.23,6.79,9.99,10.5,10.64,9.66,8.28,7.96,6.01,5.09,4.7,4.61,3.51,10.08,11.04,10.64,9.48,7.6,5.91,5.64,5.61,5.58,5.59,5.51,9.3,8.59,7.74,7.68,9.44,9.47,8.94,8.55,5.71,5.77,6.69,6.31,6.05,6.58,8.93,7.22,7.13,7.13,7.28,7.4,7.45,6.4,5.87,5.85,7,6.31,5.77,5.98,7.13,7.17,8.53,8.8,8.53,5.86,5.74,5.81,6.15,5.86,5.32,5.32,8.8,6.83,6.64,5.1,4.83,4.98,8.09,6.88,5.54,4.66,8.25,6.21,5.77,6.62
2011-06,11.48,12.82,12.72,12.72,11.8,13.19,13.93,13.17,12.35,11.51,11.17,11.69,14.12,12.04,11.51,8.8,10.72,10.56,13.44,13.96,12.67,8.96,8.46,7.1,7.47,7.05,5.16,11.95,13.78,14.19,13.52,10.78,9.36,9.04,8.23,9.05,9.1,7.78,11.02,9.85,8.44,8.37,12.01,12.7,13.05,12.15,8.98,9.06,9.31,8.54,7.94,8.51,10.42,7.67,7.52,7.52,9.31,10.55,10.66,9.11,8.48,8.37,8.87,8.49,7.26,7.39,7.52,7.59,9.85,10.3,10.12,8.01,7.61,7.56,7.34,6.95,6.32,6.32,10.3,8.84,8.84,6.5,6.45,6.73,9.81,9.01,7.14,5.75,9.8,7.88,7.84,7.87
2011-07,10,11.55,11.49,11.49,11.16,11.54,12.96,12.07,11.36,11.06,10.4,11.74,13.06,11.81,11.81,11.31,10.28,12.41,13.98,15.41,13.23,12.82,9.53,7.86,8.4,7.9,5.9,10.3,12.32,13.62,13.67,11.29,10.6,10.21,9.09,10.21,10.08,7.41,9.69,8.37,6.74,6.66,9.74,10.12,11.49,11.53,9.7,9.96,9.55,8.34,7.21,6.83,9.02,5.98,5.81,5.81,6.53,7.1,8.29,8.9,8.5,8.43,9.05,7.65,6.34,6.2,5.81,5.98,11.74,12.89,12.46,8.43,8.19,7.44,7.09,6.5,5.35,5.35,12.87,10.41,10.21,6.88,6.69,6.95,10.27,9.48,7.58,6.24,9.98,7.6,7.82,7.64
2011-08,8.45,9.52,9.49,9.49,10.82,9.46,10.92,10.07,10.03,11.25,8.67,10.14,11.75,11.53,12.1,11.32,9.92,10.99,13.37,15.13,13.73,13.35,10.16,8.71,8.73,8.35,7.01,9.15,12.14,13.12,12.56,10.61,10.14,10.77,10.34,10.56,9.38,8.79,8.72,7.55,6.09,6.06,10.03,10.64,10.75,10.84,9.13,10.25,10.93,9.67,8.6,9,8.13,5.44,5.29,5.29,6.98,8.19,8.78,8.93,9.23,8.91,8.93,8.78,7.63,7.8,5.29,5.43,10.13,11.07,10.82,8.57,8.82,7.89,8.01,7.68,6.14,6.14,11.07,10.37,10.46,6.99,7.09,7.51,10.57,9.8,7.55,5.91,10.39,8.48,9.28,9.14
2011-09,6.41,8.21,8.24,8.24,7.82,7.48,9.25,8.71,8.07,7.68,6.67,7.86,9.15,8.13,7.92,7.07,7.37,7.9,9.38,10.23,8.39,8.25,6.88,6.7,6.78,6.12,4.27,7.23,9.07,9.35,8.5,7.96,7.41,7.74,8.89,8.74,5.92,4.41,7.83,6.6,5.02,4.99,7.52,7.82,8,8.87,7.5,8.68,9.11,7.77,5.74,5.68,7.25,4.59,4.44,4.44,5.23,5.82,6.47,7.23,7.48,7.88,8.34,7.23,5.78,5.54,4.44,4.54,8,8.69,8.51,6.68,6.71,6.88,7.34,6.67,5.14,5.14,8.69,7.97,8.1,6.13,6.33,6.5,8.83,8.01,6.95,6.38,9.03,8.08,6.41,5.98
2011-10,5.12,5.72,5.68,5.68,5.92,5.89,7.24,6.27,5.77,5.99,5.64,6.62,7.8,6.29,6.29,6.36,5.95,7.03,7.63,7.49,6.85,6.67,6.05,4.73,4.9,4.81,4.13,6.08,7.89,7.85,6.95,5.65,5.02,5.15,5.98,6.29,5.47,4.98,5.91,6.84,5.82,4.83,6.76,6.88,6.19,6.45,5.09,5.61,6.32,6.11,5.14,5.65,6.3,5.43,4.51,4.5,5.04,5.44,5.48,5.15,5.05,5.24,5.79,6,5.03,5.08,4.5,4.57,6.9,7.37,7.12,4.88,4.73,4.69,5.3,5.12,4.6,4.6,7.37,6.29,6.31,4.98,4.65,4.58,6.85,6.49,6.17,5.92,6.8,5.19,6.23,5.84
2011-11,4.14,4.3,4.3,4.3,4.3,5.57,5.66,4.72,4.3,4.3,5.47,5.88,5.79,4.82,4.71,3.76,4.75,5.18,5.13,5.1,4.82,3.51,3.49,4.08,3.46,2.61,2.53,4.75,5.02,5.1,4.98,4.29,3.61,3.51,4.11,3.54,3.25,3.22,3.63,4.48,4.17,3.91,4.43,4.39,4.11,4.36,3.6,4.33,4.64,3.77,2.91,3.61,4.04,4.02,3.72,3.72,3.67,3.65,3.73,3.64,3.19,3.56,4.34,3.46,2.91,3.21,3.72,3.75,4.72,4.91,4.78,3.36,2.79,3.01,3.67,3.51,3.18,3.18,4.91,3.92,3.92,3.45,3.4,3.38,5.21,4.7,4.39,4.15,5.5,4.76,4.99,4.57
2011-12,1.66,1.66,1.71,1.78,1.78,1.57,1.67,1.78,1.78,1.78,0.9,1.27,1.78,1.78,1.81,2.11,0.89,1.57,1.78,1.78,1.71,1.99,2.17,3.75,1.89,1.75,1.83,0.9,1.91,1.96,1.78,1.21,1.3,1.99,2.04,1.88,1.54,1.41,3.57,3.57,2.61,1.49,1.96,2.02,1.75,1.94,1.17,2.44,3.02,2.8,1.55,1.7,3.51,2.37,1.59,1.58,1.79,2.76,2,1.82,1.48,2.15,2.08,2.08,1.76,1.71,1.58,1.62,3.04,3.32,3.18,1.87,1.44,1.65,1.98,1.89,1.9,1.9,3.32,2.16,1.89,1.92,1.91,1.85,2.78,2.34,2.43,2.55,2.95,1.99,2.59,2.55
2012-01,3.04,3.11,3.15,3.15,3.15,3.11,3.11,3.11,3.15,3.12,3.23,3.12,3.15,3.25,2.8,2.69,3.97,3.32,3.46,3.52,2.79,2.69,2.65,2.42,2.17,1.83,1.6,3.7,3.22,3.34,3.38,3.02,2.91,2.84,2.62,2.67,2.42,2.3,2.07,4.69,3.73,2.64,3.07,3.07,2.72,3.46,2.93,3.18,4.42,3.78,3.29,3.45,2.89,3.73,2.64,2.59,2.93,3.14,2.88,2.84,2.37,2.79,3.88,3.52,2.96,3.25,2.59,2.59,3.25,3.44,3.47,2.68,2.6,2.7,3.75,3.74,2.4,2.43,3.49,2.83,2.78,2.58,2.19,2.17,3.03,3.1,3.13,3.04,3.06,2.76,2.74,2.73
2012-02,2.65,2.7,2.74,2.74,2.74,2.66,2.7,2.7,2.74,2.74,1.63,2.79,3.03,3.27,2.96,2.73,1.22,3.13,3.67,3.73,3.04,2.73,2.65,2.75,2.18,1.4,1.35,1.21,3.26,3.62,3.85,3.68,2.75,2.55,2.6,2.32,2.14,2.15,3.69,4.37,3.41,2.56,3.12,3.11,3.1,3.74,2.67,2.94,4.03,4.59,2.86,2.15,3.9,3.71,2.79,2.79,2.73,2.69,2.75,2.44,2.35,2.53,3.01,5.39,3.27,2.05,2.79,2.79,2.77,2.77,2.8,2.14,1.88,2.07,2.02,2.45,1.99,2,2.83,2.16,1.99,1.87,1.72,1.7,6.45,3.02,2.09,2.17,6.87,2.37,1.21,0.91
2012-03,7.13,6.47,6.32,6.32,6.24,7.29,6.93,6.45,6.31,5.33,7.43,6.97,6.75,5.69,4.92,4.99,6.09,6.04,5.85,5.73,4.91,4.32,3.56,4.1,4.42,2.06,1.96,5.28,5.28,5.58,5.6,4.94,3.42,3.08,3.83,4.07,3.63,3.64,6.07,6.16,5.37,4.46,4.85,4.8,4.24,5.36,3.42,3.57,5.61,4.96,3.71,3.8,6.1,5.38,4.32,4.38,4.28,4.3,4.43,4.54,4.1,3.64,5.56,4.2,3.61,3.56,4.38,4.38,5.06,5.35,5.41,4.29,3.25,3.88,3.9,3.33,3.15,3.18,5.43,4.28,4.17,3.52,3.01,2.98,5.59,4.93,4.26,3.7,5.69,4.26,4.72,5.1
2012-04,7.12,6.83,6.37,6.31,4.75,7.9,8.01,6.75,5.78,4.65,7.28,6.88,7.05,5.99,5.25,5.37,6.68,6.05,7.16,8.32,6.75,6.07,4.7,3.92,4.11,4.1,3.94,7.79,7.95,8.5,7.31,3.54,4.5,4.36,4.41,4.67,4.46,4.32,7.39,7.79,6.98,6,7.29,7.19,6.99,5.82,3.93,4.62,5.36,5.11,4.5,4.62,7.52,6.77,5.67,5.75,5.49,5.48,6.11,5.25,5,4.89,5.47,5.4,4.54,4.4,5.75,5.75,7.01,7.53,7.52,4.75,3.99,4.44,5.01,4.94,4.17,4.16,7.66,5.96,6.01,4.94,4.7,4.9,6.75,6.27,5.61,5,6.83,5.03,4.18,4.13
2012-05,7.85,7.74,7.41,7.37,6.37,8.54,7.97,7.62,7.03,6.3,7.81,6.94,7.32,6.79,6.62,6.74,7.04,5.93,6.63,7.07,7.43,7.15,6.33,5.83,5.5,5.45,4.98,8.99,7.35,7.57,6.73,4.96,5.71,5.95,5.48,6.02,5.68,5.35,7.19,7.57,7.05,6.08,6.53,6.2,6.61,6.5,4.66,5.22,6.39,5.88,5.46,5.92,7.31,6.8,5.55,5.73,4.71,4.27,5.59,6.77,5.23,4.72,5.88,5.95,5.33,5.54,5.73,5.73,5.75,5.89,6.15,6.75,5.84,5.16,5.37,5.63,5.11,5.03,6,6.39,6.53,5.11,4.09,4.21,7.04,6.43,6.01,5.24,7.22,5.4,5.55,5.75
2012-06,11.47,10.21,9.81,9.73,7.6,13.1,9.78,9.72,9.01,7.46,10.06,8.24,8.22,7.94,7.79,7.76,8.59,7.37,8.02,8.35,8.59,8.17,6.29,6.41,6.18,3.64,3.78,10.52,9.98,10.56,9.48,7.84,6.63,6.77,6.81,6.46,6.13,6.41,9.24,9.83,8.61,7.13,9.39,9.81,9.6,9,5.78,6.65,7.6,6.38,6.42,6.93,9.42,8.55,6.51,6.6,7.6,8.4,8.74,7,6.46,6.36,6.96,6.13,5.97,6.62,6.6,6.6,9.16,10.07,10.06,6.75,6.77,5.94,6.34,6.43,5.91,5.91,10.23,8.29,8.15,5.98,4.68,4.77,9.47,8.2,6.96,5.98,9.61,6.68,7.14,7.92
2012-07,10.38,10.78,10.54,10.51,9.64,11.24,11.8,10.75,10.21,9.59,9.33,8.68,8.76,9.25,10.01,10.26,7.91,6.73,8.19,10.46,11.06,10.19,8.09,8.09,8.12,3.36,3.12,9.44,8.56,9.74,9.76,7.37,8.46,7.98,7.66,7.76,6.43,6.13,8.28,8.52,7.07,5.36,7.23,7.25,8.77,8.29,7.16,7.89,8.7,7.62,5.65,6.34,8.35,7.01,4.64,4.69,4.59,4.82,6.81,7.01,6.74,6.32,6.74,6.78,5.38,5.54,4.69,4.69,8.19,9.56,9.58,6.63,6.1,5.47,5.73,5.64,4.68,4.74,9.71,7.57,7.36,5.16,4.94,5.13,9.09,7.91,6.54,5.62,9.16,6.82,6.82,6.98
2012-08,9.06,9.79,9.59,9.55,8.42,9.63,11.06,9.88,9.16,8.35,8.75,8.47,8.28,8.4,8.78,9.04,7.77,7.04,8.99,10.14,9.87,9.83,8.5,7.69,6.56,3.93,3.84,8.66,8.96,9.82,10.11,9.24,8.4,7.93,8.18,7.9,6.64,5.7,8.2,8.02,6.86,5.7,8.35,9.21,9.4,9.46,7.07,8.27,8.78,7.66,7.29,6.66,8.15,6.92,5.17,5.16,7.25,8.66,8.87,7.49,7.57,8.02,8.02,7.21,6.04,6.19,5.16,5.16,8.88,10.11,10.13,6.89,6.09,6.47,6.82,6.47,5.12,5.18,10.26,8.33,8.44,6.54,4.93,4.98,9.08,9.13,7.5,6.05,9.01,7.84,8.2,8.36
2012-09,7.01,7.36,7.2,7.19,6.94,7.89,7.93,7.3,7.11,6.93,7.01,6.61,6.79,6.92,7.19,7.18,6.13,5.72,7.01,7.52,7.84,7.67,6.77,6.2,6.11,2.89,2.63,6.64,6.69,7.47,8.11,8.02,6.84,6.15,6.28,6.25,4.93,4.7,6.33,6.82,5.47,4.28,5.35,5.08,7.32,8.82,6.15,6.53,7.57,6.46,5,5.67,6.48,5.67,3.86,3.79,3.01,2.81,5.42,7.14,5.78,6.2,6.89,7.1,5.73,5.43,3.79,3.79,7.63,9.15,9.21,6.61,5.4,5.27,5.54,5.6,4.66,4.71,9.29,7,6.84,5.31,3.91,3.84,7.15,7.09,6.39,5.52,7.02,3.98,2.85,2.65
2012-10,5.26,5.87,5.85,5.84,5.49,5.75,6.56,5.92,5.72,5.47,6.12,6.29,6.51,5.64,5.42,5.41,6.04,5.66,5.66,5.74,5.31,4.95,4.22,4.09,4.08,2.58,2.45,5.84,4.61,4.88,5.31,5.12,4.87,4.68,4.41,4.27,3.47,3.47,5.28,5.85,5.02,4.34,4.42,4.44,4.22,5.05,4.7,5.11,4.67,4.05,3.35,4.3,5.45,5.17,4.1,4.03,4.31,4.46,4.22,3.85,3.78,3.73,4.3,4.9,4.35,4.27,4.03,4.03,4.56,4.7,4.72,3.69,3.87,3.58,4.07,4.17,4.24,4.35,4.77,4.82,5.06,4.07,3.82,3.8,6.33,5.58,5.17,4.98,6.42,5.51,5.71,6.65
2012-11,3.14,4.57,5.19,5.19,5.19,3.04,3.16,4.6,5.19,5.17,3.47,3.04,3.49,5.16,4.92,4.67,4.63,4.17,4.98,5.19,4.88,4.67,4.42,3.77,4.08,1.69,1.43,4.5,4.01,4.33,4.75,4.68,4.58,4.28,3.83,3.44,2.69,2.38,3.5,3.04,3,3.11,3.64,3.8,3.63,4.35,4.46,5.18,4.2,3.31,2.75,3.29,3.35,2.99,2.87,2.8,3.29,3.66,4.06,4.18,3.58,4.02,3.41,3.19,2.85,3.14,2.8,2.8,5.03,5.82,5.98,3.68,2.75,2.71,3.19,3.13,2.86,2.98,5.9,3.79,3.56,3.3,2.96,2.9,4.06,4.18,3.91,3.73,4.01,3.56,3.37,3.44
2012-12,2.77,2.81,2.88,2.88,2.88,2.76,2.81,2.81,2.88,2.9,2.35,2.92,3.13,3.4,3.36,3.28,2.17,3.36,3.75,3.85,3.46,3.28,2.96,2.07,2.77,2.19,1.6,2.12,3.27,3.68,4.08,3.83,3.43,3.45,2.54,2.81,1.99,1.6,2.95,2.89,2.99,3.25,3.26,3.15,3.36,4.16,3.4,3.05,3.06,2.24,1.97,2.28,2.93,3.12,3.45,3.4,3.05,2.8,3.03,3.73,2.54,2.29,2.99,2.34,2.13,2.31,3.4,3.4,3.07,2.8,2.79,2.05,2.12,2.29,2.79,2.57,2.31,2.37,2.76,2.72,3,2.89,3.3,3.37,3.04,3.42,3.48,3.35,2.99,2.92,2.87,2.85
2013-01,2.11,2.14,2.17,2.17,2.17,2.13,2.14,2.14,2.17,2.17,2.25,2.36,2.67,3,3.27,2.94,2.29,3.11,3.66,3.72,3.59,3.31,2.85,2.52,2.18,1.1,0.94,2.26,2.46,2.84,3.3,2.79,3.32,3.04,2.46,2.07,1.51,1.41,2.31,2,1.97,2.23,2.42,2.42,2.41,2.64,2.28,2.37,2.46,2.23,2.17,2.22,2.21,1.91,1.97,2.08,2.3,2.32,2.35,1.93,1.8,2.39,2.6,2.22,2.07,2.2,1.95,2.59,2.83,2.89,2.87,1.82,1.97,2.19,2.02,1.78,1.8,1.82,2.93,2.53,2.61,2.3,1.88,1.84,2.66,2.88,2.69,2.41,2.66,2.62,2.57,2.58
2013-02,3.35,3.42,3.47,3.47,3.47,3.39,3.42,3.42,3.47,3.47,3.69,3.43,3.43,3.48,3.48,3.23,3.79,3.59,3.45,3.5,3.44,3.3,3.16,3,2.28,2.04,1.62,3.73,3.71,3.86,4,3.75,3.33,3.21,3.03,2.56,2.1,1.8,3.22,3.53,3.5,3.68,3.61,3.64,4.09,4.04,3.31,3.35,3.5,2.75,2.27,2.6,3.32,3.48,3.48,3.44,3.39,3.45,3.69,3.02,3.07,3.21,3.13,2.97,2.5,2.55,3.48,4.19,4.45,4.56,4.54,2.84,2.77,2.6,2.61,2.6,2.41,2.44,4.63,3.28,3.1,2.42,1.97,2.36,4.35,3.85,2.55,1.76,4.54,4.35,3.84,3.67
2013-03,5,5.36,5.37,5.37,5.37,5,5.32,5.37,5.37,5.37,5.02,5.49,5.91,6.21,6.39,4.93,5.92,6.64,6.94,6.94,6.24,5.05,4.72,4.35,4.29,3.92,3.18,5.74,6.34,6.74,6.9,5.94,4.9,5.09,4.49,4.27,3.9,3.72,6.26,5.51,5.54,5.76,6.32,6.37,6.37,6.39,4.75,5.03,4.66,4.09,4.02,4.47,6.03,5.43,5.43,5.84,6.16,6.16,5.91,4.41,4.1,4.22,4.83,4.31,4.04,4.33,5.51,6.05,6.16,6.16,4.97,4.04,3.98,4.05,4.47,4.31,4.03,4.08,4.81,4.82,5.12,4.34,4.23,4.38,6.24,6.08,5.14,4.27,6.29,5.35,5.58,5.34
2013-04,7.01,6.28,6.05,5.99,4.63,7.31,5.52,6.05,5.53,4.54,3.61,2.7,6.41,5.77,4.97,4.48,6.4,4.62,7.82,7.59,6.05,6.01,5.8,4.66,4.66,4.32,4.24,6.9,7.46,7.65,7.7,6.3,5.13,4.92,4.37,4.66,4.18,4.11,7.52,7.33,7,6.89,6.98,6.79,6.88,7.06,4.82,4.56,4.53,4.15,3.96,4.34,7.52,7.21,6.9,6.34,5.79,5.84,6.09,4.88,4.06,3.56,4.41,4.64,4.06,4.06,7,6.69,6.73,6.83,6.82,4.57,4.3,3.88,3.99,4,3.61,3.61,6.94,5.22,5.01,3.86,3.34,3.49,6.13,5.65,4.38,3.49,6.39,5.71,4.87,4.96
2013-05,8.06,8.58,8.41,8.32,5.88,9.18,8.04,8.41,7.5,5.73,8.4,8.22,7.6,6.81,6.21,5.38,9.21,9.4,9.01,8.01,7.42,7.39,4.98,4.72,4.33,3.76,3.76,7.63,8.9,8.78,8.22,6.4,5.26,5.08,4.97,5.05,4.54,4.62,7.99,7.86,7.77,7.53,7.88,7.48,6.88,7.04,5,5.01,5.45,4.63,4.42,5,7.99,7.93,7.52,6.85,5.99,5.99,6.09,5.12,4.75,5.19,6.1,5.45,4.88,4.87,7.43,6.21,5.99,5.99,5.32,4.9,5.32,5.08,5.19,5.17,4.6,4.54,5.47,5.61,5.89,4.81,4.1,5.06,7.31,6.64,5.59,4.43,7.77,6.44,5.15,4.73
2013-06,10.64,10.4,10.25,10.2,8.9,11.32,10.19,10.23,9.76,8.82,9.15,9.18,8.46,8.93,9.27,7.93,9.32,10.09,11.06,11.94,10.42,10.26,7.11,7.36,5.7,6.02,6.09,8.44,9.78,10.17,10.68,9.37,8.05,7.32,7.05,6.79,6.06,5.81,10.43,9.73,8.49,8.39,8.85,8.5,8.78,9.53,7.54,7.18,8.09,6.65,5.84,6.2,10.43,10.11,8.37,7.61,6.88,6.88,7.31,6.49,6.43,6.27,7.83,6.57,5.78,5.91,8.24,7,6.88,6.88,6.36,5.83,5.78,6.11,6.31,5.62,5.34,5.34,6.53,6.58,6.95,5.71,6.33,6.79,8.15,8.07,6.69,5.5,8.42,8.09,7.51,7.66
2013-07,8.68,9.14,9.45,9.42,8.73,9.6,7.75,8.93,9.19,8.68,7.67,7.14,7.77,8.64,8.85,7.66,7.24,8.02,10.29,11.26,9.27,9.15,7.62,6.61,6.19,5.59,5.52,6.36,7.96,8.97,10.12,8.7,7.97,7.89,7.46,6.87,6.24,5.41,7.98,7.42,6.43,6.46,7.63,7.51,7.72,8.58,7.51,7.91,8.27,7.1,7.06,6.7,7.98,7.73,6.34,6.63,6.68,6.68,6.98,6.65,6.8,7.44,7.98,6.25,6.12,6.49,6.59,6.78,6.68,6.68,6.51,6.44,7.08,6.58,6.35,5.65,5.2,5.26,6.75,7.19,7.44,6.64,6.74,7.11,8.12,8.04,7.04,6.3,8.23,8.67,8.71,8.86
2013-08,8.47,9.74,8.25,8.76,8.77,9.3,8.23,7.56,8.54,8.77,7.87,7.32,7.56,8.45,8.98,7.69,8.58,7.68,9.19,10.67,9.52,9.34,9.99,7.23,7.36,5.29,5.07,6.32,8.44,9.32,9.98,7.5,7.43,8.08,8.2,8.22,6.72,6.76,7.64,7.18,6.28,6.53,8.82,8.9,8.93,8.27,6.82,7.48,8.58,6.98,6.11,7.24,7.64,7.43,6.28,7.57,9.55,9.45,8.87,7.11,6.86,6.51,7.65,6.69,6.01,6.5,7.43,9.84,9.93,9.93,9.93,6.77,6.93,6.59,6.52,6.17,5.04,5.1,10.07,8.01,7.85,5.54,4.79,6.01,8.81,7.86,6.36,5.39,8.91,7.97,7.24,7.34
2013-09,6.47,6.72,6.68,7.38,7.39,6.6,6.13,6.47,7.21,7.39,5.97,5.99,6.47,7.16,7.58,6.8,6.04,7.48,8.04,8.99,8.08,7.86,6.61,6.37,5.93,4.78,4.65,4.58,6.87,7.42,8.16,6.16,6.25,6.39,6.7,7.27,6.51,5.47,6.05,5.55,4.52,4.8,6.79,6.7,6.41,6.44,5.58,6.82,7.27,7.09,7.32,6.47,6.05,5.82,4.58,5.25,6.56,6.36,6.17,5.29,4.91,6.48,7.08,5.58,5.04,5.75,5.13,6.31,6.44,6.44,6.49,4.84,4.52,4.95,5.65,5.35,4.36,4.41,6.53,5.3,5.3,4.95,4.32,5.44,5.45,5.48,5.44,5.33,5.45,4.58,4.09,4.02
2013-10,5.54,6.33,6.29,6.24,4.94,6.31,6.94,6.34,5.8,4.86,5.73,6.2,7.19,6,5.02,5.1,4.96,6.22,7.79,7.67,5.45,5.18,4.43,2.74,3.44,3.19,3.03,4.22,5.47,6.2,6.4,4.13,3.93,4.27,3.63,4.03,4.15,3.18,5.4,5,4.16,4.22,5.33,4.71,4.07,4.26,3.65,5.19,4.03,4.67,5.15,3.81,5.4,5.22,4.22,4.23,4.37,4.22,4.13,4.07,4.03,4.13,4.71,3.9,3.4,3.57,4.27,4.36,4.42,4.42,4.5,3.92,4.46,4.58,4.23,3.83,3.15,3.23,4.48,4.45,4.63,4.62,3.71,4.16,5.09,5.08,4.83,4.74,5.08,4.87,4.64,4.56
2013-11,3.57,3.91,4.07,4.07,4.07,3.57,3.87,3.92,4.07,4.07,3.55,3.98,4.29,4.67,4.77,3.16,2.56,4.12,4.99,5.19,4.66,3.08,3.17,2.86,2.94,1.95,1.84,2.46,3.21,3.58,4.03,3.64,3.1,3.18,3.05,2.79,3.03,1.76,3.19,2.94,2.39,2.54,3.26,3.21,3.04,3.3,2.64,3.6,3.44,3.95,4.49,3.97,3.19,3.08,2.46,2.74,3.39,3.27,3.03,2.49,2.39,2.64,3.09,2.64,2.38,3.41,2.72,3.34,3.46,3.46,3.45,2.33,2.5,2.54,2.73,2.61,2.46,2.56,3.5,2.85,2.87,2.53,2.5,2.77,2.67,3.02,3.08,3.14,2.56,2.6,2.89,2.64
2013-12,2.15,2.69,2.77,2.77,2.77,2.15,2.62,2.7,2.77,2.77,2.15,2.53,2.61,2.63,2.56,2.08,2.15,2.39,2.44,2.5,2.39,2.07,1.86,2.07,2.87,2.04,1.32,1.88,1.87,1.97,2.16,2.24,2.08,1.97,1.59,1.6,1.61,1.3,1.72,1.72,1.68,1.85,1.87,1.9,2.11,2.16,1.91,1.96,2.7,2.35,2.03,2.79,1.72,1.72,1.8,2.53,2.61,2.63,2.24,1.64,1.56,1.47,1.79,1.66,1.58,2.36,2.2,2.6,2.64,2.64,2.61,1.57,1.66,1.54,1.24,1.35,1.65,1.69,2.67,1.98,1.93,2.34,1.49,1.29,2.4,2.35,2.35,1.84,2.44,2.47,2.41,2.47
2014-01,2.16,2.16,2.31,3.92,4.18,2.16,2.16,3.48,4.18,4.18,2.13,2.98,4.12,4.18,4.1,1.82,0.97,3.39,4.12,4.18,3.43,2.55,1.65,1.84,1.88,1.03,1.05,0.95,3.52,3.79,3.97,2.73,2.3,2.43,2.83,2.61,2.83,2.68,3.83,3.26,2.73,3.23,3.69,4.02,4.59,3.26,2.16,2.47,3.3,3.15,3.46,2.52,3.82,3.54,3.63,3.57,3.74,4.17,4.09,2.38,2.06,2.93,3.08,2.11,2.35,2.54,3.57,3.57,3.91,3.99,3.94,2.11,1.81,2.33,2.54,2.45,2.59,2.62,4.04,2.53,2.35,3.06,2.07,2.01,2.57,2.45,2.89,2.88,2.59,2.48,2.71,2.81
2014-02,2.82,2.18,2.19,2.19,2.19,2.82,2.25,2.16,2.19,2.19,2.81,2.36,2.26,2.36,2.42,2.36,2.5,2.48,2.48,2.51,2.33,2.34,2.38,2.43,2.41,1.2,1.08,2.46,2.39,2.41,2.53,2.27,2.22,2.48,2.87,2.17,2.08,1.7,4.41,3.9,3.37,3.6,3.1,2.41,2.87,2.75,2.12,2.8,2.63,2.51,2.53,2.18,4.38,3.85,3.8,3.8,3.67,3.44,3,2.22,2,1.57,2.25,2.16,1.79,1.95,3.8,3.8,3.53,3.44,3.42,2.07,1.86,1.83,2.01,1.99,1.69,1.71,3.49,2.5,2.42,2.2,1.77,1.95,2.3,2.55,2.02,1.78,2.28,2.8,3.26,3.32
2014-03,5,5.9,5.93,5.93,5.85,5,5.8,5.93,5.92,5.05,7.24,6.35,6.13,5.65,4.69,4.75,6.06,6.47,6.51,6.27,4.69,4.66,3.82,2.07,3.57,2.51,2.39,5.12,6.28,6.53,6.35,4.25,4.75,3.87,3.53,3.49,2.99,2.77,6,5.39,4.64,4.44,5.86,6.26,5.83,4.96,4.37,4.17,3.71,3.22,2.88,2.85,5.92,4.46,4.31,4.38,5,5.87,5.5,3.83,3.66,3.96,3.96,3.07,2.82,2.78,4.38,4.38,5.56,5.95,5.9,3.52,2.93,3.21,3.29,3.09,2.61,2.65,6.04,3.88,3.55,3.35,2.38,2.37,3.35,3.34,2.98,2.84,3.2,2.93,3.5,2.4
2014-04,7.44,7.77,7.4,7.35,5.95,8.4,8.74,7.72,6.87,5.86,8.16,8.06,7.49,6.71,6.11,6.12,7.65,7.99,8.01,8.35,6.75,6.74,7.85,5.33,4.76,3.61,3.37,6.59,8.3,8.4,8.22,5.54,5.36,5.74,4.98,5.09,3.95,3.73,9.26,8.04,6.66,6.58,7.96,8.18,7.46,6.56,4.94,5.38,5.45,4.22,3.59,4.51,9.12,6.73,6.59,6.69,6.93,7.2,6.94,5.19,4.97,5.03,5.04,4.66,4.12,4.33,6.69,6.69,6.99,7.11,7.11,4.81,4.35,4.33,4.53,4.46,3.82,3.82,7.21,5.57,5.44,5.49,4.08,4.26,5.51,5.15,4.63,4.28,5.51,4.56,6.26,6.9
2014-05,7.37,8.04,7.82,7.76,6.36,8.36,8.02,7.95,7.28,6.26,8.18,7.93,7.83,7.09,6.49,6.38,7.25,7.93,8.15,8.11,7.07,7.16,6.15,5.84,4.56,3.47,3.42,6.47,8.75,8.68,8.07,6.42,6.1,5.77,5.55,5.21,5.48,4.9,7.97,7.17,6.32,6.02,8.19,8.87,8.51,7.72,6.04,5.39,5.97,5.87,6.42,4.96,7.87,6.22,5.94,6.14,6.81,8.05,7.77,5.52,6.34,5.3,6.1,5.59,4.95,4.76,6.14,6.14,7.43,7.89,7.88,5.01,4.86,4.88,5.12,5.23,4.71,4.64,8.02,6.04,5.8,3.88,3.89,4.07,6.31,5.88,4.71,4.52,6.46,5.13,6.04,6.09
2014-06,9.17,9.04,9.04,8.95,6.69,10.37,8.05,8.74,8.18,6.55,9.36,8.04,7.38,7.27,6.92,6.3,8.25,8.65,9.33,9.33,7.89,7.92,7.3,6,5.11,3.42,3.39,8.06,8.66,8.7,8.55,6.26,6.42,6.78,5.71,5.64,5.02,5.58,9.52,8.33,6.84,6.4,8.06,8.32,7.3,7.2,5.79,6.22,6.64,5.36,4.26,4.74,9.35,6.51,6.1,6.2,7.07,8,7.24,5.59,5.61,5.33,6.3,5.92,5.05,4.56,6.2,6.2,7.94,8.52,8.47,5.39,5.93,5.67,5.59,5.41,4.7,4.69,8.65,7.36,7.39,5.97,4.72,5.48,9.34,8.49,6.37,5.51,9.47,6.95,8.04,7.89
2014-07,8.9,9.07,9.31,9.24,7.5,9.57,8.05,8.89,8.65,7.39,8.05,7.54,7.8,8.04,7.56,7.4,7.52,7.62,9.52,11.93,8.02,7.94,7.04,6.54,6.09,5.7,5.56,7.51,8.51,9.53,10.52,7.47,7.7,7.15,7.09,7.06,6.36,5.79,8.27,7.3,6.04,5.54,7.99,8.96,8.95,8.57,7.3,7.08,7.79,6.87,6.61,8.45,8.11,5.55,5.19,5.27,6.75,9.01,8.58,6.79,8.65,6.93,6.94,6.18,5.85,7.53,5.27,5.27,8.26,9.22,9.22,6.58,10.02,9.16,6.57,6.21,5.07,5.14,9.36,8.21,8.18,6.72,5.3,6.23,9.73,8.62,6.35,5.65,9.74,7.22,7.99,8.13
2014-08,8.14,8.55,8.99,9,9.09,8.49,7.11,8.44,9.03,9.09,7.39,7.22,7.64,8.71,8.96,8.46,6.7,7.66,9.19,11.02,8.64,8.55,7.6,7.23,6.13,5.36,5.26,5.36,8.76,9.82,10.47,8.88,8.01,7.62,7.84,7.02,5.96,5.74,5.87,5.23,4.34,4.12,7.97,9.13,8.63,9.2,7.9,7.72,7.96,6.31,5.59,5.72,5.77,4.15,3.92,3.92,6.11,9.11,8.51,6.97,7.61,7.99,7.59,6.38,5.56,5.45,3.92,3.92,8.21,9.55,9.55,6.76,7.99,6.88,7.08,6.71,5.15,5.22,9.69,9.03,9.28,6.31,6.24,6.69,9.64,8.81,5.64,5.44,9.47,6.05,5.51,5.66
2014-09,5.56,5.99,6.34,6.34,6.39,5.78,4.79,5.91,6.36,6.4,4.76,4.76,5.03,5.88,6.44,6.24,4.45,4.99,5.25,5.85,6.54,6.47,5.83,5.89,4.59,3.46,3.68,3.37,5.41,5.66,5.71,6.03,5.29,5.75,5.91,5.86,4.91,4.82,5.26,4.2,2.88,2.83,4.93,5.65,5.62,6.19,5.04,6.13,6.18,5.18,4.42,4.3,5.13,3.02,2.75,2.71,4.3,6.45,5.81,4.74,5.24,5.14,5.5,4.97,4.14,3.85,2.71,2.71,6.03,7.06,7.03,4.54,5.65,5.23,4.72,4.46,3.75,3.79,7.16,5.65,5.55,3.95,3.69,4.6,5.4,5.03,4.56,4.79,5.28,4.08,4.82,5.08
2014-10,6.76,5.38,5.73,5.73,5.81,5.83,4.51,5.31,5.76,5.81,5.24,4.75,4.57,5.84,6.15,6.31,4.83,5.35,5.65,5.96,6.99,6.76,5.91,4.84,4.72,2.66,5.58,4.33,5.62,5.68,5.78,6.84,6.11,5.37,5.15,5.47,4.42,4.08,4.86,4.43,3.78,3.71,5.2,5.99,6.58,6.84,5.68,5.06,5.4,4.81,4.06,3.37,4.8,3.76,3.6,3.55,4.49,6.07,6.04,4.74,4.56,4.46,4.93,4.67,4.07,3.59,3.55,3.55,5.37,5.92,5.93,4.36,4.75,4.55,4.49,4.36,4.06,4.16,6,5.23,5.26,4.73,4.01,3.91,4.4,4.88,5.22,5.32,3.91,4.16,4.75,4.48
2014-11,4.59,3.85,3.98,3.98,3.98,4.59,3.94,3.83,3.98,3.98,4.52,3.93,3.61,3.62,3.49,3.82,1.51,2.82,3.19,3.31,3.58,3.38,3.9,3.51,2.8,2.93,3.1,1.45,2.93,3.49,3.7,4.14,3.8,3.43,3.51,2.98,2.66,2.52,3.53,3.19,2.85,3.31,3.56,4.01,4.38,4,3.6,3.74,3.93,3.36,2.68,2.48,3.53,3.66,3.63,3.53,3.77,4.12,4.09,3.14,2.54,2.99,3.4,3.28,2.79,2.53,3.53,3.53,3.91,4,4.01,2.9,2.64,2.68,2.68,2.58,2.54,2.64,4.05,2.78,2.53,2.36,2.58,2.72,3.62,2.93,3.12,3.41,3.66,2.96,2.3,2.26
2014-12,2.03,1.99,2.04,2.04,2.04,2.03,2,1.99,2.04,2.04,2.01,1.99,1.95,1.99,1.96,2.16,1.01,1.92,1.89,1.93,2.11,1.94,2.23,1.97,1.67,0.98,0.94,0.98,2.56,2.59,2.41,2.68,2.3,1.94,2.29,1.78,1.42,1.42,2.54,2.21,1.86,2.13,2.59,2.67,2.61,2.82,2.16,2.36,2.14,1.88,1.43,1.23,2.53,2.38,2.33,2.3,2.47,2.63,2.65,2.18,1.49,1.91,2.16,2.43,2,1.46,2.3,2.3,2.6,2.69,2.76,2.06,1.8,1.85,1.75,1.74,1.76,1.81,2.72,2.14,2.08,1.96,1.79,1.79,2.14,1.99,2.14,2.32,2.12,1.95,1.95,1.69
2015-01,2.02,2.41,2.46,2.46,2.46,2.02,2.37,2.43,2.46,2.46,2.02,2.24,2.21,2.11,2.02,2.57,1.97,1.79,1.78,1.81,1.81,2.39,2.5,1.64,2.66,1.22,0.99,1.76,1.76,1.78,1.98,2.24,1.93,2.43,3.31,2.69,2.26,1.69,1.48,1.48,1.44,1.85,1.98,2.11,2.62,2.6,1.68,2.09,3.15,2.93,2.96,2.62,1.48,1.42,1.58,2.57,2.65,2.65,2.4,1.71,1.34,2.15,2.27,2.22,2.01,2.41,2.1,2.61,2.65,2.65,2.62,1.53,1.34,1.68,1.8,1.75,2.06,2.08,2.68,1.82,1.73,2.13,1.86,1.81,1.82,1.71,2,2.28,1.87,1.52,1.16,1.1
2015-02,2.65,2.81,2.86,2.86,2.86,2.65,2.79,2.82,2.86,2.86,2.64,2.73,2.7,2.68,2.59,2.64,2.34,2.48,2.48,2.52,2.42,2.31,2.67,2.82,2.61,2.4,2.09,2.3,2.95,3.13,2.93,2.52,2.18,2.49,3,2.12,1.69,1.64,2.89,2.71,2.49,2.55,2.81,2.83,2.64,2.53,2.04,3.45,2.39,1.84,1.64,1.69,2.88,2.61,2.59,2.59,2.79,2.98,2.67,1.92,1.5,2.24,2.01,1.86,1.85,1.82,2.59,2.59,3.08,3.24,3.2,1.79,1.47,1.75,1.84,1.82,2.02,2.05,3.28,2.3,2.27,3,1.94,1.94,2.39,2.79,2.64,2.31,2.39,2.3,2.79,1.87
2015-03,4.98,4.32,4.3,4.3,4.31,4.98,4.4,4.3,4.3,4.39,4.95,4.37,4.04,4.12,4.43,4.49,3.59,4.02,3.54,3.64,4.42,4.33,3.48,2.92,3.4,1.38,1.57,3.48,5.21,4.75,3.45,3.56,3.11,3.48,2.59,2.3,2.27,2.7,4.25,3.9,3.5,3.44,4.87,4.73,3.17,3.34,2.83,3.86,3.25,2.61,2.24,2.89,4.21,3.5,3.43,3.48,3.64,3.11,2.84,2.26,2.35,2.9,2.95,3.03,2.74,2.76,3.48,3.48,3.42,2.72,2.07,2.17,2.66,2.61,2.6,2.63,2.62,2.66,2.13,2.59,2.69,3.05,1.98,1.9,3.04,2.81,2.77,2.9,3.23,2.76,2.22,1.67
2015-04,7.64,6.49,6.49,6.42,4.63,7.21,6.03,6.38,5.82,4.52,5.54,5.79,6.39,5.49,4.56,3.99,6.36,6.14,6.09,5.65,4.64,4.66,4.58,6.32,3.56,2.98,3.15,6.91,6.56,6.21,5.41,4.84,4.36,4.39,5.35,3.91,3.52,3.82,5.7,5.6,5.31,4.78,6.11,6.25,5.11,5.21,4.31,5.18,4.22,3.57,3.3,4.74,5.64,4.45,4.4,4.47,4.62,4.62,4.64,3.83,3.62,3.56,4.36,4.4,3.69,4.17,4.47,4.47,4.35,4.34,4.39,3.62,3.64,3.55,3.77,3.69,3.23,3.23,4.4,3.77,3.71,3.89,2.81,3.51,3.23,3.44,3.38,3.16,3.08,2.97,4.08,3.77
2015-05,7.4,4.89,4.74,4.79,6.14,6.78,4.13,4.61,5.24,6.22,4.34,3.89,3.94,4.91,5.45,3.66,5.16,6.77,5.92,4.18,3.5,3.67,6.05,5.58,3.39,3.35,3.92,6.56,6.83,6.01,4.83,4.24,3.71,4.06,4.99,4.41,5.85,4.37,7.09,6.41,5.63,5.16,6.27,6.25,5.02,5.28,3.56,4.4,4.27,5.91,7.92,4.28,6.98,5.2,4.91,5.08,5.09,4.93,4.84,4.34,3.42,4.52,4.43,4.19,3.91,3.88,5.08,5.08,4.89,4.89,4.98,4.38,4.55,3.83,4.18,4.41,3.93,3.87,4.97,4.52,4.54,4.97,4.15,4.45,4.49,5.93,5.37,4.33,5.2,5.28,5.25,5.28
2015-06,6.99,7.66,7.96,7.92,6.84,7.19,6.57,7.63,7.55,6.78,6.93,6.63,6.38,6.64,6.68,6.43,7.42,7.69,7.8,6.44,6.44,6.63,6.79,8.95,5.47,6.3,5.49,8.28,7.82,7.54,6.87,6.83,6.38,6.53,6.52,6.18,5.99,6.02,8.55,7.39,5.77,4.99,7.01,7.53,6.63,7.44,6.2,6.82,5.61,5.58,5.71,6.22,8.34,4.85,4.4,4.47,5.57,6.93,6.37,4.89,5.04,5.5,5.99,6.46,5.61,5.71,4.47,4.47,6.53,7.2,7.16,4.6,5.24,4.93,5.52,5.61,4.76,4.75,7.31,5.88,5.76,5.79,5.66,6.06,6.7,6.29,5.84,5.68,7.24,6.76,6.29,5.49
2015-07,9.35,7.63,8.11,8.15,9.03,8.01,6.02,7.52,8.45,9.08,6.71,6.76,7.38,8.57,8.98,7.93,7.72,7.75,8.79,10.23,8.74,8.76,8.17,7.57,7.5,6.31,6.13,8.09,8.88,9.21,9.05,8.77,8.25,8.22,7.91,8.06,7.12,7.36,8.42,7.29,5.76,5.04,8.16,9.22,8.76,9.62,7.85,8.48,8.25,7.09,6.48,8.32,8.21,4.92,4.49,4.56,6.49,9.21,8.65,7.28,6.98,6.73,7.66,7.26,6.45,7.45,4.56,4.56,8.42,9.65,9.67,7,7.42,6.62,6.97,6.8,5.77,5.84,9.8,8.31,8.2,7.32,6.33,6.77,7.39,7.73,6.48,5.43,6.98,7.52,8.34,8.46
2015-08,7.18,7.32,7.63,7.65,8.03,7.45,6.25,7.21,7.78,8.06,6.53,6.72,7.11,8.02,8.36,7.27,7.38,7.92,9.49,10.87,9.11,8.82,8.11,8.24,7.15,7.61,6.46,7.82,9.33,9.89,9.73,8.85,7.29,7.37,8.34,8.1,6.66,6.72,7.63,7.04,6.1,5.65,8.78,9.8,9.31,9.78,7.66,8.74,7.33,5.8,5.69,6.58,7.51,5.56,5.26,5.26,7.2,9.81,9.1,7.13,6.92,7.13,7.49,6.5,6.3,6.52,5.26,5.26,9.07,10.26,10.22,6.74,7.45,6.61,6.97,6.52,5.34,5.42,10.41,8.54,8.38,5.76,6.33,6.72,7.6,7.62,6.36,5.64,7.19,7.29,6.55,7.29
2015-09,7.53,7.9,8.24,8.24,8.03,7.61,6.89,7.85,8.16,8.01,6.53,6.72,7,7.73,8.04,7.26,6.91,7.03,7.98,8.73,8.08,7.72,7.22,6.41,5.58,5.02,5.5,6.85,8.68,8.85,8.27,8.09,6.14,6.11,6.65,6.54,5.66,5.71,5.9,5.64,5.01,4.63,7.96,8.72,7.55,8.65,6.5,7.49,7.37,5.84,5.1,5.34,5.81,4.45,4.24,4.18,5.97,8.04,7.29,5.58,5.92,5.57,5.91,5.43,4.63,4.54,4.18,4.18,7.44,8.44,8.37,4.93,5.37,5.01,4.83,4.51,3.91,3.95,8.56,6.62,6.55,4.56,5.46,5.73,6.31,6.31,5.76,5.53,6.05,6.13,5.85,6.13
2015-10,4.55,4.29,4.39,4.47,6.45,4.49,4.12,4.25,5.14,6.58,3.16,3.43,4.54,6.12,6.51,6.47,3.72,4.41,6.43,6.58,6.32,6.04,5.96,5.4,5.3,3.67,4.79,4.5,6.72,6.68,6.24,7.06,6.44,5.39,6.73,5.82,4.87,4.89,4.37,4.16,3.74,3.61,6.04,6.47,5.49,6.95,6.75,7.19,7.08,5.3,4.35,4.16,4.32,3.58,3.45,3.41,4.98,6.69,5.79,4.85,4.53,5.29,5.75,4.92,4.12,3.82,3.41,3.41,6.53,7.49,7.42,4.4,3.94,4.29,5.19,4.87,3.79,3.89,7.59,5.25,5,4.42,4.02,4.04,4.7,4.95,4.8,4.8,4.42,4.6,4.48,4.16
2015-11,3.32,4.17,4.37,4.37,4.37,3.32,4.08,4.2,4.37,4.37,3.31,4.01,4.27,4.47,4.42,4.38,2.86,4.02,4.39,4.56,4.04,3.34,4.29,3.48,2.6,1.17,1.54,2.75,3.62,4.07,4.16,3.48,2.52,3.52,3.26,2.62,1.96,2.25,2.71,3.02,3.3,3.56,3.72,3.44,3.19,3.23,2.45,3.86,3.8,2.73,1.79,2.51,2.77,3.65,3.7,3.6,3.68,3.49,3.22,2.56,2.07,2.64,3.03,2.82,2.35,2.26,3.6,3.6,3.73,3.74,3.72,2.37,2.15,2.2,2.93,2.81,2.32,2.41,3.78,2.79,2.74,2.01,2.31,2.36,2.47,2.7,2.74,2.8,2.23,2.26,2.46,2.26
2015-12,2.15,3.27,3.4,3.4,3.4,2.15,3.14,3.31,3.4,3.4,2.13,2.98,3.22,3.25,3.14,3.3,1.67,2.64,3.04,3.13,3.1,2.48,3.32,3.66,4.8,1.73,1.23,1.62,2.39,2.66,3.03,3.26,2.73,2.66,2.85,2.39,2.25,2.58,1.87,2.3,2.84,3.21,2.7,2.67,3.17,3.19,2.77,2.97,2.46,2.18,1.95,2.2,1.96,3.38,3.49,3.44,3.47,3.51,3.14,2.1,2.15,1.96,2.09,2.13,2.03,1.97,3.44,3.44,3.73,3.8,3.74,1.87,2.46,2.24,1.77,1.82,2.01,2.06,3.86,2.15,1.91,1.92,1.72,1.83,3.68,3,2.55,2,4.45,3.99,2.89,2.89
2016-01,2.13,2.13,2.16,2.29,2.23,2.13,2.13,2.27,2.62,2.23,2.13,2.24,2.6,2.66,2.25,2.26,3.19,2.73,2.62,2.66,2.3,2.26,2.51,2.12,1.97,1.86,1.53,3.25,2.75,2.62,2.64,2.61,2.23,2.17,2.04,2.05,2.11,2.18,2.41,2.68,2.75,2.62,2.48,2.34,2.26,2.87,2.09,2.28,2.73,2.44,1.8,1.85,2.41,2.33,2.4,2.37,2.65,2.83,2.46,2.1,1.86,1.91,2.26,2.35,2.09,1.85,2.37,2.37,3.06,3.26,3.23,1.93,1.74,2.07,2.23,2.21,2.06,2.08,3.31,2.22,2.09,2.26,2.02,2,1.96,2.13,2.35,2.45,1.88,1.81,1.81,1.81
2016-02,2.96,3.96,4.06,4.06,4.06,2.96,3.85,4,4.06,4.04,2.96,3.79,4.13,4.28,3.98,3.81,3.09,4.07,4.4,4.46,3.97,3.81,3.76,3.32,3.17,3.07,2.63,3.58,3.82,4,4.11,4.07,3.67,3.37,3.16,3.14,3.34,3.48,4.01,3.76,3.36,3.18,3.39,3.54,3.43,4.31,3.37,3.56,3.35,3.2,2.78,2.08,3.95,3.04,2.94,2.94,3.4,3.96,3.5,2.82,2.91,3.37,3.81,3.73,3.23,2.35,2.94,2.94,4.05,4.4,4.36,2.59,2.98,3.42,3.25,3.21,2.95,2.99,4.46,3.52,3.54,3.25,2.83,2.85,2.87,3.74,3.65,3.07,2.76,3.46,4.88,4.95
2016-03,5,5.92,5.95,5.95,5.9,5,5.81,5.95,5.94,5.35,5.04,5.75,6.04,5.72,5.1,5.17,6.49,6.01,6.21,6.07,5.1,4.88,4.31,4.03,3.55,3.88,4.16,6.35,5.13,5.64,6.14,5.24,5.22,4.09,3.97,4.29,3.77,3.45,5.73,5.89,5.92,5.64,5.12,4.96,4.75,5.2,5.4,5.09,4.61,4.24,3.58,3.27,5.72,5.42,5.39,5.47,5.21,4.79,4.52,3.48,3.43,3.86,4.13,3.95,3.55,3.29,5.47,5.47,5.02,4.9,4.88,3.26,3.42,4,3.71,3.79,3.22,3.26,4.97,4,3.95,5.56,2.8,2.76,4.57,4.33,4.03,3.64,4.57,3.81,4.84,4.88
2016-04,5.48,7.13,7.64,7.64,5.47,6.1,5.43,7.1,7.61,4.67,6.62,5.53,5.32,5.43,4.57,4.03,5.58,5.41,5.82,5.64,4.59,4.81,4.84,4.55,4.22,3.98,3.82,6.65,5.64,5.77,5.8,5.41,4.94,4.12,4.19,4.45,4.13,3.88,6.47,6.44,6.2,5.75,5.58,5.54,5.22,5.78,4.72,4.34,4.16,4.13,3.95,2.87,6.41,5.33,5.32,5.4,5.58,5.71,5.18,4,3.83,4.34,4.53,4.64,4.1,3.2,5.4,5.4,5.91,6.1,6.06,3.75,3.85,4.24,4.19,4.15,3.72,3.71,6.19,4.75,4.64,3.39,3.63,3.74,5.37,4.77,4.17,3.7,5.44,4.54,5.52,5.59
2016-05,4.98,6.12,6.14,6.1,5.07,5.23,5.71,6.13,5.75,5,5.64,5.04,5.71,5.36,5.02,4.65,5.12,4.16,5.34,5.75,5.07,5.09,4.17,4.67,4.46,3.91,3.59,7.62,4.73,5.25,5.75,4.74,4.64,3.69,4.5,4.3,4.19,4.24,7.06,6.98,6.68,5.92,4.9,5.01,5.5,5.64,3.83,4.25,4.33,4.27,3.76,2.9,6.97,5.48,5.23,5.4,5.33,5.55,5.28,4.04,3.4,4.02,4.91,4.77,4.23,3.23,5.4,5.4,5.62,5.74,5.74,3.93,4.04,4.12,4.58,4.55,4.11,4.05,5.84,5.07,5.06,3.54,4.36,4.57,3.98,4.49,4.51,4.23,3.54,3.95,4.69,3.64
2016-06,8.92,8.52,8.88,8.78,6.16,8.6,6.97,8.4,7.88,5.99,8.01,6.7,6.63,6.45,5.68,5.45,7.51,6.12,6.81,7.62,4.92,5.8,6.3,6.72,7.18,6.17,5.48,9.17,5.8,6.38,7.56,6.62,6.43,6.03,6.26,6,5.42,5.08,8.31,7.93,7.11,6.22,5.47,5.87,6.65,7.24,5.96,6.37,6.89,6.23,5.02,4.49,8.15,5.6,5.23,5.31,6.29,7.84,6.9,5.16,5.3,5.63,6.45,6.43,5.32,4.49,5.31,5.31,7.92,8.77,8.67,4.94,5.77,5.64,5.42,5.21,4.52,4.51,8.9,7.21,7.1,4.73,5.49,5.64,7.81,6.7,5.71,5.13,7.87,5.73,6,4.78
2016-07,10.57,11.44,11.76,11.63,8.36,11.38,10.63,11.34,10.52,8.15,11.14,9.58,8.97,8.89,8.64,8.29,9.84,8.22,8.78,10.66,9.89,9.58,8.11,8.5,8.23,7.42,6.96,11.32,9.34,10.46,11.27,9.92,8.92,7.69,9.32,8.51,7.08,6.37,8.96,8.99,8.28,6.95,8.65,9.9,10.29,10.82,8.25,7.9,8.29,7.48,6.25,4.9,8.78,5.84,5.43,5.51,7.56,10.74,10.01,7.71,7.67,7.44,7.89,7.43,6.36,5.13,5.51,5.51,9.87,11.26,11.21,7.27,7.87,7.91,7.31,6.83,5.34,5.4,11.42,9.66,9.55,7.73,6.52,6.67,10.21,8.56,6.66,5.78,10.09,6.96,8.48,8.79
2016-08,6.55,7.63,8.28,8.25,7.47,6.89,5.58,7.55,7.99,7.42,6.73,6.36,6.39,7.41,7.62,7.44,7.47,7.45,8.26,10.29,8.11,7.56,4.13,4.63,5.8,5.2,4.85,6.92,6.4,7.18,8.98,7.9,6.77,4.07,6.08,6.49,5.28,4.76,6.83,6.49,5.85,5.46,5.77,6.62,7.98,8.18,6.05,5.26,6.68,6.36,5.32,4.12,6.73,5.22,4.98,4.98,6.28,8.5,7.89,5.93,5.47,6.05,6.22,6.54,6.95,5.27,4.98,4.98,8.09,9.07,9,5.6,5.64,5.82,5.86,5.52,4.04,4.09,9.2,7.2,6.99,5.47,5.42,5.49,8.53,7.14,5.94,5.33,8.63,7.03,7.85,7.62
2016-09,6.51,6.3,6.41,6.34,4.46,6.97,5.63,6.14,5.7,4.33,5.62,5.1,5,4.95,4.73,4.98,5.22,4.86,5.45,6.62,5.72,5.58,5.52,4,4.96,4.57,4.4,4.86,4.35,5.2,6.75,6.33,5.2,5.17,5.43,5.89,5.16,4.91,5.51,4.87,4.02,3.85,4.03,4.71,5.94,6.38,4.75,4.92,5.6,5.4,4.67,4.65,5.41,3.78,3.56,3.51,4.37,5.92,5.81,5,4.21,5.68,5.64,5.39,4.76,4.51,3.51,3.51,5.51,6.12,6.17,4.79,4.19,4.96,5.22,5,4.3,4.35,6.22,5.81,5.9,6.06,5.14,5.17,7.41,6.16,5.46,5.2,7.5,5.35,5.41,4.69
2016-10,6.64,7.35,7.48,7.39,5.07,7.38,7.39,7.31,6.61,4.93,7.06,7.06,7.36,6.08,5.1,5.17,6.09,6.78,7.1,7.05,5.53,5.42,4.86,4.77,4.27,3.84,3.62,5.32,6.26,6.55,6.61,5.87,5.16,4.63,4.86,5.07,4.33,3.96,5.13,4.92,4.39,4.08,5.68,6.1,5.42,5.92,4.75,4.73,4.88,4.77,4.08,3.4,5.05,3.81,3.62,3.57,4.57,5.69,5.21,3.93,4.13,4.67,4.87,5,4.2,3.5,3.57,3.57,5.38,5.93,5.87,3.58,4.57,4.83,4.94,4.74,3.53,3.61,6.01,5.16,5.24,4.93,4.18,4.08,5.83,5.24,4.94,4.94,5.74,4.31,5.31,4.75
2016-11,3.29,4.41,4.67,4.67,4.67,3.37,4.15,4.42,4.67,4.61,3.46,4.13,4.18,4.56,3.99,3.53,3.65,3.9,4.31,4.48,3.89,3.53,3.74,3.47,2.71,2.43,2.01,3.56,3.11,3.39,4.14,5.01,3.35,3.3,3.4,3.24,2.67,2.42,3.5,3.49,3.31,3.32,3.11,3.06,3.09,4.21,3.05,4.46,2.92,3.07,2.69,2.5,3.48,3.3,3.23,3.15,3.87,4.51,3.69,3.15,2.45,3.29,3.01,3.27,3.07,2.82,3.15,3.15,4.94,5.48,5.41,3.07,2.43,2.77,2.95,2.96,3.11,3.23,5.56,3.63,3.34,3.09,2.32,2.33,4.03,3.38,3.25,2.61,3.93,2.55,3.66,3.97
2016-12,2.09,3.08,3.2,3.2,3.2,2.09,2.98,3.12,3.2,3.15,2.1,2.87,3.13,3.23,2.7,2.29,2.53,2.98,3.17,3.25,2.63,2.29,2.86,1.93,1.98,1.83,1.51,2.91,2.85,2.78,2.86,3.65,2.53,2.83,2.3,1.9,1.82,1.76,2.51,2.77,2.88,2.83,2.83,2.58,2,3.21,2.41,2.47,2.83,2.46,1.78,1.67,2.52,2.74,2.72,2.69,2.77,2.48,2.16,2.12,1.64,2.56,2.52,2.56,2.08,1.8,2.69,2.69,2.8,2.83,2.83,2.01,1.93,2.06,1.93,1.98,1.69,1.73,2.86,2.16,2.08,2.31,1.55,1.57,1.91,2.16,2.41,1.69,1.82,1.87,2.18,1.39
2017-01,2.17,1.69,1.7,1.7,1.7,2.17,1.75,1.68,1.7,1.78,2.17,1.82,1.84,2.04,2.67,3.03,2.55,2.85,2.99,3.03,3.02,3.03,2.93,2.75,2.81,2.29,1.73,2.98,2.95,2.99,3.11,3.36,3.05,2.96,2.6,2.39,2.67,2.35,1.7,2.22,2.46,2.23,2.45,3.02,3.12,3.54,2.57,3.57,3.27,3.28,3.42,2.62,1.72,1.81,1.88,1.86,2.81,4.07,3.52,3.02,2.1,2.88,3.47,3.63,2.84,2.19,1.86,1.86,4.04,4.72,4.69,2.87,2.14,2.61,3.92,3.91,2.16,2.18,4.79,3.09,2.89,3.23,2.71,2.77,2.19,3.08,3.62,2.96,1.85,2.33,3.39,3.51
2017-02,3.57,3.61,3.66,3.66,3.66,3.59,3.61,3.61,3.66,3.66,4.13,3.75,3.89,4.11,3.78,3.56,4.33,4.37,4.43,4.49,3.82,3.56,3.98,3.75,3.08,2.61,1.89,4.03,4.21,4.29,4.31,4.06,3.56,3.51,3.15,3.23,3.05,2.26,3.86,3.8,3.64,3.56,4.03,4.11,3.81,4.44,3.23,4.12,3.56,3.68,3.74,2.09,3.84,3.48,3.44,3.44,3.71,3.93,3.84,3.78,2.61,3.14,3.76,3.69,2.98,2.32,3.44,3.44,3.93,4.07,4.15,3.58,2.93,3.38,3.3,3.18,2.46,2.4,4.13,3.59,3.58,4.01,2.47,2.52,5.17,3.97,3.81,2.78,5.31,3.47,3.6,3.2
2017-03,6.54,6.54,6.54,6.54,6.48,6.54,6.54,6.54,6.53,5.8,6.53,6.42,6.27,5.93,5.49,5.58,6.54,6.13,5.76,5.72,5.49,5.35,4.68,4.32,3.81,3.48,3.49,5.5,6.63,6.6,6.24,6.43,4.84,3.97,3.71,4.26,3.51,3.54,4.9,4.9,4.9,4.84,6.18,6.35,5.62,6.18,4.17,3.74,4.75,3.78,3.53,4.08,4.9,4.83,4.83,4.9,5.15,5.39,5.28,4.42,3.42,3.9,3.73,3.99,3.55,3.49,4.9,4.9,5.2,5.32,5.37,4.13,3.25,4.02,4.18,3.85,3.11,3.15,5.41,4.19,4.01,4.22,3.44,3.48,6.62,4.61,4.19,3.62,6.85,4.4,4.92,3.7
2017-04,5.97,5.97,5.97,5.97,5.93,5.77,5.9,5.97,5.96,5.51,4.94,4.94,5.01,5.28,5.32,5.48,4.98,5.19,5.62,6.01,5.32,5.21,4.73,4.55,4.01,3.44,3.41,6.29,7.18,6.78,6.05,5.43,5.05,4.44,3.91,5.07,4.37,3.71,5.88,5.88,5.88,5.8,6.84,7.12,6.75,6.18,4.7,5.86,4.96,4.74,4.89,4.33,5.88,5.7,5.79,5.88,6.16,6.6,6.47,5.19,4.11,4.31,4.1,4.87,4.47,4.21,5.88,5.88,6.38,6.57,6.62,5.02,4.27,4.84,5.02,4.87,4.07,4.07,6.67,5.73,5.72,5.75,4.27,4.39,7.28,6.15,5.98,4.75,7.51,5.9,6.43,6.51
2017-05,3.8,6.64,6.45,6.42,5.77,5.9,6.96,6.66,6.2,5.73,6.8,5.98,7.04,6.42,6.02,6.49,4.16,4.98,6.86,7.39,6.77,6.43,5.21,4.76,4.45,4.46,4.22,2.93,6.86,7.66,7.3,6.05,5.38,5.06,4.34,5.26,4.55,1.59,2.77,3.47,4.54,4.97,7.2,7.55,6.94,6.85,4.72,5.32,5.06,5,6.05,1.48,2.93,5.51,5.69,5.89,6.28,6.92,6.64,5.23,4.27,5.23,5.49,4.19,4.27,3.24,5.89,5.89,6.68,6.99,7.03,5.06,4.72,4.13,5.25,5.11,4.53,4.13,7.11,6.06,6.05,4.1,4.35,4.97,6.33,5.66,5.77,5.04,6.45,4.84,6.09,6.14
2017-06,8.78,9.17,9.09,9.02,7.2,9.04,9.49,9.2,8.4,7.09,8.96,7.6,7.75,7.4,7.07,7.39,7.25,5.9,7.38,8.27,7.02,6.81,6.08,5.39,4.82,4.42,4.38,9.55,7.78,8.52,8.53,7.35,6.47,6.06,5.73,6.02,5.67,5.11,8.76,8.44,7.66,6.74,7.75,8.56,8.71,8.13,6.38,4.52,6.02,5.88,5.72,3.44,8.61,6.09,5.73,5.81,6.88,8.66,8.42,6.71,5.56,6.27,6.45,6.41,5.05,3.95,5.81,5.81,8.04,8.77,8.82,6.45,5.59,5.15,5.69,5.52,4.16,4.28,8.9,7.45,7.47,5.18,5.41,5.82,8.09,7.87,8.05,6.03,8.14,6.88,7.22,5.89
2017-07,9.06,10.89,11.38,11.27,8.66,9.51,9.96,10.97,10.39,8.49,8.58,7.46,7.73,8.42,8.8,8.22,7.08,5.41,7.37,10.53,9.57,8.89,8.59,7.19,6.04,4.95,4.75,8.98,8.28,9.76,10.08,8.24,7,9.05,7.31,7.32,6.62,5.69,7.36,7.27,6.61,5.56,8.12,9.34,9.19,9.54,6,5.63,7.29,6.99,6.69,4.74,7.21,4.71,4.37,4.44,6.91,10.43,9.62,8.38,7.02,7.46,8.24,8.04,6.07,6.99,4.44,4.44,9.69,11.36,11.4,7.85,6.23,5.79,6.57,6.49,4.66,8,11.53,8.8,8.67,4.95,6.58,7.13,10.48,8.92,8.42,7.26,10.43,7.48,8.51,6.36
2017-08,7.92,5.77,6,6.01,6.38,6.99,4.57,5.57,6.13,6.4,5.09,4.22,4.7,5.88,6.46,5.4,4.31,4.45,6.2,8,6.61,6.15,5.71,5.24,4.62,2.75,4.43,6.51,6.69,7.65,7.56,6.35,6.27,6.22,6.18,5.64,4.52,4.74,7.06,6.19,4.96,4.39,6.6,7.41,6.89,7.11,6.64,5.83,6.35,6.32,4.91,4.94,6.88,4.03,3.66,3.66,5.82,8.57,7.62,6.69,5.62,6.39,6.56,6.85,4.99,6.3,3.66,3.66,8.25,9.68,9.68,6.78,7.01,5.77,5.62,5.31,3.93,6.97,9.83,8.07,7.85,4.72,4.31,4.57,8.78,7.54,6.86,5.13,8.89,8.15,7.69,7.49
2017-09,9.07,6.71,6.73,6.7,5.98,7.28,6.94,6.74,6.46,5.93,5.5,5.05,5.35,5.76,6.11,5.61,4.54,3.42,4.95,7.22,6.54,6.29,5.37,5.34,4.99,3.72,4.2,7.01,6.45,7.43,7,5.75,5.82,4.92,6.67,6.32,5.37,4.57,6.26,6.18,5.6,5.1,6.76,7.29,6.53,6.6,5.49,4.91,7.16,5.89,5.6,3.45,6.16,4.6,4.37,4.31,5.66,7.22,7.01,7.19,5.02,4.61,5.65,5.28,4.67,4.13,4.31,4.31,6.89,7.69,7.86,7.04,5.46,4.44,4.98,4.91,4.33,4.56,7.8,6.59,6.39,4.1,4.7,4.94,7.04,6.23,5.85,4.83,7.08,6.16,5.06,2.74
2017-10,6.31,5.32,5.49,5.44,4.29,5.1,5.5,5.42,5.05,4.21,4.8,5.08,5.8,5.23,4.75,5.01,5.05,5.56,6.52,6.62,6.13,5.87,5.08,4.27,2.93,3.86,4.06,5.09,7.24,7.04,6.28,6.33,5.54,4.97,5.35,5.46,4.61,4.19,5.45,5.02,4.37,4.23,6.58,7.02,6.09,8.23,5.09,5.98,5.62,5.21,4.34,3.9,5.38,4.15,3.96,3.91,4.83,5.77,5.61,5.29,4.38,4.39,5.27,5.81,4.68,3.95,3.91,3.91,5.31,5.72,5.77,4.42,4.32,4.31,4.35,4.42,3.88,3.95,5.8,4.85,4.85,3.99,3.39,3.47,4.99,5.33,5.31,3.82,5.22,5.34,5.34,5.34
2017-11,5.1,4.59,4.6,4.6,4.6,4.94,5.09,4.58,4.6,4.54,2.38,5.14,5.09,4.98,4.11,3.41,1.24,4.89,5.11,5.29,4.08,3.41,3.1,2.88,2.71,2.45,2.18,3.77,7.06,6.43,4.97,5.94,3.05,3.05,2.11,3.08,2.79,2.45,3.77,3.67,3.42,3.49,6.38,6.3,3.9,6.42,2.61,3.27,3.21,3.3,3,2.31,3.75,3.52,3.45,3.36,4.15,4.25,3.66,3.21,3.31,2.98,3.8,3.71,2.91,2.42,3.36,3.36,4.23,4.47,4.42,2.54,4.09,3.92,2.92,2.94,2.59,2.69,4.53,3.51,3.53,2.76,2.39,2.43,3.71,3.7,3.57,2.69,3.55,3.59,3.59,3.59
2017-12,3.79,3.79,3.89,3.89,3.89,3.72,3.79,3.79,3.89,3.79,2,3.58,3.48,3.4,2.7,2.23,1.3,2.5,2.89,2.96,2.46,2.23,2.75,2.79,2.13,1.68,1.56,2.47,2.5,2.6,2.7,2.66,2.05,2.3,2.91,2.98,2.18,1.98,2.14,2.35,2.31,2.04,2.07,2.09,2.01,3.63,1.82,3.22,2.48,2.38,2.18,1.35,2.12,1.74,1.67,1.65,1.82,2,1.91,2.13,1.73,2.38,1.65,2.19,1.9,1.47,1.65,1.65,2.03,2.14,2.16,1.94,2.84,2.27,2.15,2.04,1.81,1.86,2.17,2.06,1.99,1.75,1.47,1.54,1.75,2.22,2.29,1.66,2.2,2.3,2.3,2.3
2018-01,2.19,3.98,4.1,4.1,4.1,2.19,3.78,4.04,4.1,4.02,2.17,3.64,4.19,4.33,3.41,2.74,1.32,3.71,4.48,4.54,3.23,2.75,2.04,2.39,1.86,1.68,1.66,2.54,3.74,4,3.58,1.39,2.62,2.11,1.44,2.08,1.71,1.48,2.84,2.9,2.97,2.93,3.62,3.93,3.59,2.68,2.01,2.84,2.97,2.44,1.67,1.14,2.84,2.54,2.7,2.78,3.23,3.86,3.44,2.51,1.87,1.74,2.08,2.52,1.93,1.47,2.27,2.33,3.43,3.86,3.82,2.22,1.71,1.79,2.28,2.38,1.91,1.88,2.83,2,2.05,1.53,1.9,1.87,1.8,2.4,2.46,1.93,1.77,2.35,2.47,2.47
2018-02,2.93,4.69,4.82,4.82,4.82,2.92,4.49,4.75,4.82,4.69,2.93,4.24,4.6,4.57,3.35,2.42,3.12,3.99,4.3,4.36,3.04,2.5,1.9,1.82,1.42,1.65,1.67,3.59,3.58,3.71,3.66,2.68,2.69,2.39,1.8,1.92,2.22,1.24,3.65,3.66,3.62,3.54,3.48,3.34,3.22,3.27,2.32,2.48,1.6,2.43,2.93,2.43,3.63,3.55,3.46,3.42,3.28,3.05,2.97,2.3,1.63,1.49,1.61,1.86,1.75,2.04,3.6,3.58,3.18,3.02,3.02,2.02,1.59,1.87,1.78,1.65,1.71,1.73,2.5,1.95,1.88,2.49,1.78,1.79,1.97,2.1,2.14,1.85,1.99,2.12,2.14,2.14
2018-03,3.84,6.53,6.63,6.63,6.33,3.84,6.24,6.63,6.58,3.03,2.72,5.51,6.77,4.9,1.52,1.55,5.46,6.81,7.02,6.31,1.58,3.13,4.08,3.9,3.72,3.14,2.24,6.61,7.7,7.51,6.47,5.28,4.48,4,3.95,4.34,4.21,3.7,4.32,4.6,5.48,4.97,6.97,7.1,5.32,5.91,4.26,4.42,4.19,4.42,4.59,4.4,4.25,4.65,4.61,4.51,5.19,5.65,5.25,4.52,3.44,3.31,4.29,4.26,3.83,4,5.3,5.21,5.55,5.84,5.87,4.25,3.44,3.89,4.15,4.08,3.57,3.71,4.27,3.96,4.85,4.58,3.42,3.43,2.99,4.74,4.66,3.6,2.71,4.31,4.66,4.66
2018-04,4.15,6.26,6.83,6.73,4,2.42,5.9,6.81,5.8,3.83,2.53,3.72,6.93,5.66,4.49,3.26,5.6,4.49,8.09,7.85,6.14,5.82,4.64,3.98,3.73,4.14,4.01,8.72,9.37,8.63,7.15,5.9,5.39,4.4,4.08,4.48,4.42,4.13,5.05,5.49,7.04,6.4,8.51,8.91,7.48,7.38,4.94,4.21,4.69,4.69,4.59,4.13,4.92,5.69,5.95,5.82,6.67,7.59,7.22,5.87,4.47,5.74,4.98,5,4.38,4.17,6.82,6.71,7.25,7.66,7.69,5.41,4.27,4.48,4.71,4.63,4.07,4.2,5.19,4.52,5.51,4.05,4.05,4.1,3.09,4.79,4.72,3.96,2.48,1.76,1.76,1.76
2018-05,8.04,8.91,8.7,8.63,6.74,8.49,9.27,8.97,7.99,6.62,8.82,9.06,9.48,7.94,6.89,6.25,10.19,9.44,10.09,9.62,7.56,7.27,5.65,5.6,4.6,3.72,4.55,10.68,10.73,10.31,9,6.49,6.42,5.39,5.84,5.47,4.81,5.31,6.2,6.68,8.21,7.2,9.62,9.79,7.37,7.85,5.48,5.22,5.3,4.85,4.82,4,6.11,6.77,6.55,6.5,7.53,8.41,7.74,7.14,5.18,4.82,5.84,5.68,5.1,4.58,7.77,7.63,8.4,9.03,9.13,7.06,5.73,5.73,5.71,5.67,4.92,5.03,6.32,5.82,6.94,6.39,5.41,5.64,4.1,6.79,6.92,5.68,3.82,6.38,6.93,6.93
2018-06,9.65,10.26,10.22,10.15,8.49,9.22,10.98,10.47,9.59,8.38,9.38,9.55,8.9,9.02,9.14,8.19,10.82,11.21,12.09,13.73,11.05,9.95,7.26,7.17,6.18,4.88,5.57,11.7,12.68,12.88,11.99,9.2,8.74,7.48,6.05,7.78,6.89,6.24,9.02,9.06,8.44,7.23,11.32,12.36,10.38,11.25,7.78,8.24,7.67,7.27,7.44,5.37,9.02,8.18,6.45,5.98,8.29,11.11,10.35,8.92,6.7,8.25,6.95,6.26,5.51,5.06,8.59,8.3,10.32,11.63,11.68,8.33,6.87,6.47,6.36,5.94,4.84,4.83,8.3,7.05,7.93,5.12,6.05,6.16,5.37,7.09,6.93,6.19,5.09,6.62,6.94,6.94
2018-07,8.94,10.1,10.27,10.21,8.85,9.47,10.07,10.16,9.75,8.76,8.05,6.85,8.68,9,9.21,8.17,6.15,5.8,10.43,11.2,10.36,9.4,7.79,7.92,7.01,5.39,5.8,10.03,10.22,11.44,10.34,8.98,8.52,7.65,6.19,7.81,6.52,5.97,8.9,8.82,7.76,6.72,10.38,11.65,10.69,10.83,8,8.1,8.83,7.18,6.48,5.56,8.94,8.04,6.18,5.65,7.59,10.39,10.25,8.97,7.55,7.58,8.41,6.9,5.77,5.51,8.5,8.18,9.36,10.32,10.44,8.62,8.56,7.62,6.98,6.42,5.38,5.56,7.88,7.73,8.79,4.83,6.16,6.17,5.81,6.31,6.12,6.1,5.17,4.82,4.82,4.82
2018-08,8.4,9.06,9.27,9.21,7.87,9,8.45,8.99,8.76,7.78,7.28,6.38,7.64,7.98,7.82,7.26,6.26,6.08,9.7,10.38,7.93,7.62,7.4,6.6,6.78,4.29,5.3,8.54,9.91,11.28,10.2,7.6,7.58,7.72,7.85,7.88,6.36,6.73,8.47,8.07,5.77,4.88,9.57,10.79,8.92,9.06,7.48,8.01,7.95,6.96,6.09,4.68,8.53,7.08,4.56,3.78,5.86,8.49,8.45,7.56,7,7.52,7.63,6.46,5.29,4.6,7.36,6.95,7.53,8.25,8.38,7.18,7.44,7.46,7.12,6.22,4.64,4.7,7.15,7.6,8.89,6.48,6.74,6.65,6.4,7.26,7.01,6.65,6.11,6.31,6.31,6.31
2018-09,6.26,6.77,7.04,6.93,3.85,6.43,6.01,6.74,5.88,3.66,5.06,4.2,5.09,4.57,3.83,3.85,4.01,3.78,6.19,5.95,4.27,4.15,3.57,3.33,3.82,4.52,4.5,5.7,4.89,5.35,5.06,4.02,4.16,4.04,3.72,4.13,4.14,3.67,7.26,6.72,4.22,3.87,4.85,4.96,4.06,5.23,3.66,2.86,3.79,3.99,3.91,2.13,7.34,5.53,3.7,3.32,3.96,4.44,4.27,4.72,3.34,2.8,4.1,4.61,3.62,2.76,4.8,4.63,4.58,4.72,4.83,4.97,5.98,4.1,3.93,3.9,3.17,3.34,3.92,4.75,5.29,3.3,2.66,2.57,3.25,4.59,4.55,2.81,3.06,4.3,4.56,4.56
2018-10,3.88,4.22,4.5,4.45,3.02,4.13,3.35,4.16,3.97,2.93,3.02,2.83,3.31,3.31,2.83,2.78,3.58,2.95,3.25,3.23,2.59,3.06,2.8,2.88,2.92,2.76,3.02,4.5,3.77,4,4.18,3.87,3.61,3.67,2.93,3.79,4.68,2.66,5.42,5.19,3.81,3.61,3.61,3.51,3.09,4.44,2.95,3.09,4.1,5.57,6.99,2.58,5.51,4.35,3.39,3.25,3.31,3.11,3.07,3.39,2.4,2.17,2.89,3.4,2.98,2.73,3.68,3.63,3.33,3.22,3.3,3.15,2.9,2.81,3.15,2.99,2.56,2.77,2.75,2.86,3.29,2.57,3.18,3.12,2.35,3.87,3.97,3.31,2.2,3.66,3.97,3.97
2018-11,3.19,3.42,3.56,3.56,3.56,3.19,3.4,3.43,3.56,3.55,3.17,3.36,3.41,3.52,3.36,3.26,2.22,3.14,3.36,3.49,3.31,3.21,2.89,3.33,2.35,2.96,2.48,3.07,3.22,3.34,3.24,2.83,2.73,1.88,2.56,2.78,3.56,1.9,4.89,4.61,3.1,3.04,3.16,3.09,2.67,2.86,2.13,2.3,3.76,4.39,4.68,1.3,4.98,3.5,2.75,2.78,3.1,3.21,2.87,2.53,2.19,1.84,2.4,2.95,2.26,1.74,2.29,2.34,3.24,3.56,3.55,2.53,2.82,2.48,2.67,2.64,1.89,2.1,2.66,2.32,2.42,2.36,2.01,1.9,1.78,2.5,2.49,1.99,1.67,2.35,2.49,2.49
2018-12,2.13,2.82,2.92,2.92,2.92,2.13,2.75,2.84,2.92,2.88,2.11,2.67,2.85,2.93,2.56,2.35,1.58,2.62,2.87,2.95,2.48,2.29,2.16,2.56,2.01,2.25,2.28,2.57,2.81,2.83,2.57,1.94,1.98,1.81,2.71,3.89,2.85,2.64,2.49,2.53,2.35,2.1,2.58,2.7,2.35,2.99,1.76,2.02,2.9,2.91,2.54,3.19,2.51,2.16,1.8,1.71,1.91,2.23,2.29,2.54,1.86,1.62,2.26,2.99,2.18,2.08,1.98,1.95,1.9,2.18,2.34,2.36,2.37,2.4,2.61,2.57,1.93,1.71,2.17,2.34,2.47,3.03,2.36,2.29,2.19,2.62,2.64,2.34,2.13,2.55,2.64,2.64
2019-01,2.2,2.39,2.43,2.43,2.43,2.2,2.36,2.39,2.43,2.4,2.19,2.4,2.53,2.64,2.23,2,1.65,2.82,2.8,2.84,2.2,1.94,1.88,2.12,1.65,1.64,1.72,2.66,3.67,3.61,2.89,1.89,1.92,1.76,1.67,1.82,1.8,1.72,2.59,2.68,2.55,2.34,3.36,3.31,2.11,2.51,1.72,1.53,2.35,2.29,1.97,2.17,2.56,2.03,2.04,2.01,2.34,2.33,2.19,2.3,1.8,1.75,2.16,2.63,2.17,1.97,2.01,2.01,2.34,2.43,2.48,2.18,2.02,1.98,2.23,2.1,2,1.91,2.46,2.23,2.25,1.92,2.04,2.03,2.31,2.51,2.53,2.03,2.9,2.94,2.51,1.71
2019-02,2.96,3.86,3.95,3.95,3.95,2.96,3.76,3.9,3.95,3.84,2.94,3.58,3.67,3.59,2.7,2.11,2.52,3.31,3.24,3.28,2.46,2.11,1.89,2.05,1.8,1.5,1.23,3.38,4.03,3.9,3.23,2.46,1.77,1.75,2.28,1.94,1.61,1.38,3.82,3.63,3.28,3.06,3.79,3.63,2.45,2.93,1.49,2.23,2.17,1.95,1.76,1.24,3.77,2.87,2.78,2.78,2.95,2.73,2.5,2.37,1.77,1.58,2.24,2.52,1.93,1.55,2.78,2.78,2.85,2.88,2.9,2.15,1.68,1.67,1.87,1.77,1.64,1.76,2.92,2.08,2.05,1.76,1.77,1.79,1.45,2.55,3.33,2.04,1.37,1.41,2.49,1.39
2019-03,5.11,4.98,4.97,4.97,4.74,5.11,4.99,4.97,4.94,2.16,2.09,4.12,4.85,3.43,0.99,1,3,4.16,4.62,4.15,1.03,2.41,3.17,3.32,3.12,2.19,1.46,4.32,4.32,4.62,4.59,3.55,2.66,2.98,2.93,3.56,2.86,2.82,5.32,4.89,4.42,4.22,4.27,4.15,3.65,4.13,2.02,3.81,3.5,3.13,2.66,3.88,5.25,4.16,4.05,4.11,4.25,4.23,3.84,3.43,2.91,2.62,2.71,3.33,3.01,3.22,4.11,4.11,4.5,4.64,4.65,3.32,2.96,2.67,3.04,2.94,2.86,2.86,4.71,3.73,3.63,2.74,2.63,2.66,1.81,2.74,3.19,2.65,0.91,1.34,2.25,2.25
2019-04,3.67,5.71,6.4,6.21,1.33,2.14,4.19,6.4,4.56,1.02,2.16,1.48,5.86,3.56,2.26,2.18,3.6,3.18,5.64,5.61,5.41,5.17,4.02,4.64,4.11,3.84,3.82,6.55,6.53,6.49,6.12,5.52,5.9,2.69,4.11,4.46,4.01,3.28,6.35,6.4,6.22,5.75,6.24,6.38,5.86,6.3,7.04,2.95,3.34,3.91,4.73,2.31,6.3,5.28,5.27,5.35,5.46,5.66,5.61,5.26,4.01,3.54,4.63,4.32,3.96,3.2,5.35,5.35,5.27,5.39,5.08,5,4.13,4.02,4.57,3.9,4.25,4.04,4.92,4.75,4.81,3.95,4.28,4.42,4.88,4.93,4.98,4.19,5.16,5.26,4.35,2.54
2019-05,5.81,5.13,5.15,5.11,3.89,6.54,3.79,4.81,4.69,3.81,5.72,3.26,2.44,3.81,3.92,3.46,3,1.88,2.56,4.56,4.2,4.4,3.93,4.43,3.73,1.81,3.4,7.18,4.79,5.26,4.51,3.76,5.46,2.78,3.62,4.74,3.96,4.82,7.22,7.04,6.61,5.76,5.52,5.36,4.43,4.67,6.38,2.91,5.25,4.12,2.99,3.36,7.1,5.24,4.96,5.12,4.48,3.57,4.03,4.34,3.5,3.49,4.62,4.93,4.54,3.85,5.12,5.12,3.52,3.07,3.26,4.21,3.65,3.91,4.71,4.2,4.26,4.2,3.13,4.35,4.75,4.03,4.44,4.75,4.88,4.84,4.94,4.6,4.91,4.96,4.96,4.96
2019-06,8.4,7.66,7.65,7.6,6.5,8.94,6.84,7.4,7.23,6.43,7.37,6.95,7.23,6.96,6.44,5.36,5.8,7.75,8.82,7.66,6.47,6.14,5.12,5.52,4.83,4.78,4.79,8.63,8.4,8.39,7.19,4.76,5.59,3.65,4.62,5.1,4.87,4.99,8.25,8.28,7.95,7.24,8.1,8.04,6.49,6.63,5.88,4.07,6.35,5.55,4.74,2.85,8.16,6.75,6.49,6.59,6.7,6.46,6.44,6.45,5.24,5.01,5.98,6.42,5.47,4.23,6.59,6.59,6.46,6.45,6.61,6.36,6.17,5.29,5.42,4.87,4.83,5.12,6.55,7.13,7.36,4.85,5.36,5.66,7.34,6.33,6.09,5.66,6.22,6.12,6.12,6.12
2019-07,8.67,10.52,11.19,11.1,8.78,8.91,9.07,10.61,10.32,8.63,8.64,6.98,7.99,8.64,8.81,8.46,4.68,6.04,9.53,10.35,9.24,8.35,6.54,7.09,8.63,3.11,4.38,8.46,9.88,11.16,10.06,8.03,6.77,5.97,8.21,6.9,5.02,5.26,8.58,8.13,7.2,6.26,9.87,10.49,8.25,9.79,6.42,6.83,8.58,5.87,4.35,2.96,8.41,5.59,5.19,5.27,7.37,9.62,8.52,7.38,6.52,6.21,7.73,6.44,5.31,4.18,5.27,5.27,9.23,10.5,10.47,6.94,6.83,6.36,6.43,5.38,4.99,5.17,10.66,8.58,8.41,5.84,6.18,6.37,8.54,7.8,7.53,6.57,7.61,7.57,7.57,7.57
2019-08,7.88,9.42,9.73,9.71,9.19,8.29,8.98,9.51,9.54,9.16,7.15,7.16,8.83,9.2,8.68,7.9,4.71,6.78,10.37,12.41,7.5,7.85,7.22,6.97,6.08,3.12,4.23,8.35,10.33,12.09,11.7,8.09,7.72,6.96,9.07,7.8,5.93,5.42,7.89,7.89,7.26,6.39,10.15,11.41,10.3,9.67,6.92,6.34,7.97,6.72,5.81,3.9,7.75,5.6,5.28,5.28,7.81,11.13,10.34,8.29,7.06,6.96,8.04,6.73,5.36,4.47,5.28,5.28,10.16,11.69,11.69,7.96,7.7,6.61,6.31,5.14,4.31,4.68,11.87,9.48,9.24,6.08,5.96,6.06,9.34,7.8,7.31,6.26,7.53,7.35,7.35,7.35
2019-09,7.65,8.04,8.14,8.09,6.86,8.06,7.89,8,7.68,6.78,7.09,6.38,7.21,6.88,5.58,4.92,4.32,5.4,7.63,8.2,2.61,5.07,6.61,6.21,5.35,2.77,4.7,6.96,7.51,8.08,7.96,7.36,6.31,5.9,4.42,6.29,4.58,4.52,6.18,6.18,5.47,4.62,7.12,8.45,8.78,10.47,5.68,4.94,7.54,5.43,3.73,3.69,6.04,3.75,3.44,3.39,5.62,8.88,8.5,7.6,6.18,5.35,6.96,5.48,4.57,4.16,3.39,3.39,7.83,9.2,9.24,6.72,6.34,5.43,5.37,4.6,4.4,4.55,9.33,7.19,6.83,4.8,5.17,5.39,6.77,5.57,5.21,5.34,5.37,5.23,5.23,5.23
2019-10,5.44,5.39,5.64,5.63,5.41,5.59,4.74,5.31,5.55,5.39,4.37,4.35,5.07,5.94,5.58,5.67,2.75,5.53,7.05,7.1,6.06,5.72,4.56,4.23,3.51,3.57,3.77,4.32,8.02,7.9,6.52,4.81,5.5,4.58,4.15,4.18,3.07,2.94,4.97,4.78,4.33,4.16,7.26,7.98,6.87,6.93,5.35,4.24,5.84,4.17,2.62,2.64,4.91,4,3.85,3.8,5.56,7.61,6.81,5.15,4.24,3.7,5.18,4.67,3.65,3.09,3.8,3.8,7.08,8.1,8,4.62,4.66,4.33,4.95,3.78,3.37,3.48,8.21,5.71,5.4,4.15,4.47,4.39,5.43,5.41,5.28,4.54,5.25,5.31,5.31,5.31
2019-11,3.23,2.6,2.67,2.67,2.67,3.23,2.67,2.57,2.67,2.67,3.2,2.95,3.11,3.55,3.1,2.62,1.95,3.56,4.14,4.3,3.2,2.68,2.1,2.15,2.21,2.01,1.71,2.97,3.35,3.69,3.89,2.93,2.94,2.3,2.02,2.25,2.13,2.23,2.81,2.95,2.8,2.62,3.13,3.53,3.78,3.94,2.92,2.47,3.65,3.04,2.09,1.7,2.79,2.36,2.29,2.23,2.54,3.66,3.4,2.66,1.95,2.02,2.96,2.61,2.28,1.99,2.23,2.23,2.3,3.17,2.35,2.21,1.98,2.17,2.53,1.86,2.32,2.36,2.33,2.35,2.45,2.55,2.49,2.4,2.5,2.66,2.63,2.5,2.57,2.63,2.63,2.63
2019-12,2.18,3.11,3.23,3.23,3.23,2.18,3.01,3.14,3.23,3.16,2.17,3.03,3.47,3.75,2.83,2.1,1.58,3.58,4.1,4.21,2.73,2.12,1.89,1.97,2.13,1.85,1.3,2.57,3.8,4.06,3.53,1.37,2.06,2.21,1.53,2.27,1.86,1.7,1.95,2.64,3.21,3.29,3.79,3.86,3.57,3.24,1.74,1.69,3.7,2.84,2.34,1.89,2.03,3.24,3.33,3.28,3.42,3.51,3.38,3,1.8,1.65,2.3,2.5,2.14,1.85,3.28,3.28,3.33,3.24,2.8,2.66,2.06,2.06,2.04,1.71,2.09,1.98,2.72,2.58,2.65,2.35,2.39,2.31,2.71,3.03,3.05,2.47,2.98,3.06,3.06,3.06

Structure kind of looks like a spreadsheet as expected; notice the unsuual character ^M; this unprintable character is the carriage return+line feed control character for MS DOS (Windows) architecture. The script below will actually strip and linefeed correctly, but sometimes all that is needed is to make a quick conversion using the system shell.

Note

Here are some simple system commands (on a Linux or MacOS) to handle the conversion for ASCII files

  • sed -e 's/$/\r/' inputfile > outputfile # UNIX to DOS (adding CRs)

  • sed -e 's/\r$//' inputfile > outputfile # DOS to UNIX (removing CRs)

  • perl -pe 's/\r\n|\n|\r/\r\n/g' inputfile > outputfile # Convert to DOS

  • perl -pe 's/\r\n|\n|\r/\n/g'   inputfile > outputfile # Convert to UNIX

  • perl -pe 's/\r\n|\n|\r/\r/g'   inputfile > outputfile # Convert to old Mac

** Links to URLs with explaination in future revision **

Now lets actually read the file into a list for some processing. We will read it into a null list, and split on the commas (so we will be building a matrix of strings). Then we will print the first few rows and columns.

# now lets process the file
localfile = open('all_quads_gross_evaporation.csv','r') # open a connection for reading
aList = [] # null list to store read
rowNumA = 0 # counter to keep track of rows, 
for line in localfile:
    #aList.append([str(n) for n in line.strip().split()])
    aList.append([str(n) for n in line.strip().split(",")]) # process each line, strip whitespace, split on ","
    rowNumA += 1 # increment the counter
localfile.close() #close the connection - amatrix contains the file contents
# print((aList[0])) # print 1st row
for irow in range(0,10):
    print([aList[irow][jcol] for jcol in range(0,10)])  # implied loop constructor syntax
['YYYY-MM', '104', '105', '106', '107', '108', '204', '205', '206', '207']
['1954-01', '1.8', '1.8', '2.02', '2.24', '2.24', '2.34', '1.89', '1.8', '1.99']
['1954-02', '4.27', '4.27', '4.13', '3.98', '3.9', '4.18', '4.26', '4.27', '4.26']
['1954-03', '4.98', '4.98', '4.62', '4.25', '4.2', '5.01', '4.98', '4.98', '4.68']
['1954-04', '6.09', '5.94', '5.94', '6.07', '5.27', '6.31', '5.98', '5.89', '5.72']
['1954-05', '5.41', '5.09', '5.14', '4.4', '3.61', '5.57', '4.56', '4.47', '4.18']
['1954-06', '9.56', '11.75', '12.1', '9.77', '8.06', '9.47', '8.42', '8.66', '8.78']
['1954-07', '8.65', '11.12', '11.33', '11.12', '10.09', '9.44', '9.32', '9.42', '10.14']
['1954-08', '5.81', '7.68', '9.97', '11.34', '9.76', '7.15', '8.56', '8.59', '9.43']
['1954-09', '7.42', '10.41', '10.64', '8.68', '7.67', '7.39', '8.31', '8.65', '8.42']

Now suppose we are interested in column with the label 910, we need to find the position of the column, and lets just print the dates (column 0) and the evaporation values for cell 910 (column unknown).

We know the first row contains the column headings, so we can use a while loop to find the position like:

flag = True
c910 = 0
while flag:
    try:
        if aList[0][c910] == '910': # test if header is 910
            flag = False # switch flag to exit loop
        else :
            c910 += 1 # increment counter if not right header
    except:
        print('No column position found, resetting to 0')
        c910 = 0
        break
    
if c910 != 0:
    for irow in range(0,10): # activate to show first few rows
#    for irow in range(0,rowNumA): # activate to print entire list
        print(aList[irow][0],aList[irow][c910])  # implied loop constructor syntax    
YYYY-MM 910
1954-01 1.91
1954-02 3.53
1954-03 4.32
1954-04 4.51
1954-05 4.25
1954-06 6.85
1954-07 7.99
1954-08 7.88
1954-09 6.55

A Method to get the actual file from a remote web server (SSL/TLS encrypted)

  • You know the FQDN to the file it will be in structure of “https://server-name/…/filename.ext

  • The server is running SSL/TLS web services, i.e. https://...

  • The server has a CA certificate that is valid or possibly a self-signed certificate

This section is saved for future semesters


Reading data from a file.

Recall earlier we manually downlopaded files for reading as in :

To continue our exploration, suppose we want to read from a file, and we know it is a data file - in this section the files we will use are A.txt, B.txt, and x.txt all located > at http://54.243.252.9/engr-1330-webroot/4-Databases/ to follow along download these files to the directory where your script is running.

Our task is to determine if \(x\) is a solution to \(A \cdot x = B\)

From our problem solving protocol the algorithmic task is

  1. Allocate objects to store file contents;

  2. Read in A,B, and x from respective files;

  3. Echo the inputs (pedagogical in this case);

  4. Perform the matrix arithmetic Ax = RHS;

  5. Test if RHS == B;

  6. Report results;

Here we will insert the necessary script to automate the process.

import requests # Module to process http/https requests
remote_url="http://54.243.252.9/engr-1330-webroot/4-Databases/A.txt"  # set the url
rget = requests.get(remote_url, allow_redirects=True)  # get the remote resource, follow imbedded links
localfile = open('A.txt','wb') # open connection to a local file same name as remote
localfile.write(rget.content) # extract from the remote the contents,insert into the local file same name
localfile.close() # close connection to the local file

Now we read the file contents in a script

# Code to read A, X, and b - Notice we need somewhere for the data to go, hence the null lists
amatrix = [] # null list to store matrix read
rowNumA = 0
localfile = open("A.txt","r") # connect and read file for MATRIX A
for line in localfile:
    amatrix.append([float(n) for n in line.strip().split()])
    rowNumA += 1
localfile.close() # Disconnect the file
colNumA = len(amatrix[0]) # get the column count
print('A matrix')
for i in range(0,rowNumA,1):
    print ( (amatrix[i][0:colNumA]))
A matrix
[4.0, 1.5, 0.7, 1.2, 0.5]
[1.0, 6.0, 0.9, 1.4, 0.7]
[0.5, 1.0, 3.9, 3.2, 0.9]
[0.2, 2.0, 0.2, 7.5, 1.9]
[1.7, 0.9, 1.2, 2.3, 4.9]

References

  1. Learn Python in One Day and Learn It Well. Python for Beginners with Hands-on Project. (Learn Coding Fast with Hands-On Project Book – Kindle Edition by LCF Publishing (Author), Jamie Chan https://www.amazon.com/Python-2nd-Beginners-Hands-Project-ebook/dp/B071Z2Q6TQ/ref=sr_1_3?dchild=1&keywords=learn+python+in+a+day&qid=1611108340&sr=8-3


  1. Read a file line by line https://www.geeksforgeeks.org/read-a-file-line-by-line-in-python/

  2. Read a file line by line (PLR approach) https://www.pythonforbeginners.com/files/4-ways-to-read-a-text-file-line-by-line-in-python

  3. Reading and writing files https://www.pythonforbeginners.com/files/reading-and-writing-files-in-python

  4. Python Files I/O https://www.tutorialspoint.com/python/python_files_io.htm

  5. Working with files in Python https://realpython.com/working-with-files-in-python/

  6. File handling in Python https://www.geeksforgeeks.org/file-handling-python/

  7. File operations in Python https://www.programiz.com/python-programming/file-operation


  1. How to read a text file from a URL in Python https://www.kite.com/python/answers/how-to-read-a-text-file-from-a-url-in-python

  2. Downloading files from web using Python https://www.tutorialspoint.com/downloading-files-from-web-using-python

  3. An Efficient Way to Read Data from the Web Directly into Python without having to download it to your hard drive https://towardsdatascience.com/an-efficient-way-to-read-data-from-the-web-directly-into-python-a526a0b4f4cb


  1. Web Requests with Python (using http and/or https) https://www.pluralsight.com/guides/web-scraping-with-request-python

  2. Troubleshooting certificate errors (really common with https requests) https://stackoverflow.com/questions/27835619/urllib-and-ssl-certificate-verify-failed-error